From e6533f38547570b6e85c5c3d6edc4ed73c5226a1 Mon Sep 17 00:00:00 2001 From: MatthiasEckhart <5939067+MatthiasEckhart@users.noreply.github.com> Date: Tue, 11 Aug 2020 12:05:40 +0200 Subject: [PATCH] Added the prototype for the paper's major revision. --- README.md | 73 +- .../case-study/CaseStudy_A.aml | 2 +- amlsec-base-dir/case-study/CaseStudy_B.aml | 16616 ++++ amlsec-base-dir/case-study/CaseStudy_C.aml | 32910 +++++++ amlsec-base-dir/case-study/CaseStudy_D.aml | 49204 ++++++++++ amlsec-base-dir/case-study/CaseStudy_E.aml | 65498 +++++++++++++ amlsec-base-dir/case-study/CaseStudy_F.aml | 81792 ++++++++++++++++ amlsec-base-dir/pruned_ag.svg | 399 + amlsec-base-dir/reports/.gitkeep | 0 .../engineering_data_validation_rules.ttl | 82 +- .../rules}/security_vulnerabilities_rules.ttl | 98 +- amlsec-base-dir/security-ontologies | 1 + amlsec/.gitignore | 7 +- amlsec/build.sbt | 29 +- amlsec/project/build.properties | 2 +- amlsec/src/main/resources/aml.ttl | 14195 --- amlsec/src/main/resources/amlsec.ttl | 18474 ---- amlsec/src/main/resources/application.conf | 144 +- amlsec/src/main/resources/logback.xml | 24 + .../main/resources/reports/report_eng_val.ttl | 24 - .../main/resources/reports/report_sec_val.ttl | 2549 - amlsec/src/main/resources/security-ontologies | 1 - .../main/scala/org/sba_research/Config.scala | 69 +- .../main/scala/org/sba_research/MainApp.scala | 80 - .../org/sba_research/OntModelUtils.scala | 80 - .../scala/org/sba_research/Validator.scala | 95 - .../sba_research/VulnerabilityModeling.scala | 282 - .../sba_research/{ => ag}/AttackGraph.scala | 148 +- .../sba_research/casestudy/CaseStudy.scala | 31 + ...tudyConsequenceIdentificationDemoApp.scala | 81 + .../{ => model}/AmlOntExtension.scala | 286 +- .../org/sba_research/model/OntModels.scala | 30 +- .../sba_research/utils/OntModelUtils.scala | 109 + .../utils/PerformanceMeasurement.scala | 34 + .../{ => utils}/QueryExecutor.scala | 24 +- .../sba_research/utils/ShapeFilterByUri.scala | 39 + .../org/sba_research/utils/Validator.scala | 362 + .../sba_research/{ => vuln}/CveChecker.scala | 9 +- .../vuln/VulnerabilityModeling.scala | 315 + .../worker/CborSerializable.scala | 7 + .../org/sba_research/worker/FrontEnd.scala | 240 + .../scala/org/sba_research/worker/Main.scala | 115 + .../sba_research/worker/SystemListener.scala | 17 + .../scala/org/sba_research/worker/Work.scala | 309 + .../sba_research/worker/WorkExecutor.scala | 531 + .../org/sba_research/worker/WorkManager.scala | 132 + .../worker/WorkManagerSingleton.scala | 26 + .../org/sba_research/worker/WorkState.scala | 62 + .../org/sba_research/worker/Worker.scala | 169 + case-study/pruned_ag.svg | 399 - 50 files changed, 249648 insertions(+), 36557 deletions(-) rename case-study/CaseStudy.aml => amlsec-base-dir/case-study/CaseStudy_A.aml (98%) create mode 100644 amlsec-base-dir/case-study/CaseStudy_B.aml create mode 100644 amlsec-base-dir/case-study/CaseStudy_C.aml create mode 100644 amlsec-base-dir/case-study/CaseStudy_D.aml create mode 100644 amlsec-base-dir/case-study/CaseStudy_E.aml create mode 100644 amlsec-base-dir/case-study/CaseStudy_F.aml create mode 100644 amlsec-base-dir/pruned_ag.svg create mode 100644 amlsec-base-dir/reports/.gitkeep rename {amlsec/src/main/resources => amlsec-base-dir/rules}/engineering_data_validation_rules.ttl (69%) rename {amlsec/src/main/resources => amlsec-base-dir/rules}/security_vulnerabilities_rules.ttl (93%) create mode 120000 amlsec-base-dir/security-ontologies delete mode 100644 amlsec/src/main/resources/aml.ttl delete mode 100644 amlsec/src/main/resources/amlsec.ttl create mode 100644 amlsec/src/main/resources/logback.xml delete mode 100644 amlsec/src/main/resources/reports/report_eng_val.ttl delete mode 100644 amlsec/src/main/resources/reports/report_sec_val.ttl delete mode 120000 amlsec/src/main/resources/security-ontologies delete mode 100644 amlsec/src/main/scala/org/sba_research/MainApp.scala delete mode 100644 amlsec/src/main/scala/org/sba_research/OntModelUtils.scala delete mode 100644 amlsec/src/main/scala/org/sba_research/Validator.scala delete mode 100644 amlsec/src/main/scala/org/sba_research/VulnerabilityModeling.scala rename amlsec/src/main/scala/org/sba_research/{ => ag}/AttackGraph.scala (78%) create mode 100644 amlsec/src/main/scala/org/sba_research/casestudy/CaseStudy.scala create mode 100644 amlsec/src/main/scala/org/sba_research/casestudy/CaseStudyConsequenceIdentificationDemoApp.scala rename amlsec/src/main/scala/org/sba_research/{ => model}/AmlOntExtension.scala (72%) create mode 100644 amlsec/src/main/scala/org/sba_research/utils/OntModelUtils.scala create mode 100644 amlsec/src/main/scala/org/sba_research/utils/PerformanceMeasurement.scala rename amlsec/src/main/scala/org/sba_research/{ => utils}/QueryExecutor.scala (78%) create mode 100644 amlsec/src/main/scala/org/sba_research/utils/ShapeFilterByUri.scala create mode 100644 amlsec/src/main/scala/org/sba_research/utils/Validator.scala rename amlsec/src/main/scala/org/sba_research/{ => vuln}/CveChecker.scala (90%) create mode 100644 amlsec/src/main/scala/org/sba_research/vuln/VulnerabilityModeling.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/CborSerializable.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/FrontEnd.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/Main.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/SystemListener.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/Work.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/WorkExecutor.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/WorkManager.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/WorkManagerSingleton.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/WorkState.scala create mode 100644 amlsec/src/main/scala/org/sba_research/worker/Worker.scala delete mode 100644 case-study/pruned_ag.svg diff --git a/README.md b/README.md index 1c204cf..9a6d651 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,80 @@ -# Automated Security Risk Identification Based on Engineering Data +# Automated Security Risk Identification Using AutomationML-based Engineering Data This prototype identifies security risk sources (i.e., threats and vulnerabilities) and types of attack consequences based on AutomationML (AML) artifacts. The results of the risk identification process can be used to generate cyber-physical attack graphs, which model multistage cyber attacks that potentially lead to physical damage. ## Installation +1. Build AML2OWL + This prototype depends on a forked version of the [implementation of the bidirectional translation between AML and OWL](https://github.com/sbaresearch/ETFA2019) for the ETFA 2019 paper ["Interpreting OWL Complex Classes in AutomationML based on Bidirectional Translation"](https://arxiv.org/abs/1906.04240) by Hua and Hein. -Clone the aforementioned repository, compile the projects, and run the AML2OWL application to transform your AMLsec-augmented plant know-how (i.e., AML artifact) to OWL. +Clone the [repository](https://github.com/sbaresearch/ETFA2019), compile the projects, and assemble an application bundle of `aml_owl`: +``` +$ cd aml_models +$ mvn clean compile install +$ cd ../aml_io +$ mvn clean compile install +$ cd ../aml_owl +$ mvn clean compile install assembly:single +``` + +2. Setup the AMLsec Base Directory + +Clone this repository, create the application base directory (usually located in the user's home directory), and place the files located in [amlsec-base-dir](https://github.com/sbaresearch/amlsec/blob/master/amlsec-base-dir) and the assembled AML2OWL JAR (located in `aml_owl/target/`) there. +The AMLsec base directory and the path to the AML2OWL JAR must be set in the [configuration file](https://github.com/sbaresearch/amlsec/blob/master/amlsec/src/main/resources/application.conf) using the keys `baseDir` and `amlToOwlProgram`, respectively. + +3. Setup Apache Jena Fuseki -After that, convert the generated OWL file (RDF/XML syntax) to the Turtle syntax (e.g., by using [Protégé](https://protege.stanford.edu/)). +Install and start [Apache Jena Fuseki](https://jena.apache.org/documentation/fuseki2/): +``` +$ java -jar /fuseki-server.jar --update +``` -Then, clone this repository, place this file in the app's `resources` directory, and adapt the AML file name (`aml.fileName`) in the application [configuration file](https://github.com/sbaresearch/amlsec/blob/master/amlsec/src/main/resources/application.conf). +4. Build AMLsec -Finally, start the app by using [sbt](https://www.scala-sbt.org/). +Finally, build and start the app by using [sbt](https://www.scala-sbt.org/). +``` +$ sbt "runMain org.sba_research.worker.Main" +``` ## Usage The implemented method utilizes a semantic information mapping mechanism realized by means of AML libraries. -These [AML security extension libraries](https://github.com/sbaresearch/amlsec/tree/master/amlsec-libs) (named AMLsec) can be easily reused in engineering projects by importing them into AML files. +These [AML security extension libraries](https://github.com/sbaresearch/amlsec/tree/master/amlsec-libs) can be easily reused in engineering projects by importing them into AML files. + +The capabilities of this prototype are demonstrated in a [case study](https://github.com/sbaresearch/amlsec/blob/master/amlsec-base-dir/case-study/CaseStudy_A.aml). +Running this prototype as is will yield the knowledge base (can be accessed via Fuseki), which also includes the results of the risk identification process, and the following pruned cyber-physical attack graph: + +![Cyber-Physical Attack Graph](https://github.com/sbaresearch/amlsec/blob/master/amlsec-base-dir/pruned_ag.svg?sanitize=true) + +### Cluster + +The prototype utilizes the [Akka](https://akka.io/) framework and is able to distribute the risk identification workload among multiple nodes. The [Akka distributed workers sample](https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala) was used as a template. + +To run the cluster with multiple nodes: + +1. Start Cassandra: +``` +$ sbt "runMain org.sba_research.worker.Main cassandra" +``` + +2. Start the first seed node: +``` +$ sbt "runMain org.sba_research.worker.Main 2551" +``` + +3. Start a front-end node: +``` +$ sbt "runMain org.sba_research.worker.Main 3001" +``` + +4. Start a worker node (the second parameter denotes the number of worker actors, e.g., 3): +``` +$ sbt "runMain org.sba_research.worker.Main 5001 3" +``` + +If you run the nodes on separate machines, you will have to adapt the Akka settings in the [configuration file](https://github.com/sbaresearch/amlsec/blob/master/amlsec/src/main/resources/application.conf). -The capabilities of this prototype are demonstrated in a [case study](https://github.com/sbaresearch/amlsec/blob/master/case-study/CaseStudy.aml). -Running this prototype as is will yield the [knowledge base](https://github.com/sbaresearch/amlsec/blob/master/amlsec/src/main/resources/amlsec.ttl), which also includes the results of the risk identification process, and the following pruned cyber-physical attack graph: +## Performance Assessment -![Cyber-Physical Attack Graph](https://github.com/sbaresearch/amlsec/blob/master/case-study/pruned_ag.svg?sanitize=true) \ No newline at end of file +The measurements and log files obtained during the performance assessment are available upon request. \ No newline at end of file diff --git a/case-study/CaseStudy.aml b/amlsec-base-dir/case-study/CaseStudy_A.aml similarity index 98% rename from case-study/CaseStudy.aml rename to amlsec-base-dir/case-study/CaseStudy_A.aml index 5625fda..aa9f037 100644 --- a/case-study/CaseStudy.aml +++ b/amlsec-base-dir/case-study/CaseStudy_A.aml @@ -1,5 +1,5 @@  - + 2.0 AutomationML 2.10 diff --git a/amlsec-base-dir/case-study/CaseStudy_B.aml b/amlsec-base-dir/case-study/CaseStudy_B.aml new file mode 100644 index 0000000..d7656fb --- /dev/null +++ b/amlsec-base-dir/case-study/CaseStudy_B.aml @@ -0,0 +1,16616 @@ + + 2.0 + + AutomationML 2.10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Standard Automation Markup Language Interface Class Library - Part 1 Content extended with Part 3 and Part 4 Content + 2.2.2 + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + AutomationML Communication Interface Class Library + 1.0.0 + + + + + + AMLsec Interface Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Base Role class Library - Part 1 Content extended with Part 3 Content + 2.2.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Discrete Manufacturing Industry Role Class Library + 2.4.0 + + + + + + + + + + + + + + Automation Markup Language Control Industry Role Class Library + 2.3.0 + + + + + + + + + + + + + + + + + + + + 2.7.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AMLsec Role Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AutomationML Communication Role Class Library + 1.0.1 + + + + + + + + + + + + + + + AMLsec Attribute Type Library + 1.0.0 + Matthias Eckhart + + + + + + + + + + + True + + + True + + + \ No newline at end of file diff --git a/amlsec-base-dir/case-study/CaseStudy_C.aml b/amlsec-base-dir/case-study/CaseStudy_C.aml new file mode 100644 index 0000000..9e6f2e6 --- /dev/null +++ b/amlsec-base-dir/case-study/CaseStudy_C.aml @@ -0,0 +1,32910 @@ + + 2.0 + + AutomationML 2.10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Standard Automation Markup Language Interface Class Library - Part 1 Content extended with Part 3 and Part 4 Content + 2.2.2 + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + AutomationML Communication Interface Class Library + 1.0.0 + + + + + + AMLsec Interface Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Base Role class Library - Part 1 Content extended with Part 3 Content + 2.2.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Discrete Manufacturing Industry Role Class Library + 2.4.0 + + + + + + + + + + + + + + Automation Markup Language Control Industry Role Class Library + 2.3.0 + + + + + + + + + + + + + + + + + + + + 2.7.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AMLsec Role Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AutomationML Communication Role Class Library + 1.0.1 + + + + + + + + + + + + + + + AMLsec Attribute Type Library + 1.0.0 + Matthias Eckhart + + + + + + + + + + + True + + + True + + + \ No newline at end of file diff --git a/amlsec-base-dir/case-study/CaseStudy_D.aml b/amlsec-base-dir/case-study/CaseStudy_D.aml new file mode 100644 index 0000000..9f6e8c7 --- /dev/null +++ b/amlsec-base-dir/case-study/CaseStudy_D.aml @@ -0,0 +1,49204 @@ + + 2.0 + + AutomationML 2.10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Standard Automation Markup Language Interface Class Library - Part 1 Content extended with Part 3 and Part 4 Content + 2.2.2 + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + AutomationML Communication Interface Class Library + 1.0.0 + + + + + + AMLsec Interface Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Base Role class Library - Part 1 Content extended with Part 3 Content + 2.2.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Discrete Manufacturing Industry Role Class Library + 2.4.0 + + + + + + + + + + + + + + Automation Markup Language Control Industry Role Class Library + 2.3.0 + + + + + + + + + + + + + + + + + + + + 2.7.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AMLsec Role Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AutomationML Communication Role Class Library + 1.0.1 + + + + + + + + + + + + + + + AMLsec Attribute Type Library + 1.0.0 + Matthias Eckhart + + + + + + + + + + + True + + + True + + + \ No newline at end of file diff --git a/amlsec-base-dir/case-study/CaseStudy_E.aml b/amlsec-base-dir/case-study/CaseStudy_E.aml new file mode 100644 index 0000000..1a1261f --- /dev/null +++ b/amlsec-base-dir/case-study/CaseStudy_E.aml @@ -0,0 +1,65498 @@ + + 2.0 + + AutomationML 2.10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Standard Automation Markup Language Interface Class Library - Part 1 Content extended with Part 3 and Part 4 Content + 2.2.2 + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + AutomationML Communication Interface Class Library + 1.0.0 + + + + + + AMLsec Interface Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Base Role class Library - Part 1 Content extended with Part 3 Content + 2.2.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Discrete Manufacturing Industry Role Class Library + 2.4.0 + + + + + + + + + + + + + + Automation Markup Language Control Industry Role Class Library + 2.3.0 + + + + + + + + + + + + + + + + + + + + 2.7.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AMLsec Role Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AutomationML Communication Role Class Library + 1.0.1 + + + + + + + + + + + + + + + AMLsec Attribute Type Library + 1.0.0 + Matthias Eckhart + + + + + + + + + + + True + + + True + + + \ No newline at end of file diff --git a/amlsec-base-dir/case-study/CaseStudy_F.aml b/amlsec-base-dir/case-study/CaseStudy_F.aml new file mode 100644 index 0000000..38d5067 --- /dev/null +++ b/amlsec-base-dir/case-study/CaseStudy_F.aml @@ -0,0 +1,81792 @@ + + 2.0 + + AutomationML 2.10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.5.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + h + + + cisco + + + catalyst_2900 + + + - + + + + + + + + + + + + + + + + + + a + + + siemens + + + simatic_it_uadm + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + a + + + siemens + + + wincc + + + 7.0 + + + + + + + + + + + + + + + + + + + + + + + + + a + + + microsoft + + + sql_server + + + 2008 + + + sp2 + + + x64 + + + + + + + + + + + + + + + + + + + + + + -1.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -3.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -1.6 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -0.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -2.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -4.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 3.8 + + + 0 + + + 0 + + + 0 + + + -157.5 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -8 + + + 0.9 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.991637 + + + 0.90481 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.675 + + + 1.575 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.325 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -5.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -7.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -9.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -11.2 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -7.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 135 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -6.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 0.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 2.9 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + + ./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae + + + explicit + + + + + + + + + + 1.7 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -11.2 + + + 8.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + + + + -12.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -12.35 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + + + + -12.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -13.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -11.8 + + + 2.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -17.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + -13.8 + + + 0.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -21.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -15.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -17.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + -20.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -19.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -12.35 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + -17.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -180 + + + + + + + + -22.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -24.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 4.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -21.05 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -25.8 + + + 6.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.4 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + -25.8 + + + 8.5 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + + + + -11.675 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + -90 + + + + + ./dae_lib/Schutzgittertuer_Product.dae + + + explicit + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 3.55 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Schutzzaun_2000x2000.1_Rep.dae + + + explicit + + + + + + + + + + -10.5 + + + 5.8 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + 0 + + + 0 + + + 0.11 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schutzzaun_1000_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Pfosten.1_Rep.dae + + + explicit + + + + + + + + + + ./dae_lib/Zaunelement_775mm_Rep.dae + + + explicit + + + + + + + + -23.8 + + + 1.55 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + + + + + + + -1.421466 + + + 0.995599 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/SPS_Schrank_1200x2000x500_Product.dae + + + explicit + + + + + + 0.345614 + + + -0.845599 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + + + + 1.193536 + + + -0.005607 + + + 1.99 + + + 0 + + + 0 + + + -90 + + + + + + ./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1 + + + implicit + + + ./Tuer_re.1_FrameOfInterest_ToolMountPoint + + + + + + + + + + + + + + + + + ./dae_lib/Peripherie_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Materialbereitstellung_A_Rep.dae + + + explicit + + + + + + + + ./dae_lib/Tore_A_Rep.dae + + + explicit + + + + + + + + + + + -11.518965 + + + 4.780033 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + + + + + -1.225 + + + -0.13 + + + 1.37 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae + + + explicit + + + + + + + + + + + + + + -7.4 + + + 7.6 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_2_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030GES190 + + + + + + + + + ./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2 + + + implicit + + + ./KR240R2700prime_2_AttachmentPoint_030WZD180 + + + + + + + + 0.033828 + + + -1.220507 + + + 1.783415 + + + 94.499 + + + 90 + + + 0 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2 + + + implicit + + + + + + 0.033828 + + + -1.220507 + + + 1.543415 + + + 180 + + + 0 + + + 85.501 + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2 + + + implicit + + + ./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.558491 + + + 7.882722 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + + + True + + + + + + + + + + + + + + + -7.366172 + + + 6.379493 + + + 2.394861 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + + + + + 0.001 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae + + + explicit + + + + + + + + + + -7.740861 + + + 6.408973 + + + 1.509727 + + + 0 + + + 45 + + + -4.499 + + + + + ./dae_lib/JA01732_REV02_Product.dae + + + explicit + + + + + + -0.415646 + + + 0 + + + 0.947177 + + + -180 + + + -45 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02 + + + implicit + + + ./JA01732_REV02_AttachmentPoint_030WZD111 + + + + + + + + + + -7.366173 + + + 6.379494 + + + 2.420836 + + + 4.499 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -6.025 + + + 6.8 + + + 1.2655 + + + 180 + + + 0 + + + 0 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Base1 + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_FrameOfInterest_Tool1 + + + + + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin + + + implicit + + + ./F266820012936_x_zange_kin_AttachmentPoint_030WZD121 + + + + + + + + + + -6.025 + + + 6.8 + + + 1.212946 + + + 270 + + + 90 + + + 0 + + + + + + + + + + ./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae + + + explicit + + + + + + + + + + -5.7 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim + + + + + + + + + + -5.7 + + + 7.8 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae + + + explicit + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.325 + + + 1.211893 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1 + + + + + + + + 0 + + + 0.325 + + + 1.3615 + + + -180 + + + 0 + + + -90 + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim + + + + + + + + + ./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2 + + + implicit + + + ./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim + + + + + + + + + + -7.4 + + + 7.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -5.598677 + + + 6.208313 + + + 0 + + + 90 + + + 0 + + + 0 + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae + + + explicit + + + + + + + ./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310 + + + implicit + + + ./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + + + + -0.177 + + + 0.89 + + + 0.085 + + + -90 + + + 0 + + + 0 + + + + + + ./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal + + + implicit + + + ./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2 + + + + + + + + + + + + -8.3 + + + 6.8 + + + 0 + + + 0 + + + 0 + + + 75 + + + + + + + + + + 0.048 + + + -0.0798 + + + 0.85385 + + + 90 + + + 0 + + + 90 + + + + + + + + + 0.0695 + + + 0.015772 + + + 0.986772 + + + -90 + + + 0 + + + 90 + + + + + + + + + 0.0705 + + + 0.015772 + + + 1.014727 + + + -90 + + + 0 + + + 90 + + + + + + + + + ./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae + + + explicit + + + + + + + + + + + + + + + + + + + -9.3 + + + 2.8 + + + 1 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3 + + + implicit + + + ./KR240R2700prime_3_AttachmentPoint_030GES290 + + + + + + + + 0.249814 + + + 0.024038 + + + 2.571961 + + + 17.654 + + + 4.514 + + + 1.435 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3 + + + implicit + + + + + + 0.488995 + + + 0.030029 + + + 2.553073 + + + 104.592 + + + 71.796 + + + 105.325 + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3 + + + implicit + + + ./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -3.128421 + + + 0.936761 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + + + + + + + + + + + + + + + -7.491077 + + + 3.60465 + + + 2.650281 + + + 73.172 + + + 34.473 + + + 97.709 + + + + + + + + + + ./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae + + + explicit + + + + + + + + -0.932093 + + + 0.629898 + + + -0.99742 + + + 58.317 + + + -65.764 + + + -96.331 + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae + + + explicit + + + + + + -0.2815 + + + 0 + + + 0.099 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0.082 + + + -0.415346 + + + -180 + + + 0 + + + 0 + + + + + + ./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300 + + + implicit + + + ./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1 + + + + + + + + + + + + -9.3 + + + 2.8 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -8.3 + + + 1.6 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae + + + explicit + + + + + + + + + + -8.368737 + + + 3.346279 + + + 0 + + + 0 + + + 0 + + + -37.258 + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae + + + explicit + + + + + + + + ./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae + + + explicit + + + + + + + + + + + + + + + + -9.7 + + + 4.6 + + + 1 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_4_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4 + + + implicit + + + ./KR240R2700prime_4_AttachmentPoint_030GES390 + + + + + + + + 0.054813 + + + -0.001324 + + + 2.706696 + + + -172.84 + + + 26.036 + + + -1.383 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4 + + + implicit + + + + + + 0.270394 + + + -0.00653 + + + 2.601352 + + + -165.687 + + + -63.064 + + + -17.354 + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4 + + + implicit + + + ./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -4.555277 + + + 7.060808 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0.5 + + + 0 + + + 0 + + + -60 + + + + + ./dae_lib/F266820012936_x_zange_kin_Product.dae + + + explicit + + + + + + + + + + -0.152 + + + 0.3705 + + + 0.8468 + + + 180 + + + -45 + + + 90 + + + + + + + + + + + -9.695639 + + + 4.780569 + + + 3.645245 + + + -165.687 + + + -63.064 + + + 72.646 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1 + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + -10.299504 + + + 4.364677 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae + + + explicit + + + + + + 2.379211 + + + 2.319617 + + + 0 + + + 0 + + + 0 + + + -15 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Base1 + + + + + + + + 2.233052 + + + 1.377786 + + + 1.716137 + + + -19.512 + + + -41.394 + + + 13.187 + + + + + + ./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1 + + + implicit + + + ./F19721000063199800000_001.1_FrameOfInterest_Tool1 + + + + + + + + + + -9.7 + + + 4.6 + + + 0 + + + 0 + + + 0 + + + 90 + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 45 + + + + + ./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae + + + explicit + + + + + + + + + + -10.462436 + + + 6.29725 + + + 0 + + + 0 + + + 0 + + + -150 + + + + + + 1.402858 + + + 1.670187 + + + 0.5 + + + 0 + + + 0 + + + 74.045 + + + + + + + + + 1.976361 + + + -0.922783 + + + 0 + + + 0 + + + 0 + + + 105 + + + + + ./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae + + + explicit + + + + + + + + + + + + + + + -7.5 + + + 4.87 + + + 0 + + + -180 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae + + + explicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W + + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin + + + implicit + + + ./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W + + + + + + + + ./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile + + + implicit + + + + + + -1.365 + + + 0 + + + -1.795 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + + + + + ./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa + + + implicit + + + ./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067 + + + + + + + + + + + + + + + + + + -7.217233 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 90 + + + + + ./dae_lib/KR240R2700prime_1_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1 + + + implicit + + + ./KR240R2700prime_1_AttachmentPoint_Schlitten + + + + + + + + 0.051131 + + + -0.161884 + + + 2.689111 + + + -74.904 + + + 30.227 + + + -72.471 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1 + + + implicit + + + + + + 0.113588 + + + -0.359624 + + + 2.568288 + + + -121.11 + + + 13.004 + + + -170.204 + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1 + + + implicit + + + ./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + -2.267624 + + + 0.944691 + + + 0.964365 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + + + + -5.575 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3_Product.dae#KL1500_3 + + + implicit + + + ./KL1500_3_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -5.751966 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.432 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_1_Product.dae#Schlitten_1 + + + implicit + + + ./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -6.940001 + + + 3.010911 + + + 3.625631 + + + -121.11 + + + 13.004 + + + -80.204 + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + -0.424735 + + + -0.572998 + + + 0.605999 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1 + + + + + + + + -1.195001 + + + -0.015 + + + 0.697 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + ./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + + + + + + + + + + + -2.053096 + + + 2.923347 + + + 1.007 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KR240R2700prime_Product.dae + + + explicit + + + + + + + ./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime + + + implicit + + + ./KR240R2700prime_AttachmentPoint_Schlitten + + + + + + + + 0.569465 + + + -0.180495 + + + 2.075897 + + + 147.914 + + + -21.618 + + + 57.439 + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1 + + + + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141 + + + + + + + + 0.24 + + + 0 + + + 0 + + + 0 + + + 90 + + + 0 + + + + + + ./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6 + + + implicit + + + ./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint + + + + + + + + + + ./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts + + + implicit + + + + + + 0.689546 + + + 0.007554 + + + 2.164318 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + + + + + ./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1 + + + implicit + + + ./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + + + + + -2.272745 + + + 0.942511 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KRC4_Robotersteuerschrank_Product.dae + + + explicit + + + + + h + + + kuka + + + rc4 + + + + + + + + + + + + + + + + + + h + + + siemens + + + simatic_s7-1516f-3_pn\/dp_cpu + + + - + + + + + + + + True + True + + + True + True + + + + + + + + + + + + + + + 1.025 + + + 2.923347 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/KL1500_3.1_Product.dae + + + explicit + + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Standard + + + + + + + + 0 + + + 0 + + + -0.025 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1 + + + implicit + + + ./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge + + + + + + + + -7.187828 + + + 0 + + + 0.075 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_ + + + + + + + + 4.109732 + + + 0 + + + 0.932 + + + 0 + + + 0 + + + 180 + + + + + + ./dae_lib/Schlitten_Product.dae#Schlitten + + + implicit + + + ./Schlitten_FrameOfInterest_Roboterposition_Stellung_A + + + + + + + + + + + + -1.413583 + + + 2.852547 + + + 3.134476 + + + 53.275 + + + -51.967 + + + 177.879 + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae + + + explicit + + + + + file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001 + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1 + + + + + + + + 0 + + + 0 + + + 0.1 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2 + + + + + + + + 1.354 + + + -0.015 + + + 0.613949 + + + -180 + + + 0 + + + 180 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1 + + + + + + + + 0.583734 + + + -0.572997 + + + 0.765788 + + + 0 + + + 0 + + + 0 + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010 + + + + + + + + + ./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin + + + implicit + + + ./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1 + + + + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 180 + + + + + + + + + + 0.168859 + + + -4.851487 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/T510198_7_Rep.dae + + + explicit + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067 + + + + + + + + + ./dae_lib/T510198_7_Rep.dae#T510198_7 + + + implicit + + + ./T510198_7_AttachmentPoint_A2136160067_1 + + + + + + + + + + + + -4.296263 + + + 4.670705 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae + + + explicit + + + + + + -0.194684 + + + 0 + + + 3.486383 + + + 0 + + + 75 + + + 0 + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0 + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W + + + + + + + + + ./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct + + + implicit + + + ./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + o + + + siemens + + + simatic_s7-1500_cpu_firmware + + + 1.8.2 + + + + + + + + + + + + + + + + + a + + + siemens + + + scalance_x414-3e_firmware + + + 2.1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + schneider-electric + + + xbtgh_firmware + + + - + + + + + + + + + + a + + + ge + + + intelligent_platforms_proficy_hmi\/scada_cimplicity + + + 8.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001 + + + + + file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.1.1.4 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_2820 + + + - + + + + + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + a + + + sap + + + netweaver_process_integration + + + 7.50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.6.1.10 + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + h + + + cisco + + + catalyst_3000 + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + h + + + cisco + + + catalyst_4500 + + + - + + + + + + + + + + + + + h + + + cisco + + + 1921_integrated_services_router + + + - + + + + + + + + + + + + o + + + cisco + + + adaptive_security_appliance_software + + + 9.0.4.40 + + + + + + + + + + + a + + + sap + + + netweaver + + + - + + + + + + + + + + + + + + + a + + + apache + + + http_server + + + 2.4.17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Standard Automation Markup Language Interface Class Library - Part 1 Content extended with Part 3 and Part 4 Content + 2.2.2 + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + AutomationML Communication Interface Class Library + 1.0.0 + + + + + + AMLsec Interface Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Base Role class Library - Part 1 Content extended with Part 3 Content + 2.2.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + Automation Markup Language Discrete Manufacturing Industry Role Class Library + 2.4.0 + + + + + + + + + + + + + + Automation Markup Language Control Industry Role Class Library + 2.3.0 + + + + + + + + + + + + + + + + + + + + 2.7.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AMLsec Role Class Library + 0 + Matthias Eckhart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AutomationML Communication Role Class Library + 1.0.1 + + + + + + + + + + + + + + + AMLsec Attribute Type Library + 1.0.0 + Matthias Eckhart + + + + + + + + + + + True + + + True + + + \ No newline at end of file diff --git a/amlsec-base-dir/pruned_ag.svg b/amlsec-base-dir/pruned_ag.svg new file mode 100644 index 0000000..fbb9ef4 --- /dev/null +++ b/amlsec-base-dir/pruned_ag.svg @@ -0,0 +1,399 @@ + + +pruned_ag + + + +SIMATICWinCCSvr1 + +SIMATICWinCCSvr1 + + + +GECimplicity1 + +GECimplicity1 + + + +SIMATICWinCCSvr1->GECimplicity1 + + +CVE-2013-2785 + + + +SIMATICHistorian1 + +SIMATICHistorian1 + + + +SIMATICWinCCSvr1->SIMATICHistorian1 + + +CVE-2012-1856 + + + +KUKAConnBox1 + +KUKAConnBox1 + + + +GECimplicity1->KUKAConnBox1 + + +Unused Open Port + + + +SE_XBTGT1 + +SE_XBTGT1 + + + +GECimplicity1->SE_XBTGT1 + + +CVE-2019-6833 + + + +KRC4_2 + +KRC4_2 + + + +GECimplicity1->KRC4_2 + + +Insecure Protocol Used + + + +SimaticS71510SPF1PN2 + +SimaticS71510SPF1PN2 + + + +GECimplicity1->SimaticS71510SPF1PN2 + + +Not Separated Safety Related Device + + + +SimaticS71516F_2 + +SimaticS71516F_2 + + + +GECimplicity1->SimaticS71516F_2 + + +CVE-2014-5074 + + + +KUKAConnBox1->GECimplicity1 + + +CVE-2013-2785 + + + +KUKAConnBox1->SE_XBTGT1 + + +CVE-2019-6833 + + + +KUKAConnBox1->KRC4_2 + + +Insecure Protocol Used + + + +KUKAConnBox1->SimaticS71510SPF1PN2 + + +Not Separated Safety Related Device + + + +KUKAConnBox1->SimaticS71516F_2 + + +CVE-2014-5074 + + + +SE_XBTGT1->GECimplicity1 + + +CVE-2013-2785 + + + +SE_XBTGT1->KUKAConnBox1 + + +Unused Open Port + + + +SE_XBTGT1->KRC4_2 + + +Insecure Protocol Used + + + +SE_XBTGT1->SimaticS71510SPF1PN2 + + +Not Separated Safety Related Device + + + +SE_XBTGT1->SimaticS71516F_2 + + +CVE-2014-5074 + + + +AVSvr1 + +AVSvr1 + + + +JumpSvr1 + +JumpSvr1 + + + +AVSvr1->JumpSvr1 + + +IT-OT Cross Connection + + + +MES1 + +MES1 + + + +JumpSvr1->MES1 + + +IT-OT Cross Connection + + + +SIMATICHistorian1->SIMATICWinCCSvr1 + + +CVE-2012-3032 + + + +MailSvr1 + +MailSvr1 + + + +WebSvr2 + +WebSvr2 + + + +MailSvr1->WebSvr2 + + +CVE-2017-3167 + + + +AppSvr1 + +AppSvr1 + + + +MailSvr1->AppSvr1 + + +Insecure Protocol Used + + + +WebSvr2->AppSvr1 + + +Untrusted Cross Zone Connection + + + +AppSvr1->JumpSvr1 + + +IT-OT Cross Connection + + + +AppSvr1->WebSvr2 + + +CVE-2017-3169 + + + +MES1->SIMATICWinCCSvr1 + + +CVE-2012-3032 + + + +SIMATICFieldPGM6 + +SIMATICFieldPGM6 + + + +MES1->SIMATICFieldPGM6 + + +Not Separated Temporarily Connected Device + + + +FileSvr2 + +FileSvr2 + + + +FileSvr2->WebSvr2 + + +CVE-2017-7679 + + + +FileSvr2->AppSvr1 + + +Insecure Protocol Used + + + +SIMATICFieldPGM6->MES1 + + +IT-OT Cross Connection + + + +ERP1 + +ERP1 + + + +WebSvr1 + +WebSvr1 + + + +ERP1->WebSvr1 + + +CVE-2017-7668 + + + +WebSvr1->AppSvr1 + + +Insecure Protocol Used + + + +WebSvr1->ERP1 + + +CVE-2013-6822 + + + +PatchSvr1 + +PatchSvr1 + + + +PatchSvr1->JumpSvr1 + + +IT-OT Cross Connection + + + +AnalyticsSvr1 + +AnalyticsSvr1 + + + +AnalyticsSvr1->MES1 + + +IT-OT Cross Connection + + + +AnalyticsSvr1->SIMATICFieldPGM6 + + +Not Separated Temporarily Connected Device + + + +FileSvr1 + +FileSvr1 + + + +FileSvr1->ERP1 + + +CVE-2013-6822 + + + +FileSvr1->WebSvr1 + + +CVE-2017-7679 + + + diff --git a/amlsec-base-dir/reports/.gitkeep b/amlsec-base-dir/reports/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/amlsec/src/main/resources/engineering_data_validation_rules.ttl b/amlsec-base-dir/rules/engineering_data_validation_rules.ttl similarity index 69% rename from amlsec/src/main/resources/engineering_data_validation_rules.ttl rename to amlsec-base-dir/rules/engineering_data_validation_rules.ttl index fb3fef2..68c6428 100644 --- a/amlsec/src/main/resources/engineering_data_validation_rules.ttl +++ b/amlsec-base-dir/rules/engineering_data_validation_rules.ttl @@ -10,51 +10,51 @@ amlImp:LinkHasRefPartnerSides a sh:NodeShape ; sh:targetClass amlImp:Link ; - sh:message "Individuals with class Link must have a hasRefPartnerSideA and a hasRefPartnerSideB." ; - sh:property [ - sh:path amlOnt:hasRefPartnerSideA ; - sh:minCount 2 ; - ] ; - sh:property [ - sh:path amlOnt:hasRefPartnerSideB ; - sh:minCount 2 ; + sh:message "Individuals with class Link must have a hasRefPartnerSideA and a hasRefPartnerSideB." ; + sh:property [ + sh:path amlOnt:hasRefPartnerSideA ; + sh:minCount 2 ; + ] ; + sh:property [ + sh:path amlOnt:hasRefPartnerSideB ; + sh:minCount 2 ; ] . # Check whether individuals that are not with class Link have hasRefPartnerSideA and hasRefPartnerSideB object properties amlImp:NotLinkHasRefPartnerSides a sh:NodeShape ; - sh:message "Object property 'hasRefPartnerSideA/B' is only applicable to individuals with class Link." ; - sh:targetSubjectsOf amlOnt:hasRefPartnerSideA ; - sh:targetSubjectsOf amlOnt:hasRefPartnerSideB ; - sh:class amlImp:Link . + sh:message "Object property 'hasRefPartnerSideA/B' is only applicable to individuals with class Link." ; + sh:targetSubjectsOf amlOnt:hasRefPartnerSideA ; + sh:targetSubjectsOf amlOnt:hasRefPartnerSideB ; + sh:class amlImp:Link . # Check whether individuals that are not with class PLCProgram have hasCopyProtection/hasKnowHowProtection data properties amlImp:NotPLCProgramHasCopyKnowHowProtection a sh:NodeShape ; - sh:message "Data property 'hasCopyProtection/hasKnowHowProtection' is only applicable to individuals with class PLCProgram." ; - sh:targetSubjectsOf amlImp:hasCopyProtection ; - sh:targetSubjectsOf amlImp:hasKnowHowProtection ; - sh:class amlImp:PLCProgram . + sh:message "Data property 'hasCopyProtection/hasKnowHowProtection' is only applicable to individuals with class PLCProgram." ; + sh:targetSubjectsOf amlImp:hasCopyProtection ; + sh:targetSubjectsOf amlImp:hasKnowHowProtection ; + sh:class amlImp:PLCProgram . # Check whether there are non PLC individuals that have 'hasIE' --> 'PLCProgram' amlImp:NotPLCHasIEPLCProgram a sh:NodeShape ; sh:targetClass amlImp:PLCProgram ; - sh:message "Object property 'hasIE' --> 'PLCProgram' is only applicable to individuals with class PLC." ; + sh:message "Object property 'hasIE' --> 'PLCProgram' is only applicable to individuals with class PLC." ; sh:property [ - sh:path amlOnt:hasIEInv ; - sh:class amlImp:PLC ; + sh:path amlOnt:hasIEInv ; + sh:class amlImp:PLC ; ] . # Check whether there are non Host/NetworkDevice/Robot individuals that have 'hasIE' --> 'PortList' amlImp:PortListHasIEInv a sh:NodeShape ; sh:targetClass amlImp:PortList ; - sh:message "Object property 'hasIE' --> 'PortList' is only applicable to individuals with class Host or NetworkDevice or Robot." ; + sh:message "Object property 'hasIE' --> 'PortList' is only applicable to individuals with class Host or NetworkDevice or Robot." ; sh:property [ - sh:path amlOnt:hasIEInv ; - sh:or ( + sh:path amlOnt:hasIEInv ; + sh:or ( [ sh:class amlImp:Host ] [ sh:class amlImp:NetworkDevice ] [ sh:class amlImp:Robot ] @@ -77,10 +77,10 @@ amlImp:EthernetWirePlugs sh:message "Individual with class EthernetWire must have min./max. 2 'hasEI' --> 'EthernetPlug' individuals." ; sh:targetClass amlImp:EthernetWire ; sh:property [ - sh:path amlOnt:hasEI ; - sh:class amlImp:EthernetPlug ; - sh:minCount 2 ; - sh:maxCount 2 ; + sh:path amlOnt:hasEI ; + sh:class amlImp:EthernetPlug ; + sh:minCount 2 ; + sh:maxCount 2 ; ] . # Check whether individuals with class WirelessConnection have also two 'hasEI' --> 'WirelessPlug' @@ -89,10 +89,10 @@ amlImp:WirelessConnectionPlugs sh:message "Individual with class WirelessConnection must have min./max. 2 'hasEI' --> 'WirelessPlug' individuals." ; sh:targetClass amlImp:WirelessConnection ; sh:property [ - sh:path amlOnt:hasEI ; - sh:class amlImp:WirelessPlug ; - sh:minCount 2 ; - sh:maxCount 2 ; + sh:path amlOnt:hasEI ; + sh:class amlImp:WirelessPlug ; + sh:minCount 2 ; + sh:maxCount 2 ; ] . # Check whether individuals with class MotorWire have also two 'hasEI' --> 'MotorPlug' @@ -101,10 +101,10 @@ amlImp:MotorConnectionPlugs sh:message "Individual with class MotorWire must have min./max. 2 'hasEI' --> 'MotorPlug' individuals." ; sh:targetClass amlImp:MotorWire ; sh:property [ - sh:path amlOnt:hasEI ; - sh:class amlImp:MotorPlug ; - sh:minCount 2 ; - sh:maxCount 2 ; + sh:path amlOnt:hasEI ; + sh:class amlImp:MotorPlug ; + sh:minCount 2 ; + sh:maxCount 2 ; ] . # Check whether individuals with class DataWire have also two 'hasEI' --> 'DataPlug' @@ -113,10 +113,10 @@ amlImp:DataConnectionPlugs sh:message "Individual with class DataWire must have min./max. 2 'hasEI' --> 'DataPlug' individuals." ; sh:targetClass amlImp:DataWire ; sh:property [ - sh:path amlOnt:hasEI ; - sh:class amlImp:DataPlug ; - sh:minCount 2 ; - sh:maxCount 2 ; + sh:path amlOnt:hasEI ; + sh:class amlImp:DataPlug ; + sh:minCount 2 ; + sh:maxCount 2 ; ] . # Check whether individuals with class PortList have also 'hasEI' --> 'EthernetSocket' or 'WirelessInterface' or 'MotorSocket' or 'DataSocket' @@ -125,8 +125,8 @@ amlImp:PortListEIs sh:message "Individual with class PortList must have 'hasEI' --> 'EthernetSocket' or 'WirelessInterface' or 'MotorSocket' or 'DataSocket' individuals." ; sh:targetClass amlImp:PortList ; sh:property [ - sh:path amlOnt:hasEI ; - sh:or ( + sh:path amlOnt:hasEI ; + sh:or ( [ sh:class amlImp:EthernetSocket ] [ sh:class amlImp:WirelessInterface ] [ sh:class amlImp:MotorSocket ] @@ -140,6 +140,6 @@ amlImp:LogicalPortListEIs sh:message "Individual with class LogicalPortList must have 'hasEI' --> 'LogicalEndpoint' individuals." ; sh:targetClass amlImp:LogicalPortList ; sh:property [ - sh:path amlOnt:hasEI ; + sh:path amlOnt:hasEI ; sh:class amlImp:LogicalEndpoint ] . \ No newline at end of file diff --git a/amlsec/src/main/resources/security_vulnerabilities_rules.ttl b/amlsec-base-dir/rules/security_vulnerabilities_rules.ttl similarity index 93% rename from amlsec/src/main/resources/security_vulnerabilities_rules.ttl rename to amlsec-base-dir/rules/security_vulnerabilities_rules.ttl index b13663d..1f6c66d 100644 --- a/amlsec/src/main/resources/security_vulnerabilities_rules.ttl +++ b/amlsec-base-dir/rules/security_vulnerabilities_rules.ttl @@ -9,26 +9,26 @@ icsSecOnt:HasRefPartnerLinkMin1Shape sh:path amlOnt:hasRefPartner ; - sh:qualifiedValueShape [ sh:class amlImp:Link ] ; - sh:qualifiedMinCount 1 . + sh:qualifiedValueShape [ sh:class amlImp:Link ] ; + sh:qualifiedMinCount 1 . # Endpoints without a link (no consumers) icsSecOnt:UnusedLogicalEndpoints a sh:NodeShape ; sh:targetClass amlImp:LogicalEndPoint ; sh:message "Unused Logical Endpoint" ; - sh:property icsSecOnt:HasRefPartnerLinkMin1Shape . + sh:property icsSecOnt:HasRefPartnerLinkMin1Shape . icsSecOnt:ActiveCopyProtection sh:path amlImp:hasCopyProtection ; - sh:hasValue "True" . + sh:hasValue "True" . # Deactivated PLC program copy protection icsSecOnt:DeactivatedPLCProgramCopyProtection a sh:NodeShape ; sh:targetClass amlImp:PLCProgram ; - sh:message "Deactivated Copy Protection" ; - sh:property icsSecOnt:ActiveCopyProtection . + sh:message "Deactivated Copy Protection" ; + sh:property icsSecOnt:ActiveCopyProtection . icsSecOnt:ActiveKnowHowProtection sh:path amlImp:hasKnowHowProtection ; @@ -38,8 +38,8 @@ icsSecOnt:ActiveKnowHowProtection icsSecOnt:DeactivatedPLCProgramKnowHowProtection a sh:NodeShape ; sh:targetClass amlImp:PLCProgram ; - sh:message "Deactivated Know-How Protection" ; - sh:property icsSecOnt:ActiveKnowHowProtection . + sh:message "Deactivated Know-How Protection" ; + sh:property icsSecOnt:ActiveKnowHowProtection . icsSecOnt:InsecureProtocol a sh:NodeShape ; @@ -48,8 +48,8 @@ icsSecOnt:InsecureProtocol icsSecOnt:InsecureProtocolInUse a sh:NodeShape ; sh:targetClass amlImp:LogicalConnection ; - sh:message "Uses insecure protocol" ; - sh:not icsSecOnt:InsecureProtocol . + sh:message "Uses insecure protocol" ; + sh:not icsSecOnt:InsecureProtocol . icsSecOnt:InsecureAlgorithm a sh:NodeShape ; @@ -58,15 +58,15 @@ icsSecOnt:InsecureAlgorithm icsSecOnt:InsecureAlgorithmInUse a sh:NodeShape ; sh:targetClass owl:Thing ; - sh:message "Uses insecure algorithm" ; - sh:not icsSecOnt:InsecureAlgorithm . + sh:message "Uses insecure algorithm" ; + sh:not icsSecOnt:InsecureAlgorithm . # Logical/Physical connection connecting assets from 2 zones, but not declared as conduit icsSecOnt:CrossZoneConnections sh:targetClass amlImp:Wire ; sh:targetClass amlImp:LogicalConnection ; - sh:sparql [ - a sh:SPARQLConstraint ; + sh:sparql [ + a sh:SPARQLConstraint ; sh:message "The logical or physical connection {$this} connects assets of two different security zones ({?zone1} and {?zone2}) and has not been declared as a conduit." ; sh:prefixes [ sh:declare [ @@ -141,15 +141,15 @@ icsSecOnt:CrossZoneConnections } """ ; - ] . + ] . # ICS assets are logically or physically connected to business or enterprise system assets (ZCR-3.2) icsSecOnt:ITOTCrossConnections a sh:NodeShape ; sh:targetClass amlImp:Wire ; sh:targetClass amlImp:LogicalConnection ; - sh:sparql [ - a sh:SPARQLConstraint ; + sh:sparql [ + a sh:SPARQLConstraint ; sh:message "The logical or physical connection {$this} connects an ICS asset to a business or enterprise asset (zones: {?zone1} and {?zone2})." ; sh:prefixes [ sh:declare [ @@ -232,14 +232,14 @@ icsSecOnt:ITOTCrossConnections } """ ; - ] . + ] . # Safety-related assets are grouped into one zone (ZCR-3.3a) icsSecOnt:SafetyAssetsZone a sh:NodeShape ; sh:targetClass amlImp:Host ; - sh:sparql [ - a sh:SPARQLConstraint ; + sh:sparql [ + a sh:SPARQLConstraint ; sh:message "The safety-related device {$this} is within the zone {?zone1} (other non-safety-related device in this zone is {?host2})." ; sh:prefixes [ sh:declare [ @@ -262,48 +262,40 @@ icsSecOnt:SafetyAssetsZone sh:select """ SELECT DISTINCT $this ?host2 ?zone1 WHERE { - $this rdf:type ?hostType. - ?host2 rdf:type ?hostType. - ?hostType rdfs:subClassOf* amlImp:Host. + $this a amlImp:SIS . + ?host2 rdf:type/rdfs:subClassOf* amlImp:Host . - $this a amlImp:SIS. - - ?zone1 amlOnt:hasIE+ $this. - ?zone1 amlOnt:hasIE+ ?host2. - - ?zone1 rdf:type ?zoneType. - ?zoneType rdfs:subClassOf* amlImp:Zone. + ?zone1 amlOnt:hasIE+ $this, ?host2 ; + rdf:type/rdfs:subClassOf* amlImp:Zone . FILTER NOT EXISTS { - ?zone1 amlOnt:hasIE+ ?anyZone1. - ?anyZone1 amlOnt:hasIE+ $this. - ?anyZone1 rdf:type ?anyZoneType1. - ?anyZoneType1 rdfs:subClassOf* amlImp:Zone. + ?zone1 amlOnt:hasIE+ ?anyZone1 . + ?anyZone1 amlOnt:hasIE+ $this ; + rdf:type/rdfs:subClassOf* amlImp:Zone . } FILTER NOT EXISTS { - ?zone1 amlOnt:hasIE+ ?anyZone1. - ?anyZone1 amlOnt:hasIE+ ?host2. - ?anyZone1 rdf:type ?anyZoneType1. - ?anyZoneType1 rdfs:subClassOf* amlImp:Zone. + ?zone1 amlOnt:hasIE+ ?anyZone1 . + ?anyZone1 amlOnt:hasIE+ ?host2 ; + rdf:type/rdfs:subClassOf* amlImp:Zone . } FILTER NOT EXISTS { - $this a amlImp:SIS. - ?host2 a amlImp:SIS. + $this a amlImp:SIS . + ?host2 a amlImp:SIS . } } """ ; - ] . + ] . # Logical/Physical connection connecting safety-related assets and non-safety related assets (ZCR-3.3b) icsSecOnt:SafetyAssetsConnectionZone a sh:NodeShape ; sh:targetClass amlImp:Wire ; sh:targetClass amlImp:LogicalConnection ; - sh:sparql [ - a sh:SPARQLConstraint ; + sh:sparql [ + a sh:SPARQLConstraint ; sh:message "The logical or physical connection {$this} connects safety-related assets and non-safety-related assets (different security zones {?zone1} and {?zone2})." ; sh:prefixes [ sh:declare [ @@ -387,14 +379,14 @@ icsSecOnt:SafetyAssetsConnectionZone } """ ; - ] . + ] . # Devices that make temporary connections are grouped into a separate zone (ZCR-3.4) icsSecOnt:TempConnections a sh:NodeShape ; sh:targetClass amlImp:Host ; - sh:sparql [ - a sh:SPARQLConstraint ; + sh:sparql [ + a sh:SPARQLConstraint ; sh:message "The device {$this} makes temporary connections within the zone {?zone1} (other device in this zone is {?host2})." ; sh:prefixes [ sh:declare [ @@ -452,14 +444,14 @@ icsSecOnt:TempConnections } """ ; - ] . + ] . # Wireless assets are grouped into one zone (ZCR-3.5a) icsSecOnt:WirelessAssetsZone a sh:NodeShape ; sh:targetClass amlImp:Host ; - sh:sparql [ - a sh:SPARQLConstraint ; + sh:sparql [ + a sh:SPARQLConstraint ; sh:message "The wireless-enabled device {$this} is within the zone {?zone1} (other wired device in this zone is {?host2})." ; sh:prefixes [ sh:declare [ @@ -524,15 +516,15 @@ icsSecOnt:WirelessAssetsZone } """ ; - ] . + ] . # Logical/Physical connection connecting wireless assets and wired assets (ZCR-3.5b) icsSecOnt:WirelessAssetsConnectionZone a sh:NodeShape ; sh:targetClass amlImp:WirelessConnection ; sh:targetClass amlImp:LogicalConnection ; - sh:sparql [ - a sh:SPARQLConstraint ; + sh:sparql [ + a sh:SPARQLConstraint ; sh:message "The logical or physical connection {$this} connects wireless-enabled assets and non-wireless-enabled assets (different security zones {?zone1} and {?zone2})." ; sh:prefixes [ sh:declare [ @@ -614,7 +606,7 @@ icsSecOnt:WirelessAssetsConnectionZone } } """ ; - ] . + ] . # Devices that make external connections are grouped into a separate zone (ZCR-3.6) icsSecOnt:ExtConnections diff --git a/amlsec-base-dir/security-ontologies b/amlsec-base-dir/security-ontologies new file mode 120000 index 0000000..982bdf6 --- /dev/null +++ b/amlsec-base-dir/security-ontologies @@ -0,0 +1 @@ +../security-ontologies \ No newline at end of file diff --git a/amlsec/.gitignore b/amlsec/.gitignore index a77d5e5..1f490dd 100644 --- a/amlsec/.gitignore +++ b/amlsec/.gitignore @@ -37,7 +37,7 @@ build/*.jar develop-eggs/ dist/ eggs/ -lib/ +test/ lib64/ parts/ sdist/ @@ -100,7 +100,7 @@ build/ develop-eggs/ dist/ eggs/ -lib/ +test/ lib64/ parts/ sdist/ @@ -157,6 +157,5 @@ out # Python venv -# OWL / Test +# Protege **/catalog-v001.xml -test.owl \ No newline at end of file diff --git a/amlsec/build.sbt b/amlsec/build.sbt index ccbd81b..21430f8 100644 --- a/amlsec/build.sbt +++ b/amlsec/build.sbt @@ -4,23 +4,44 @@ version := "0.1" scalaVersion := "2.13.1" -val jenaVersion = "3.9.0" +val jenaVersion = "3.16.0" +val akkaVersion = "2.6.6" +val cassandraPluginVersion = "0.103" + +Global / cancelable := true libraryDependencies ++= Seq( "com.github.scopt" %% "scopt" % "4.0.0-RC2", "org.apache.jena" % "jena-core" % jenaVersion, "org.apache.jena" % "jena-arq" % jenaVersion, + "org.apache.jena" % "jena-fuseki-main" % jenaVersion, "com.typesafe" % "config" % "1.3.2", "org.slf4j" % "slf4j-simple" % "1.6.4", "org.scala-lang.modules" %% "scala-xml" % "1.2.0", "org.apache.commons" % "commons-lang3" % "3.8.1", - "org.topbraid" % "shacl" % "1.3.0", + "org.topbraid" % "shacl" % "1.3.2", "ch.qos.logback" % "logback-classic" % "1.2.3", "com.typesafe.scala-logging" %% "scala-logging" % "3.9.2", - "guru.nidi" % "graphviz-java" % "0.12.1" + "guru.nidi" % "graphviz-java" % "0.12.1", + // AKKA + "com.typesafe.akka" %% "akka-cluster-typed" % akkaVersion, + "com.typesafe.akka" %% "akka-http" % "10.2.0-M1", + "com.typesafe.akka" %% "akka-slf4j" % akkaVersion, + "com.typesafe.akka" %% "akka-persistence-typed" % akkaVersion, + "com.typesafe.akka" %% "akka-persistence-query" % akkaVersion, + "com.typesafe.akka" %% "akka-serialization-jackson" % akkaVersion, + "com.typesafe.akka" %% "akka-cluster-tools" % akkaVersion, // this is probably not necessary + "com.typesafe.akka" %% "akka-persistence-cassandra" % cassandraPluginVersion, + // this allows us to start cassandra from the sample + "com.typesafe.akka" %% "akka-persistence-cassandra-launcher" % cassandraPluginVersion, + "ch.qos.logback" % "logback-classic" % "1.2.3", + // test dependencies + "com.typesafe.akka" %% "akka-actor-testkit-typed" % akkaVersion % Test, + "org.scalatest" %% "scalatest" % "3.0.8" % Test, + "commons-io" % "commons-io" % "2.4" % Test ) -mainClass in assembly := Some("org.sba_research.MainApp") +// mainClass in assembly := Some("org.sba_research.AMLsecApp") // cf. https://github.com/sbt/sbt/issues/3963 // cf. https://stackoverflow.com/a/55545558/5107545 diff --git a/amlsec/project/build.properties b/amlsec/project/build.properties index 2b52f97..f37b0aa 100644 --- a/amlsec/project/build.properties +++ b/amlsec/project/build.properties @@ -1 +1 @@ -sbt.version = 1.3.2 \ No newline at end of file +sbt.version = 1.3.10 \ No newline at end of file diff --git a/amlsec/src/main/resources/aml.ttl b/amlsec/src/main/resources/aml.ttl deleted file mode 100644 index 4fee1c9..0000000 --- a/amlsec/src/main/resources/aml.ttl +++ /dev/null @@ -1,14195 +0,0 @@ -@prefix : . -@prefix owl: . -@prefix rdf: . -@prefix xml: . -@prefix xsd: . -@prefix rdfs: . -@prefix aml_importer: . -@prefix aml_ontology: . -@base . - - rdf:type owl:Ontology . - -################################################################# -# Object Properties -################################################################# - -### http://www.ipr.kit.edu/aml_ontology#hasEI -aml_ontology:hasEI rdf:type owl:ObjectProperty . - - -### http://www.ipr.kit.edu/aml_ontology#hasIE -aml_ontology:hasIE rdf:type owl:ObjectProperty . - - -### http://www.ipr.kit.edu/aml_ontology#hasRefPartnerSideA -aml_ontology:hasRefPartnerSideA rdf:type owl:ObjectProperty . - - -### http://www.ipr.kit.edu/aml_ontology#hasRefPartnerSideB -aml_ontology:hasRefPartnerSideB rdf:type owl:ObjectProperty . - - -################################################################# -# Data properties -################################################################# - -### http://www.ipr.kit.edu/aml_importer#hasCopyProtection -aml_importer:hasCopyProtection rdf:type owl:DatatypeProperty ; - rdfs:range xsd:string . - - -### http://www.ipr.kit.edu/aml_importer#hasCpeEdition -aml_importer:hasCpeEdition rdf:type owl:DatatypeProperty ; - rdfs:range xsd:string . - - -### http://www.ipr.kit.edu/aml_importer#hasCpePart -aml_importer:hasCpePart rdf:type owl:DatatypeProperty ; - rdfs:range xsd:string . - - -### http://www.ipr.kit.edu/aml_importer#hasCpeProduct -aml_importer:hasCpeProduct rdf:type owl:DatatypeProperty ; - rdfs:range xsd:string . - - -### http://www.ipr.kit.edu/aml_importer#hasCpeUpdate -aml_importer:hasCpeUpdate rdf:type owl:DatatypeProperty ; - rdfs:range xsd:string . - - -### http://www.ipr.kit.edu/aml_importer#hasCpeVendor -aml_importer:hasCpeVendor rdf:type owl:DatatypeProperty ; - rdfs:range xsd:string . - - -### http://www.ipr.kit.edu/aml_importer#hasCpeVersion -aml_importer:hasCpeVersion rdf:type owl:DatatypeProperty ; - rdfs:range xsd:string . - - -### http://www.ipr.kit.edu/aml_importer#hasFrame_rx -aml_importer:hasFrame_rx rdf:type owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - - -### http://www.ipr.kit.edu/aml_importer#hasFrame_ry -aml_importer:hasFrame_ry rdf:type owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - - -### http://www.ipr.kit.edu/aml_importer#hasFrame_rz -aml_importer:hasFrame_rz rdf:type owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - - -### http://www.ipr.kit.edu/aml_importer#hasFrame_x -aml_importer:hasFrame_x rdf:type owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - - -### http://www.ipr.kit.edu/aml_importer#hasFrame_y -aml_importer:hasFrame_y rdf:type owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - - -### http://www.ipr.kit.edu/aml_importer#hasFrame_z -aml_importer:hasFrame_z rdf:type owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - - -### http://www.ipr.kit.edu/aml_importer#hasKnowHowProtection -aml_importer:hasKnowHowProtection rdf:type owl:DatatypeProperty ; - rdfs:range xsd:string . - - -### http://www.ipr.kit.edu/aml_importer#hasRefType -aml_importer:hasRefType rdf:type owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - - -### http://www.ipr.kit.edu/aml_importer#hasRefURI -aml_importer:hasRefURI rdf:type owl:DatatypeProperty ; - rdfs:range xsd:string . - - -### http://www.ipr.kit.edu/aml_importer#hasTarget -aml_importer:hasTarget rdf:type owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - - -################################################################# -# Classes -################################################################# - -### http://www.ipr.kit.edu/aml_importer#AGV -aml_importer:AGV rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Transport ; - rdfs:comment "RoleClass" ; - rdfs:label "AGV" . - - -### http://www.ipr.kit.edu/aml_importer#AVServer -aml_importer:AVServer rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "AVServer" . - - -### http://www.ipr.kit.edu/aml_importer#ActuatingDrive -aml_importer:ActuatingDrive rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Actuator ; - rdfs:comment "RoleClass" ; - rdfs:label "ActuatingDrive" . - - -### http://www.ipr.kit.edu/aml_importer#Actuator -aml_importer:Actuator rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Actuator" . - - -### http://www.ipr.kit.edu/aml_importer#Area -aml_importer:Area rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "Area" . - - -### http://www.ipr.kit.edu/aml_importer#AttachmentInterface -aml_importer:AttachmentInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "AttachmentInterface" . - - -### http://www.ipr.kit.edu/aml_importer#AutomationCellZone -aml_importer:AutomationCellZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:OTZone ; - rdfs:comment "RoleClass" ; - rdfs:label "AutomationCellZone" . - - -### http://www.ipr.kit.edu/aml_importer#AutomationMLBaseInterface -aml_importer:AutomationMLBaseInterface rdf:type owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "AutomationMLBaseInterface" . - - -### http://www.ipr.kit.edu/aml_importer#AutomationMLBaseRole -aml_importer:AutomationMLBaseRole rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "AutomationMLBaseRole" . - - -### http://www.ipr.kit.edu/aml_importer#Basic128RSA15 -aml_importer:Basic128RSA15 rdf:type owl:Class ; - rdfs:subClassOf aml_importer:OPCUASecurityPolicy ; - rdfs:comment "RoleClass" ; - rdfs:label "Basic128RSA15" . - - -### http://www.ipr.kit.edu/aml_importer#Basic256 -aml_importer:Basic256 rdf:type owl:Class ; - rdfs:subClassOf aml_importer:OPCUASecurityPolicy ; - rdfs:comment "RoleClass" ; - rdfs:label "Basic256" . - - -### http://www.ipr.kit.edu/aml_importer#Basic256SHA256 -aml_importer:Basic256SHA256 rdf:type owl:Class ; - rdfs:subClassOf aml_importer:OPCUASecurityPolicy ; - rdfs:comment "RoleClass" ; - rdfs:label "Basic256SHA256" . - - -### http://www.ipr.kit.edu/aml_importer#BehaviourLogicInterface -aml_importer:BehaviourLogicInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "BehaviourLogicInterface" . - - -### http://www.ipr.kit.edu/aml_importer#BeltConveyor -aml_importer:BeltConveyor rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Conveyor ; - rdfs:comment "RoleClass" ; - rdfs:label "BeltConveyor" . - - -### http://www.ipr.kit.edu/aml_importer#BodyStore -aml_importer:BodyStore rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Storage ; - rdfs:comment "RoleClass" ; - rdfs:label "BodyStore" . - - -### http://www.ipr.kit.edu/aml_importer#BusinessZone -aml_importer:BusinessZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ITZone ; - rdfs:comment "RoleClass" ; - rdfs:label "BusinessZone" . - - -### http://www.ipr.kit.edu/aml_importer#COLLADAInterface -aml_importer:COLLADAInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ExternalDataConnector ; - rdfs:comment "InterfaceClass" ; - rdfs:label "COLLADAInterface" . - - -### http://www.ipr.kit.edu/aml_importer#Carrier -aml_importer:Carrier rdf:type owl:Class ; - rdfs:subClassOf aml_importer:DiscManufacturingEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Carrier" . - - -### http://www.ipr.kit.edu/aml_importer#CarrierHandlingSystem -aml_importer:CarrierHandlingSystem rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Transport ; - rdfs:comment "RoleClass" ; - rdfs:label "CarrierHandlingSystem" . - - -### http://www.ipr.kit.edu/aml_importer#ChainConveyor -aml_importer:ChainConveyor rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Conveyor ; - rdfs:comment "RoleClass" ; - rdfs:label "ChainConveyor" . - - -### http://www.ipr.kit.edu/aml_importer#Clamp -aml_importer:Clamp rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Fixture ; - rdfs:comment "RoleClass" ; - rdfs:label "Clamp" . - - -### http://www.ipr.kit.edu/aml_importer#Communication -aml_importer:Communication rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseInterface , - aml_importer:ControlEquipment ; - rdfs:comment "InterfaceClass" , - "RoleClass" ; - rdfs:label "Communication" . - - -### http://www.ipr.kit.edu/aml_importer#CommunicationPackage -aml_importer:CommunicationPackage rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "CommunicationPackage" . - - -### http://www.ipr.kit.edu/aml_importer#Conduit -aml_importer:Conduit rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Conduit" . - - -### http://www.ipr.kit.edu/aml_importer#ControlCabinet -aml_importer:ControlCabinet rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "ControlCabinet" . - - -### http://www.ipr.kit.edu/aml_importer#ControlEquipment -aml_importer:ControlEquipment rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Resource ; - rdfs:comment "RoleClass" ; - rdfs:label "ControlEquipment" . - - -### http://www.ipr.kit.edu/aml_importer#ControlHardware -aml_importer:ControlHardware rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "ControlHardware" . - - -### http://www.ipr.kit.edu/aml_importer#ControlZone -aml_importer:ControlZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:OTZone ; - rdfs:comment "RoleClass" ; - rdfs:label "ControlZone" . - - -### http://www.ipr.kit.edu/aml_importer#Controller -aml_importer:Controller rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Controller" . - - -### http://www.ipr.kit.edu/aml_importer#Conveyor -aml_importer:Conveyor rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Transport ; - rdfs:comment "RoleClass" ; - rdfs:label "Conveyor" . - - -### http://www.ipr.kit.edu/aml_importer#Data -aml_importer:Data rdf:type owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Data" . - - -### http://www.ipr.kit.edu/aml_importer#DataPlug -aml_importer:DataPlug rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Data ; - rdfs:comment "InterfaceClass" ; - rdfs:label "DataPlug" . - - -### http://www.ipr.kit.edu/aml_importer#DataSocket -aml_importer:DataSocket rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Data ; - rdfs:comment "InterfaceClass" ; - rdfs:label "DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#DataWire -aml_importer:DataWire rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Wire ; - rdfs:comment "RoleClass" ; - rdfs:label "DataWire" . - - -### http://www.ipr.kit.edu/aml_importer#DatagrammObject -aml_importer:DatagrammObject rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Communication ; - rdfs:comment "InterfaceClass" ; - rdfs:label "DatagrammObject" . - - -### http://www.ipr.kit.edu/aml_importer#DiscManufacturingEquipment -aml_importer:DiscManufacturingEquipment rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Resource ; - rdfs:comment "RoleClass" ; - rdfs:label "DiscManufacturingEquipment" . - - -### http://www.ipr.kit.edu/aml_importer#DmzZone -aml_importer:DmzZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ITZone ; - rdfs:comment "RoleClass" ; - rdfs:label "DmzZone" . - - -### http://www.ipr.kit.edu/aml_importer#ERP -aml_importer:ERP rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "ERP" . - - -### http://www.ipr.kit.edu/aml_importer#EmbeddedDevice -aml_importer:EmbeddedDevice rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlHardware ; - rdfs:comment "RoleClass" ; - rdfs:label "EmbeddedDevice" . - - -### http://www.ipr.kit.edu/aml_importer#EngineeringWorkstation -aml_importer:EngineeringWorkstation rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "EngineeringWorkstation" . - - -### http://www.ipr.kit.edu/aml_importer#Enterprise -aml_importer:Enterprise rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "Enterprise" . - - -### http://www.ipr.kit.edu/aml_importer#EnterpriseDmzZone -aml_importer:EnterpriseDmzZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ITZone ; - rdfs:comment "RoleClass" ; - rdfs:label "EnterpriseDmzZone" . - - -### http://www.ipr.kit.edu/aml_importer#EnterpriseZone -aml_importer:EnterpriseZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ITZone ; - rdfs:comment "RoleClass" ; - rdfs:label "EnterpriseZone" . - - -### http://www.ipr.kit.edu/aml_importer#Ethernet -aml_importer:Ethernet rdf:type owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Ethernet" . - - -### http://www.ipr.kit.edu/aml_importer#EthernetPlug -aml_importer:EthernetPlug rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Ethernet ; - rdfs:comment "InterfaceClass" ; - rdfs:label "EthernetPlug" . - - -### http://www.ipr.kit.edu/aml_importer#EthernetSocket -aml_importer:EthernetSocket rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Ethernet ; - rdfs:comment "InterfaceClass" ; - rdfs:label "EthernetSocket" . - - -### http://www.ipr.kit.edu/aml_importer#EthernetWire -aml_importer:EthernetWire rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Wire ; - rdfs:comment "RoleClass" ; - rdfs:label "EthernetWire" . - - -### http://www.ipr.kit.edu/aml_importer#ExternalDataConnector -aml_importer:ExternalDataConnector rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "ExternalDataConnector" . - - -### http://www.ipr.kit.edu/aml_importer#Facet -aml_importer:Facet rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "Facet" . - - -### http://www.ipr.kit.edu/aml_importer#Fileserver -aml_importer:Fileserver rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "Fileserver" . - - -### http://www.ipr.kit.edu/aml_importer#Firewall -aml_importer:Firewall rdf:type owl:Class ; - rdfs:subClassOf aml_importer:SecurityDevice ; - rdfs:comment "RoleClass" ; - rdfs:label "Firewall" . - - -### http://www.ipr.kit.edu/aml_importer#Fixture -aml_importer:Fixture rdf:type owl:Class ; - rdfs:subClassOf aml_importer:DiscManufacturingEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Fixture" . - - -### http://www.ipr.kit.edu/aml_importer#Frame -aml_importer:Frame rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "Frame" . - - -### http://www.ipr.kit.edu/aml_importer#Gate -aml_importer:Gate rdf:type owl:Class ; - rdfs:subClassOf aml_importer:DiscManufacturingEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Gate" . - - -### http://www.ipr.kit.edu/aml_importer#Group -aml_importer:Group rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "Group" . - - -### http://www.ipr.kit.edu/aml_importer#HMI -aml_importer:HMI rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "HMI" . - - -### http://www.ipr.kit.edu/aml_importer#HMIFacet -aml_importer:HMIFacet rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Facet ; - rdfs:comment "RoleClass" ; - rdfs:label "HMIFacet" . - - -### http://www.ipr.kit.edu/aml_importer#HTTP -aml_importer:HTTP rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Protocol ; - rdfs:comment "RoleClass" ; - rdfs:label "HTTP" . - - -### http://www.ipr.kit.edu/aml_importer#HTTPS -aml_importer:HTTPS rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Protocol ; - rdfs:comment "RoleClass" ; - rdfs:label "HTTPS" . - - -### http://www.ipr.kit.edu/aml_importer#Handheld -aml_importer:Handheld rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlHardware ; - rdfs:comment "RoleClass" ; - rdfs:label "Handheld" . - - -### http://www.ipr.kit.edu/aml_importer#Historian -aml_importer:Historian rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "Historian" . - - -### http://www.ipr.kit.edu/aml_importer#Host -aml_importer:Host rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Host" . - - -### http://www.ipr.kit.edu/aml_importer#IODevice -aml_importer:IODevice rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "IODevice" . - - -### http://www.ipr.kit.edu/aml_importer#IPC -aml_importer:IPC rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlHardware ; - rdfs:comment "RoleClass" ; - rdfs:label "IPC" . - - -### http://www.ipr.kit.edu/aml_importer#ITZone -aml_importer:ITZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Zone ; - rdfs:comment "RoleClass" ; - rdfs:label "ITZone" . - - -### http://www.ipr.kit.edu/aml_importer#InterlockingConnector -aml_importer:InterlockingConnector rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "InterlockingConnector" . - - -### http://www.ipr.kit.edu/aml_importer#InterlockingLogicInterface -aml_importer:InterlockingLogicInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "InterlockingLogicInterface" . - - -### http://www.ipr.kit.edu/aml_importer#InterlockingVariableInterface -aml_importer:InterlockingVariableInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:VariableInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "InterlockingVariableInterface" . - - -### http://www.ipr.kit.edu/aml_importer#JumpServer -aml_importer:JumpServer rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "JumpServer" . - - -### http://www.ipr.kit.edu/aml_importer#Lift -aml_importer:Lift rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Transport ; - rdfs:comment "RoleClass" ; - rdfs:label "Lift" . - - -### http://www.ipr.kit.edu/aml_importer#LiftingTable -aml_importer:LiftingTable rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Transport ; - rdfs:comment "RoleClass" ; - rdfs:label "LiftingTable" . - - -### http://www.ipr.kit.edu/aml_importer#Link -aml_importer:Link rdf:type owl:Class . - - -### http://www.ipr.kit.edu/aml_importer#Loader -aml_importer:Loader rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Storage ; - rdfs:comment "RoleClass" ; - rdfs:label "Loader" . - - -### http://www.ipr.kit.edu/aml_importer#LogicElementInterface -aml_importer:LogicElementInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:PLCopenXMLInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicElementInterface" . - - -### http://www.ipr.kit.edu/aml_importer#LogicInterface -aml_importer:LogicInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:PLCopenXMLInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicInterface" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalConnection -aml_importer:LogicalConnection rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalConnection" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalDevice -aml_importer:LogicalDevice rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalDevice" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndPoint -aml_importer:LogicalEndPoint rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Communication ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndPoint" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndpoint -aml_importer:LogicalEndpoint rdf:type owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpoint" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndpointHTTP -aml_importer:LogicalEndpointHTTP rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicalEndpoint ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointHTTP" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndpointHTTPS -aml_importer:LogicalEndpointHTTPS rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicalEndpoint ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointHTTPS" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndpointModbus -aml_importer:LogicalEndpointModbus rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicalEndpoint ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointModbus" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndpointOPC -aml_importer:LogicalEndpointOPC rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicalEndpoint ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndpointOPC-UA -aml_importer:LogicalEndpointOPC-UA rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicalEndpoint ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointOPC-UA" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndpointPROFIsafe -aml_importer:LogicalEndpointPROFIsafe rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicalEndpoint ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndpointProfinet -aml_importer:LogicalEndpointProfinet rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicalEndpoint ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalEndpointlist -aml_importer:LogicalEndpointlist rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalEndpointlist" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalNetwork -aml_importer:LogicalNetwork rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalPortList -aml_importer:LogicalPortList rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#LogicalRemoteEndpoint -aml_importer:LogicalRemoteEndpoint rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicalEndpoint ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalRemoteEndpoint" . - - -### http://www.ipr.kit.edu/aml_importer#MES -aml_importer:MES rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "MES" . - - -### http://www.ipr.kit.edu/aml_importer#Machine -aml_importer:Machine rdf:type owl:Class ; - rdfs:subClassOf aml_importer:DiscManufacturingEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Machine" . - - -### http://www.ipr.kit.edu/aml_importer#MailServer -aml_importer:MailServer rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "MailServer" . - - -### http://www.ipr.kit.edu/aml_importer#MeasuringEquipment -aml_importer:MeasuringEquipment rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Resource ; - rdfs:comment "RoleClass" ; - rdfs:label "MeasuringEquipment" . - - -### http://www.ipr.kit.edu/aml_importer#MobileEngineeringWorkstation -aml_importer:MobileEngineeringWorkstation rdf:type owl:Class ; - rdfs:subClassOf aml_importer:EngineeringWorkstation ; - rdfs:comment "RoleClass" ; - rdfs:label "MobileEngineeringWorkstation" . - - -### http://www.ipr.kit.edu/aml_importer#Modbus -aml_importer:Modbus rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Protocol ; - rdfs:comment "RoleClass" ; - rdfs:label "Modbus" . - - -### http://www.ipr.kit.edu/aml_importer#MotionController -aml_importer:MotionController rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "MotionController" . - - -### http://www.ipr.kit.edu/aml_importer#Motor -aml_importer:Motor rdf:type owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Motor" . - - -### http://www.ipr.kit.edu/aml_importer#MotorPlug -aml_importer:MotorPlug rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Motor ; - rdfs:comment "InterfaceClass" ; - rdfs:label "MotorPlug" . - - -### http://www.ipr.kit.edu/aml_importer#MotorSocket -aml_importer:MotorSocket rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Motor ; - rdfs:comment "InterfaceClass" ; - rdfs:label "MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#MotorWire -aml_importer:MotorWire rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Wire ; - rdfs:comment "RoleClass" ; - rdfs:label "MotorWire" . - - -### http://www.ipr.kit.edu/aml_importer#MovableTool -aml_importer:MovableTool rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Tool ; - rdfs:comment "RoleClass" ; - rdfs:label "MovableTool" . - - -### http://www.ipr.kit.edu/aml_importer#NC -aml_importer:NC rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Controller ; - rdfs:comment "RoleClass" ; - rdfs:label "NC" . - - -### http://www.ipr.kit.edu/aml_importer#NetworkDevice -aml_importer:NetworkDevice rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "NetworkDevice" . - - -### http://www.ipr.kit.edu/aml_importer#OPC -aml_importer:OPC rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Protocol ; - rdfs:comment "RoleClass" ; - rdfs:label "OPC" . - - -### http://www.ipr.kit.edu/aml_importer#OPC-UA -aml_importer:OPC-UA rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Protocol ; - rdfs:comment "RoleClass" ; - rdfs:label "OPC-UA" . - - -### http://www.ipr.kit.edu/aml_importer#OPCUASecurityPolicy -aml_importer:OPCUASecurityPolicy rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "OPCUASecurityPolicy" . - - -### http://www.ipr.kit.edu/aml_importer#OTZone -aml_importer:OTZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Zone ; - rdfs:comment "RoleClass" ; - rdfs:label "OTZone" . - - -### http://www.ipr.kit.edu/aml_importer#OperationsSupportZone -aml_importer:OperationsSupportZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:OTZone ; - rdfs:comment "RoleClass" ; - rdfs:label "OperationsSupportZone" . - - -### http://www.ipr.kit.edu/aml_importer#Order -aml_importer:Order rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Order" . - - -### http://www.ipr.kit.edu/aml_importer#OverheadConveyor -aml_importer:OverheadConveyor rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Conveyor ; - rdfs:comment "RoleClass" ; - rdfs:label "OverheadConveyor" . - - -### http://www.ipr.kit.edu/aml_importer#PAC -aml_importer:PAC rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Controller ; - rdfs:comment "RoleClass" ; - rdfs:label "PAC" . - - -### http://www.ipr.kit.edu/aml_importer#PC -aml_importer:PC rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlHardware ; - rdfs:comment "RoleClass" ; - rdfs:label "PC" . - - -### http://www.ipr.kit.edu/aml_importer#PLC -aml_importer:PLC rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Controller ; - rdfs:comment "RoleClass" ; - rdfs:label "PLC" . - - -### http://www.ipr.kit.edu/aml_importer#PLCFacet -aml_importer:PLCFacet rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Facet ; - rdfs:comment "RoleClass" ; - rdfs:label "PLCFacet" . - - -### http://www.ipr.kit.edu/aml_importer#PLCProgram -aml_importer:PLCProgram rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Program ; - rdfs:comment "RoleClass" ; - rdfs:label "PLCProgram" . - - -### http://www.ipr.kit.edu/aml_importer#PLCopenXMLInterface -aml_importer:PLCopenXMLInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ExternalDataConnector ; - rdfs:comment "InterfaceClass" ; - rdfs:label "PLCopenXMLInterface" . - - -### http://www.ipr.kit.edu/aml_importer#PPRConnector -aml_importer:PPRConnector rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "PPRConnector" . - - -### http://www.ipr.kit.edu/aml_importer#PROFIsafe -aml_importer:PROFIsafe rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Protocol ; - rdfs:comment "RoleClass" ; - rdfs:label "PROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#PalletConveyor -aml_importer:PalletConveyor rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Conveyor ; - rdfs:comment "RoleClass" ; - rdfs:label "PalletConveyor" . - - -### http://www.ipr.kit.edu/aml_importer#Panel -aml_importer:Panel rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlHardware ; - rdfs:comment "RoleClass" ; - rdfs:label "Panel" . - - -### http://www.ipr.kit.edu/aml_importer#PatchManagementServer -aml_importer:PatchManagementServer rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "PatchManagementServer" . - - -### http://www.ipr.kit.edu/aml_importer#PhysicalConnection -aml_importer:PhysicalConnection rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "PhysicalConnection" . - - -### http://www.ipr.kit.edu/aml_importer#PhysicalDevice -aml_importer:PhysicalDevice rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "PhysicalDevice" . - - -### http://www.ipr.kit.edu/aml_importer#PhysicalEndPoint -aml_importer:PhysicalEndPoint rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Communication ; - rdfs:comment "InterfaceClass" ; - rdfs:label "PhysicalEndPoint" . - - -### http://www.ipr.kit.edu/aml_importer#PhysicalEndpointlist -aml_importer:PhysicalEndpointlist rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "PhysicalEndpointlist" . - - -### http://www.ipr.kit.edu/aml_importer#PhysicalNetwork -aml_importer:PhysicalNetwork rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "PhysicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#Port -aml_importer:Port rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "Port" . - - -### http://www.ipr.kit.edu/aml_importer#PortConnector -aml_importer:PortConnector rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "PortConnector" . - - -### http://www.ipr.kit.edu/aml_importer#PortList -aml_importer:PortList rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PortList" . - - -### http://www.ipr.kit.edu/aml_importer#Process -aml_importer:Process rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "Process" . - - -### http://www.ipr.kit.edu/aml_importer#ProcessCell -aml_importer:ProcessCell rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "ProcessCell" . - - -### http://www.ipr.kit.edu/aml_importer#ProcessController -aml_importer:ProcessController rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Controller ; - rdfs:comment "RoleClass" ; - rdfs:label "ProcessController" . - - -### http://www.ipr.kit.edu/aml_importer#ProcessStructure -aml_importer:ProcessStructure rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Structure ; - rdfs:comment "RoleClass" ; - rdfs:label "ProcessStructure" . - - -### http://www.ipr.kit.edu/aml_importer#ProcessZone -aml_importer:ProcessZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:OTZone ; - rdfs:comment "RoleClass" ; - rdfs:label "ProcessZone" . - - -### http://www.ipr.kit.edu/aml_importer#Product -aml_importer:Product rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "Product" . - - -### http://www.ipr.kit.edu/aml_importer#ProductStructure -aml_importer:ProductStructure rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Structure ; - rdfs:comment "RoleClass" ; - rdfs:label "ProductStructure" . - - -### http://www.ipr.kit.edu/aml_importer#ProductionLine -aml_importer:ProductionLine rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "ProductionLine" . - - -### http://www.ipr.kit.edu/aml_importer#ProductionUnit -aml_importer:ProductionUnit rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "ProductionUnit" . - - -### http://www.ipr.kit.edu/aml_importer#Profinet -aml_importer:Profinet rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Protocol ; - rdfs:comment "RoleClass" ; - rdfs:label "Profinet" . - - -### http://www.ipr.kit.edu/aml_importer#Program -aml_importer:Program rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Program" . - - -### http://www.ipr.kit.edu/aml_importer#PropertySet -aml_importer:PropertySet rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "PropertySet" . - - -### http://www.ipr.kit.edu/aml_importer#Protocol -aml_importer:Protocol rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Protocol" . - - -### http://www.ipr.kit.edu/aml_importer#RC -aml_importer:RC rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Controller ; - rdfs:comment "RoleClass" ; - rdfs:label "RC" . - - -### http://www.ipr.kit.edu/aml_importer#RemoteManagementSystem -aml_importer:RemoteManagementSystem rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "RemoteManagementSystem" . - - -### http://www.ipr.kit.edu/aml_importer#Resource -aml_importer:Resource rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "Resource" . - - -### http://www.ipr.kit.edu/aml_importer#ResourceStructure -aml_importer:ResourceStructure rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Structure ; - rdfs:comment "RoleClass" ; - rdfs:label "ResourceStructure" . - - -### http://www.ipr.kit.edu/aml_importer#Robot -aml_importer:Robot rdf:type owl:Class ; - rdfs:subClassOf aml_importer:DiscManufacturingEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Robot" . - - -### http://www.ipr.kit.edu/aml_importer#RollConveyor -aml_importer:RollConveyor rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Conveyor ; - rdfs:comment "RoleClass" ; - rdfs:label "RollConveyor" . - - -### http://www.ipr.kit.edu/aml_importer#Rollerbed -aml_importer:Rollerbed rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Transport ; - rdfs:comment "RoleClass" ; - rdfs:label "Rollerbed" . - - -### http://www.ipr.kit.edu/aml_importer#Router -aml_importer:Router rdf:type owl:Class ; - rdfs:subClassOf aml_importer:NetworkDevice ; - rdfs:comment "RoleClass" ; - rdfs:label "Router" . - - -### http://www.ipr.kit.edu/aml_importer#SCADASystem -aml_importer:SCADASystem rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "SCADASystem" . - - -### http://www.ipr.kit.edu/aml_importer#SCADAZone -aml_importer:SCADAZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:OTZone ; - rdfs:comment "RoleClass" ; - rdfs:label "SCADAZone" . - - -### http://www.ipr.kit.edu/aml_importer#SIS -aml_importer:SIS rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "SIS" . - - -### http://www.ipr.kit.edu/aml_importer#SafetyZone -aml_importer:SafetyZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:OTZone ; - rdfs:comment "RoleClass" ; - rdfs:label "SafetyZone" . - - -### http://www.ipr.kit.edu/aml_importer#SecurityDevice -aml_importer:SecurityDevice rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "SecurityDevice" . - - -### http://www.ipr.kit.edu/aml_importer#Sensor -aml_importer:Sensor rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ControlEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Sensor" . - - -### http://www.ipr.kit.edu/aml_importer#SequencingBehaviourLogicInterface -aml_importer:SequencingBehaviourLogicInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "SequencingBehaviourLogicInterface" . - - -### http://www.ipr.kit.edu/aml_importer#SequencingLogicInterface -aml_importer:SequencingLogicInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:LogicInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "SequencingLogicInterface" . - - -### http://www.ipr.kit.edu/aml_importer#Server -aml_importer:Server rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "Server" . - - -### http://www.ipr.kit.edu/aml_importer#SignalInterface -aml_importer:SignalInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Communication ; - rdfs:comment "InterfaceClass" ; - rdfs:label "SignalInterface" . - - -### http://www.ipr.kit.edu/aml_importer#Site -aml_importer:Site rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "Site" . - - -### http://www.ipr.kit.edu/aml_importer#StaticObject -aml_importer:StaticObject rdf:type owl:Class ; - rdfs:subClassOf aml_importer:DiscManufacturingEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "StaticObject" . - - -### http://www.ipr.kit.edu/aml_importer#StationaryTool -aml_importer:StationaryTool rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Tool ; - rdfs:comment "RoleClass" ; - rdfs:label "StationaryTool" . - - -### http://www.ipr.kit.edu/aml_importer#Storage -aml_importer:Storage rdf:type owl:Class ; - rdfs:subClassOf aml_importer:DiscManufacturingEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Storage" . - - -### http://www.ipr.kit.edu/aml_importer#StorageUnit -aml_importer:StorageUnit rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "StorageUnit" . - - -### http://www.ipr.kit.edu/aml_importer#StorageZone -aml_importer:StorageZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "StorageZone" . - - -### http://www.ipr.kit.edu/aml_importer#Structure -aml_importer:Structure rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "Structure" . - - -### http://www.ipr.kit.edu/aml_importer#Switch -aml_importer:Switch rdf:type owl:Class ; - rdfs:subClassOf aml_importer:NetworkDevice ; - rdfs:comment "RoleClass" ; - rdfs:label "Switch" . - - -### http://www.ipr.kit.edu/aml_importer#Tool -aml_importer:Tool rdf:type owl:Class ; - rdfs:subClassOf aml_importer:DiscManufacturingEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Tool" . - - -### http://www.ipr.kit.edu/aml_importer#Transport -aml_importer:Transport rdf:type owl:Class ; - rdfs:subClassOf aml_importer:DiscManufacturingEquipment ; - rdfs:comment "RoleClass" ; - rdfs:label "Transport" . - - -### http://www.ipr.kit.edu/aml_importer#Transposer -aml_importer:Transposer rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Transport ; - rdfs:comment "RoleClass" ; - rdfs:label "Transposer" . - - -### http://www.ipr.kit.edu/aml_importer#Turntable -aml_importer:Turntable rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Transport ; - rdfs:comment "RoleClass" ; - rdfs:label "Turntable" . - - -### http://www.ipr.kit.edu/aml_importer#Unit -aml_importer:Unit rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "Unit" . - - -### http://www.ipr.kit.edu/aml_importer#Unloader -aml_importer:Unloader rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Storage ; - rdfs:comment "RoleClass" ; - rdfs:label "Unloader" . - - -### http://www.ipr.kit.edu/aml_importer#VariableInterface -aml_importer:VariableInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:PLCopenXMLInterface ; - rdfs:comment "InterfaceClass" ; - rdfs:label "VariableInterface" . - - -### http://www.ipr.kit.edu/aml_importer#VariableList -aml_importer:VariableList rdf:type owl:Class ; - rdfs:subClassOf aml_importer:AutomationMLBaseRole ; - rdfs:comment "RoleClass" ; - rdfs:label "VariableList" . - - -### http://www.ipr.kit.edu/aml_importer#WarningEquipment -aml_importer:WarningEquipment rdf:type owl:Class ; - rdfs:subClassOf aml_importer:HMI ; - rdfs:comment "RoleClass" ; - rdfs:label "WarningEquipment" . - - -### http://www.ipr.kit.edu/aml_importer#Webserver -aml_importer:Webserver rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "Webserver" . - - -### http://www.ipr.kit.edu/aml_importer#Wire -aml_importer:Wire rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Wire" . - - -### http://www.ipr.kit.edu/aml_importer#Wireless -aml_importer:Wireless rdf:type owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Wireless" . - - -### http://www.ipr.kit.edu/aml_importer#WirelessConnection -aml_importer:WirelessConnection rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "WirelessConnection" . - - -### http://www.ipr.kit.edu/aml_importer#WirelessHARTGateway -aml_importer:WirelessHARTGateway rdf:type owl:Class ; - rdfs:subClassOf aml_importer:NetworkDevice ; - rdfs:comment "RoleClass" ; - rdfs:label "WirelessHARTGateway" . - - -### http://www.ipr.kit.edu/aml_importer#WirelessHARTSensor -aml_importer:WirelessHARTSensor rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Host ; - rdfs:comment "RoleClass" ; - rdfs:label "WirelessHARTSensor" . - - -### http://www.ipr.kit.edu/aml_importer#WirelessInterface -aml_importer:WirelessInterface rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Wireless ; - rdfs:comment "InterfaceClass" ; - rdfs:label "WirelessInterface" . - - -### http://www.ipr.kit.edu/aml_importer#WirelessPlug -aml_importer:WirelessPlug rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Wireless ; - rdfs:comment "InterfaceClass" ; - rdfs:label "WirelessPlug" . - - -### http://www.ipr.kit.edu/aml_importer#WirelessZone -aml_importer:WirelessZone rdf:type owl:Class ; - rdfs:subClassOf aml_importer:Zone ; - rdfs:comment "RoleClass" ; - rdfs:label "WirelessZone" . - - -### http://www.ipr.kit.edu/aml_importer#WorkCell -aml_importer:WorkCell rdf:type owl:Class ; - rdfs:subClassOf aml_importer:ResourceStructure ; - rdfs:comment "RoleClass" ; - rdfs:label "WorkCell" . - - -### http://www.ipr.kit.edu/aml_importer#Zone -aml_importer:Zone rdf:type owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Zone" . - - -################################################################# -# Individuals -################################################################# - -### http://www.ipr.kit.edu/aml_importer#Attachment_030FG_111_030WZD111 -aml_importer:Attachment_030FG_111_030WZD111 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_030WZD111_0D5E6978-CEB2-4985-BB95-31C01B2D409B ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_030FG_111_A239FC93-5FA9-48B5-9AEC-66B1AD6974A3 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030FG_111_030WZD111" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_030RB_100_KR240R2700prime__030GES190 -aml_importer:Attachment_030RB_100_KR240R2700prime__030GES190 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_030GES190_47E90BE3-E2EB-46FD-AE00-CDD36656F0BF ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_030RB_100_KR240R2700prime__D0EC1411-8E0B-4A32-8AE3-6E309ABA9A80 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030RB_100_KR240R2700prime__030GES190" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_030RB_100_KR240R2700prime__030WZD180 -aml_importer:Attachment_030RB_100_KR240R2700prime__030WZD180 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_030WZD180_B71117BC-7C64-4EEA-B117-163BBF982EC8 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_030RB_100_KR240R2700prime__8BC86E1D-3F3D-4855-AAC7-BF9A8EA79675 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030RB_100_KR240R2700prime__030WZD180" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_030RB_200_KR240R2700prime__030GES290 -aml_importer:Attachment_030RB_200_KR240R2700prime__030GES290 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_030GES290_97188306-9230-47AC-BA4B-87E8DD3FF857 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_030RB_200_KR240R2700prime__DD6B4EE3-6C4C-417B-B452-2E1DC1544709 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030RB_200_KR240R2700prime__030GES290" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_030RB_300_KR240R2700prime__030GES390 -aml_importer:Attachment_030RB_300_KR240R2700prime__030GES390 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_030GES390_633BC548-00F4-4CE1-B825-BD135EF6074D ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_030RB_300_KR240R2700prime__7B0A454B-4206-4AEC-985D-7F6E9F5E4904 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030RB_300_KR240R2700prime__030GES390" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_030SWZ121_030WZD121 -aml_importer:Attachment_030SWZ121_030WZD121 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_030WZD121_50F00CDD-9E68-495C-A49C-09DF1F6B7B22 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_030SWZ121_D5424A35-758E-4C2F-AF2A-D59E562378E8 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030SWZ121_030WZD121" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_KRxxxRultra.6.1_010GRF141 -aml_importer:Attachment_KRxxxRultra.6.1_010GRF141 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_010GRF141_757D522F-C309-4297-AA3B-96641AE6DBA5 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_KRxxxRultra_6_1_E0F4BB71-0B46-47F7-8EAB-DA15C1B77344 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_010GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_KRxxxRultra.6.1_020GRF141 -aml_importer:Attachment_KRxxxRultra.6.1_020GRF141 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_020GRF141_A18D9CBE-9454-4CA9-8D2E-3DCD3B9E7D44 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_KRxxxRultra_6_1_4CF14346-938B-4150-9F7C-E47B7DCF7C6E ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_020GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_KRxxxRultra.6.1_030DS_251 -aml_importer:Attachment_KRxxxRultra.6.1_030DS_251 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_030DS_251_1CF069D2-8A94-4875-858E-495058E1D1DD ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_KRxxxRultra_6_1_13C77DE5-A517-4144-A4B8-ABA4916BE7D1 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_030DS_251" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_KRxxxRultra.6.1_030GRF341 -aml_importer:Attachment_KRxxxRultra.6.1_030GRF341 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_030GRF341_6A8D3042-7201-49F5-AB08-41CF66605261 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_KRxxxRultra_6_1_8A4B1B26-AB6C-4B40-B204-AA82A5307F0D ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_030GRF341" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_KRxxxRultra.6.1_030WZD180 -aml_importer:Attachment_KRxxxRultra.6.1_030WZD180 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_030WZD180_82862925-A9D8-4528-B513-67818494A71A ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_KRxxxRultra_6_1_827BAC0D-8EF4-4E04-819E-0442BA477256 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_030WZD180" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_KRxxxRultra.6.1_saferobotparts-Tool1.1 -aml_importer:Attachment_KRxxxRultra.6.1_saferobotparts-Tool1.1 rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_saferobotparts_Tool1_1_4211FF36-1735-492B-A9B6-9827AB70D367 , - aml_importer:ei_Attachment_saferobotparts_Tool1_1_5EC2AB6D-9DDD-4DBB-88AF-424D6D5DFFCA , - aml_importer:ei_Attachment_saferobotparts_Tool1_1_859C2934-4B56-462E-A182-2D7E076ABCE7 , - aml_importer:ei_Attachment_saferobotparts_Tool1_1_D92A35BF-273E-4B89-A2D0-4D2ED14E6F53 , - aml_importer:ei_Attachment_saferobotparts_Tool1_1_DC9E93B8-98CF-4A22-927B-ED9753DEB48A ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_KRxxxRultra_6_1_2BFE0407-0969-4A29-BD06-A8BAC2C28D62 , - aml_importer:ei_Attachment_KRxxxRultra_6_1_4CF9835D-E98F-47F9-8C09-9FB44C70405A , - aml_importer:ei_Attachment_KRxxxRultra_6_1_72B783F2-A060-496E-812B-BF685CDDB765 , - aml_importer:ei_Attachment_KRxxxRultra_6_1_8741F297-D5B0-4F95-8B64-3D25989CCF92 , - aml_importer:ei_Attachment_KRxxxRultra_6_1_96B9C12E-D951-4BCF-908B-077CA5F64A77 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_Schlitten_010RB_100_KR240R2700prime_ -aml_importer:Attachment_Schlitten_010RB_100_KR240R2700prime_ rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_010RB_100_KR240R2700prime__F70A37BF-82A5-4540-BDEB-3B9BB23BE8BC ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_Schlitten_FC5D79A1-AC60-478E-BCBA-D411F5E20323 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_Schlitten_010RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#Attachment_Schlitten_020RB_100_KR240R2700prime_ -aml_importer:Attachment_Schlitten_020RB_100_KR240R2700prime_ rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Attachment_020RB_100_KR240R2700prime__9E3A7778-5111-4959-8BE3-A2B2D70E4358 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Attachment_Schlitten_1EA0D29E-7FB7-43A9-BB88-FD03CDDF9B42 ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_Schlitten_020RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_010GRF141_757D522F-C309-4297-AA3B-96641AE6DBA5 -aml_importer:ei_Attachment_010GRF141_757D522F-C309-4297-AA3B-96641AE6DBA5 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_010GRF141_A2136160067_SFK-HAB-010_E437BD91-8747-4672-8EC5-4729DB803E0A -aml_importer:ei_Attachment_010GRF141_A2136160067_SFK-HAB-010_E437BD91-8747-4672-8EC5-4729DB803E0A rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010GRF141_A2136160067_SFK-HAB-010" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_010RB_100_BA_010R1_010_W_DD8D2821-6C61-4D15-B3F8-EBB55C14773D -aml_importer:ei_Attachment_010RB_100_BA_010R1_010_W_DD8D2821-6C61-4D15-B3F8-EBB55C14773D rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010RB_100_BA_010R1_010_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_010RB_100_BH_010R1_010_W_F9BFE6F1-2169-4B07-B210-1C0EF6BCC960 -aml_importer:ei_Attachment_010RB_100_BH_010R1_010_W_F9BFE6F1-2169-4B07-B210-1C0EF6BCC960 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010RB_100_BH_010R1_010_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_010RB_100_KR240R2700prime__F70A37BF-82A5-4540-BDEB-3B9BB23BE8BC -aml_importer:ei_Attachment_010RB_100_KR240R2700prime__F70A37BF-82A5-4540-BDEB-3B9BB23BE8BC rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_020GRF141_A18D9CBE-9454-4CA9-8D2E-3DCD3B9E7D44 -aml_importer:ei_Attachment_020GRF141_A18D9CBE-9454-4CA9-8D2E-3DCD3B9E7D44 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_020GRF141_A2136160067_SFK_HAB_010_91A891CA-B49D-4A08-A06D-C4828DE4079E -aml_importer:ei_Attachment_020GRF141_A2136160067_SFK_HAB_010_91A891CA-B49D-4A08-A06D-C4828DE4079E rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020GRF141_A2136160067_SFK_HAB_010" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_020RB_100_BA_020R1_030_W_FD80D8AF-19F0-44A7-8D4D-66E43BD206FA -aml_importer:ei_Attachment_020RB_100_BA_020R1_030_W_FD80D8AF-19F0-44A7-8D4D-66E43BD206FA rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020RB_100_BA_020R1_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_020RB_100_BH_020R1_010_W_72D81248-6CC6-4A1C-BDAB-AB7EC677819F -aml_importer:ei_Attachment_020RB_100_BH_020R1_010_W_72D81248-6CC6-4A1C-BDAB-AB7EC677819F rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020RB_100_BH_020R1_010_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_020RB_100_KR240R2700prime__9E3A7778-5111-4959-8BE3-A2B2D70E4358 -aml_importer:ei_Attachment_020RB_100_KR240R2700prime__9E3A7778-5111-4959-8BE3-A2B2D70E4358 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030DS_251_1CF069D2-8A94-4875-858E-495058E1D1DD -aml_importer:ei_Attachment_030DS_251_1CF069D2-8A94-4875-858E-495058E1D1DD rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030DS_251" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030FG_111_A239FC93-5FA9-48B5-9AEC-66B1AD6974A3 -aml_importer:ei_Attachment_030FG_111_A239FC93-5FA9-48B5-9AEC-66B1AD6974A3 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030FG_111" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030FG_111_BHF_79059D91-AB04-4BB6-BA6E-AD38A33A9510 -aml_importer:ei_Attachment_030FG_111_BHF_79059D91-AB04-4BB6-BA6E-AD38A33A9510 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030FG_111_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030GES190_47E90BE3-E2EB-46FD-AE00-CDD36656F0BF -aml_importer:ei_Attachment_030GES190_47E90BE3-E2EB-46FD-AE00-CDD36656F0BF rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GES190" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030GES290_97188306-9230-47AC-BA4B-87E8DD3FF857 -aml_importer:ei_Attachment_030GES290_97188306-9230-47AC-BA4B-87E8DD3FF857 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GES290" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030GES390_633BC548-00F4-4CE1-B825-BD135EF6074D -aml_importer:ei_Attachment_030GES390_633BC548-00F4-4CE1-B825-BD135EF6074D rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GES390" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030GRF341_6A8D3042-7201-49F5-AB08-41CF66605261 -aml_importer:ei_Attachment_030GRF341_6A8D3042-7201-49F5-AB08-41CF66605261 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GRF341" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030GRF341_A2136160067_SFK-HAB-010_8C391539-FF6A-46E7-9A60-7677B335D3C9 -aml_importer:ei_Attachment_030GRF341_A2136160067_SFK-HAB-010_8C391539-FF6A-46E7-9A60-7677B335D3C9 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GRF341_A2136160067_SFK-HAB-010" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_FG_030R1_030_W_5D446CD1-9A21-497F-A219-1052F112BBC9 -aml_importer:ei_Attachment_030RB_100_FG_030R1_030_W_5D446CD1-9A21-497F-A219-1052F112BBC9 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_FG_030R1_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_KAPPENFRAESEN_036534DF-B746-49E4-A2A6-673718C355A4 -aml_importer:ei_Attachment_030RB_100_KAPPENFRAESEN_036534DF-B746-49E4-A2A6-673718C355A4 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_KAPPENFRAESEN" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_KAPPENTAUSCH_0_1760FA05-8795-43B9-A6A7-86AAFEA2AA71 -aml_importer:ei_Attachment_030RB_100_KAPPENTAUSCH_0_1760FA05-8795-43B9-A6A7-86AAFEA2AA71 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_KAPPENTAUSCH_0" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_KR240R2700prime__8BC86E1D-3F3D-4855-AAC7-BF9A8EA79675 -aml_importer:ei_Attachment_030RB_100_KR240R2700prime__8BC86E1D-3F3D-4855-AAC7-BF9A8EA79675 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_KR240R2700prime__D0EC1411-8E0B-4A32-8AE3-6E309ABA9A80 -aml_importer:ei_Attachment_030RB_100_KR240R2700prime__D0EC1411-8E0B-4A32-8AE3-6E309ABA9A80 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_SWP_030R1_030_W_5898418B-3444-4BA6-92A7-F86FFB3BA9EC -aml_importer:ei_Attachment_030RB_100_SWP_030R1_030_W_5898418B-3444-4BA6-92A7-F86FFB3BA9EC rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_SWP_030R1_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_tool_1_couple_sim_E0BC059A-0904-4C70-8626-146F0D882EE7 -aml_importer:ei_Attachment_030RB_100_tool_1_couple_sim_E0BC059A-0904-4C70-8626-146F0D882EE7 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_tool_1_couple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_tool_1_decouple_sim_8D1439C3-24E4-4AC8-87C9-0272D92787B3 -aml_importer:ei_Attachment_030RB_100_tool_1_decouple_sim_8D1439C3-24E4-4AC8-87C9-0272D92787B3 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_tool_1_decouple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_tool_2_couple_sim_DA580463-4245-43C4-AAC0-D9C908E50C4A -aml_importer:ei_Attachment_030RB_100_tool_2_couple_sim_DA580463-4245-43C4-AAC0-D9C908E50C4A rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_tool_2_couple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_100_tool_2_decouple_sim_A445C2AB-E18E-49C0-9166-C979457D8D18 -aml_importer:ei_Attachment_030RB_100_tool_2_decouple_sim_A445C2AB-E18E-49C0-9166-C979457D8D18 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_tool_2_decouple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_200_KR240R2700prime__DD6B4EE3-6C4C-417B-B452-2E1DC1544709 -aml_importer:ei_Attachment_030RB_200_KR240R2700prime__DD6B4EE3-6C4C-417B-B452-2E1DC1544709 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_200_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_300_BA_030R3_040_W_CF88925D-65B7-41FE-BF10-236CB0C74AF2 -aml_importer:ei_Attachment_030RB_300_BA_030R3_040_W_CF88925D-65B7-41FE-BF10-236CB0C74AF2 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_300_BA_030R3_040_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_300_BH_030R3_030_W_C55BCE74-84C9-488D-9989-BCA6C2DC6F11 -aml_importer:ei_Attachment_030RB_300_BH_030R3_030_W_C55BCE74-84C9-488D-9989-BCA6C2DC6F11 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_300_BH_030R3_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030RB_300_KR240R2700prime__7B0A454B-4206-4AEC-985D-7F6E9F5E4904 -aml_importer:ei_Attachment_030RB_300_KR240R2700prime__7B0A454B-4206-4AEC-985D-7F6E9F5E4904 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_300_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030SWZ121_BHF_263FA9E4-E35A-4BAB-AC88-CAF74219E3F8 -aml_importer:ei_Attachment_030SWZ121_BHF_263FA9E4-E35A-4BAB-AC88-CAF74219E3F8 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030SWZ121_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030SWZ121_D5424A35-758E-4C2F-AF2A-D59E562378E8 -aml_importer:ei_Attachment_030SWZ121_D5424A35-758E-4C2F-AF2A-D59E562378E8 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030SWZ121" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030WZD111_0D5E6978-CEB2-4985-BB95-31C01B2D409B -aml_importer:ei_Attachment_030WZD111_0D5E6978-CEB2-4985-BB95-31C01B2D409B rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD111" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030WZD111_BHF_066212E0-98C1-4944-B03E-A5DB727A9630 -aml_importer:ei_Attachment_030WZD111_BHF_066212E0-98C1-4944-B03E-A5DB727A9630 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD111_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030WZD121_50F00CDD-9E68-495C-A49C-09DF1F6B7B22 -aml_importer:ei_Attachment_030WZD121_50F00CDD-9E68-495C-A49C-09DF1F6B7B22 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD121" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030WZD121_BHF_0EE264DF-39A6-4B00-884A-1E0ABD85A222 -aml_importer:ei_Attachment_030WZD121_BHF_0EE264DF-39A6-4B00-884A-1E0ABD85A222 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD121_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030WZD180_82862925-A9D8-4528-B513-67818494A71A -aml_importer:ei_Attachment_030WZD180_82862925-A9D8-4528-B513-67818494A71A rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD180" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_030WZD180_B71117BC-7C64-4EEA-B117-163BBF982EC8 -aml_importer:ei_Attachment_030WZD180_B71117BC-7C64-4EEA-B117-163BBF982EC8 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD180" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_A2136160067_586EE305-FD65-4CD6-BB11-46E5B713178A -aml_importer:ei_Attachment_A2136160067_586EE305-FD65-4CD6-BB11-46E5B713178A rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_A2136160067" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_A2136160067_707CBBF0-A53F-45FC-9B77-9AA06B8167A0 -aml_importer:ei_Attachment_A2136160067_707CBBF0-A53F-45FC-9B77-9AA06B8167A0 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_A2136160067" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_A2136160067_FAFD2953-C493-4F91-B269-E4ED7B1D530B -aml_importer:ei_Attachment_A2136160067_FAFD2953-C493-4F91-B269-E4ED7B1D530B rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_A2136160067" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_126F6BAD-6EDB-4D6A-BB69-928D2AAAE212 -aml_importer:ei_Attachment_Base1_126F6BAD-6EDB-4D6A-BB69-928D2AAAE212 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_30E2039C-1CF6-4646-8B6C-9B738B72FB7D -aml_importer:ei_Attachment_Base1_30E2039C-1CF6-4646-8B6C-9B738B72FB7D rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_395CD38C-0C21-4183-B681-FE4A6B0F90ED -aml_importer:ei_Attachment_Base1_395CD38C-0C21-4183-B681-FE4A6B0F90ED rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_3E50FB8D-C747-402F-9761-ADBD51745232 -aml_importer:ei_Attachment_Base1_3E50FB8D-C747-402F-9761-ADBD51745232 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_466F8DA2-1F63-41EA-9808-DBC729F54146 -aml_importer:ei_Attachment_Base1_466F8DA2-1F63-41EA-9808-DBC729F54146 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_4D47BAAE-7E23-491F-B0BD-1F2A7CABCF5B -aml_importer:ei_Attachment_Base1_4D47BAAE-7E23-491F-B0BD-1F2A7CABCF5B rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_8B5992AA-AD9F-4022-83D2-AFE89FDBA3F1 -aml_importer:ei_Attachment_Base1_8B5992AA-AD9F-4022-83D2-AFE89FDBA3F1 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_DFFFD347-BA14-4528-A395-6B5BC053FEC3 -aml_importer:ei_Attachment_Base1_DFFFD347-BA14-4528-A395-6B5BC053FEC3 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_EFC464FF-8599-4796-9B56-F961B443C71C -aml_importer:ei_Attachment_Base1_EFC464FF-8599-4796-9B56-F961B443C71C rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base1_F8739A90-E798-4779-849F-F774BB6A03B6 -aml_importer:ei_Attachment_Base1_F8739A90-E798-4779-849F-F774BB6A03B6 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Base2_24EA73C7-A304-4B52-A1D7-E29406E699C5 -aml_importer:ei_Attachment_Base2_24EA73C7-A304-4B52-A1D7-E29406E699C5 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_010GRF141_A2136160067_SFK-HAB-010_FA5D9D6D-A851-462E-AC91-9D5E453B7B18 -aml_importer:ei_Attachment_COLLADA_010GRF141_A2136160067_SFK-HAB-010_FA5D9D6D-A851-462E-AC91-9D5E453B7B18 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_010GRF141_A2136160067_SFK-HAB-010" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_010GRF141_F3D025B8-22D8-460D-ABC6-2AEAB3FD010B -aml_importer:ei_Attachment_COLLADA_010GRF141_F3D025B8-22D8-460D-ABC6-2AEAB3FD010B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_010GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_010RB_100_BA_010R1_010_W_865A3EED-EF8C-4AF3-8B34-29436ED3A9C1 -aml_importer:ei_Attachment_COLLADA_010RB_100_BA_010R1_010_W_865A3EED-EF8C-4AF3-8B34-29436ED3A9C1 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct" ; - aml_importer:hasTarget "./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_010RB_100_BA_010R1_010_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_010RB_100_KR240R2700prime__CE0465E3-A2EA-42E2-8086-A53E69AA7988 -aml_importer:ei_Attachment_COLLADA_010RB_100_KR240R2700prime__CE0465E3-A2EA-42E2-8086-A53E69AA7988 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schlitten_Product.dae#Schlitten" ; - aml_importer:hasTarget "./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_010RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_020GRF141_24903B78-3EAC-4666-9C3D-46C0E34F4264 -aml_importer:ei_Attachment_COLLADA_020GRF141_24903B78-3EAC-4666-9C3D-46C0E34F4264 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_020GRF141_A2136160067_SFK-HAB-010_2F622227-2AE5-4B4B-9AAD-42D549F55200 -aml_importer:ei_Attachment_COLLADA_020GRF141_A2136160067_SFK-HAB-010_2F622227-2AE5-4B4B-9AAD-42D549F55200 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020GRF141_A2136160067_SFK-HAB-010" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_020RB_100_BA_020R1_030_W_8DC9CD04-338E-4FF9-B364-F1D6F49107C9 -aml_importer:ei_Attachment_COLLADA_020RB_100_BA_020R1_030_W_8DC9CD04-338E-4FF9-B364-F1D6F49107C9 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - aml_importer:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020RB_100_BA_020R1_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_020RB_100_BH_020R1_010_W_DC79E57B-40BE-4404-811E-A8A2CFC0E0BE -aml_importer:ei_Attachment_COLLADA_020RB_100_BH_020R1_010_W_DC79E57B-40BE-4404-811E-A8A2CFC0E0BE rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct" ; - aml_importer:hasTarget "./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020RB_100_BH_020R1_010_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_020RB_100_KR240R2700prime__85BBF595-6FC5-4013-B6F5-AB2B43CAA857 -aml_importer:ei_Attachment_COLLADA_020RB_100_KR240R2700prime__85BBF595-6FC5-4013-B6F5-AB2B43CAA857 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schlitten_1_Product.dae#Schlitten_1" ; - aml_importer:hasTarget "./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030DS_251_39FC9ECC-844B-4A96-A434-E19D8C64BBF7 -aml_importer:ei_Attachment_COLLADA_030DS_251_39FC9ECC-844B-4A96-A434-E19D8C64BBF7 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030DS_251" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030FG_111_BHF_5A2DC66B-7582-40B3-8853-E88C71B854AB -aml_importer:ei_Attachment_COLLADA_030FG_111_BHF_5A2DC66B-7582-40B3-8853-E88C71B854AB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030FG_111_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030GES190_C5DC63CF-707A-4E76-BF31-7EEA8F58EB17 -aml_importer:ei_Attachment_COLLADA_030GES190_C5DC63CF-707A-4E76-BF31-7EEA8F58EB17 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2" ; - aml_importer:hasTarget "./KR240R2700prime_2_AttachmentPoint_030GES190"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GES190" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030GES290_9EDB471F-C9CF-4883-AAE1-17479DC5775C -aml_importer:ei_Attachment_COLLADA_030GES290_9EDB471F-C9CF-4883-AAE1-17479DC5775C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3" ; - aml_importer:hasTarget "./KR240R2700prime_3_AttachmentPoint_030GES290"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GES290" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030GES390_9319CFA9-1048-470F-B1F3-6A6E67A1EB37 -aml_importer:ei_Attachment_COLLADA_030GES390_9319CFA9-1048-470F-B1F3-6A6E67A1EB37 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4" ; - aml_importer:hasTarget "./KR240R2700prime_4_AttachmentPoint_030GES390"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GES390" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030GRF341_24723857-915E-4B7C-9F83-52228D12256D -aml_importer:ei_Attachment_COLLADA_030GRF341_24723857-915E-4B7C-9F83-52228D12256D rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GRF341" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030GRF341_A2136160067_SFK-HAB-010_1A94740C-4F0E-4876-9FB6-9530F8FAB5CF -aml_importer:ei_Attachment_COLLADA_030GRF341_A2136160067_SFK-HAB-010_1A94740C-4F0E-4876-9FB6-9530F8FAB5CF rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GRF341_A2136160067_SFK-HAB-010" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030RB_100_FG_030R1_030_W_2CB795DD-500C-42F5-8C6D-A86537A6B141 -aml_importer:ei_Attachment_COLLADA_030RB_100_FG_030R1_030_W_2CB795DD-500C-42F5-8C6D-A86537A6B141 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - aml_importer:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_FG_030R1_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030RB_100_KAPPENFRAESEN_44DF7F6F-DBD2-46BC-B6AF-2C165FB00B07 -aml_importer:ei_Attachment_COLLADA_030RB_100_KAPPENFRAESEN_44DF7F6F-DBD2-46BC-B6AF-2C165FB00B07 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310" ; - aml_importer:hasTarget "./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_KAPPENFRAESEN" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030RB_100_SWP_030R1_030_W_1331E1B0-BB11-40AF-832D-8561245D922F -aml_importer:ei_Attachment_COLLADA_030RB_100_SWP_030R1_030_W_1331E1B0-BB11-40AF-832D-8561245D922F rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - aml_importer:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_SWP_030R1_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030RB_100_tool_1_couple_sim_3862C9A6-FF25-4F48-B866-CF7B9B76F465 -aml_importer:ei_Attachment_COLLADA_030RB_100_tool_1_couple_sim_3862C9A6-FF25-4F48-B866-CF7B9B76F465 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_tool_1_couple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030RB_100_tool_1_decouple_sim_5F032567-1A1B-41D8-99AC-EFDB12C13A97 -aml_importer:ei_Attachment_COLLADA_030RB_100_tool_1_decouple_sim_5F032567-1A1B-41D8-99AC-EFDB12C13A97 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_tool_1_decouple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030RB_100_tool_2_couple_sim_D23BC94E-1BF7-4B26-8E15-373E34E82619 -aml_importer:ei_Attachment_COLLADA_030RB_100_tool_2_couple_sim_D23BC94E-1BF7-4B26-8E15-373E34E82619 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_tool_2_couple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030RB_100_tool_2_decouple_sim_DC9E1031-2B40-49E4-B0FE-DC8E7D3BFE95 -aml_importer:ei_Attachment_COLLADA_030RB_100_tool_2_decouple_sim_DC9E1031-2B40-49E4-B0FE-DC8E7D3BFE95 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_tool_2_decouple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030RB_300_BH_030R3_030_W_20DA954A-FBD3-49B6-9E1A-D97A347A6DFE -aml_importer:ei_Attachment_COLLADA_030RB_300_BH_030R3_030_W_20DA954A-FBD3-49B6-9E1A-D97A347A6DFE rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - aml_importer:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_300_BH_030R3_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030SWZ121_BHF_601B6485-CF44-4919-B11B-93BC3FE21DBB -aml_importer:ei_Attachment_COLLADA_030SWZ121_BHF_601B6485-CF44-4919-B11B-93BC3FE21DBB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030SWZ121_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030WZD111_589F48BB-B346-448B-9C65-E12F58CE454A -aml_importer:ei_Attachment_COLLADA_030WZD111_589F48BB-B346-448B-9C65-E12F58CE454A rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02" ; - aml_importer:hasTarget "./JA01732_REV02_AttachmentPoint_030WZD111"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD111" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030WZD111_BHF_2487E0DE-6A8B-423A-ACF3-A98105130DDD -aml_importer:ei_Attachment_COLLADA_030WZD111_BHF_2487E0DE-6A8B-423A-ACF3-A98105130DDD rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD111_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030WZD121_8B0F1C8B-B91C-415D-BD7F-CF87520DB364 -aml_importer:ei_Attachment_COLLADA_030WZD121_8B0F1C8B-B91C-415D-BD7F-CF87520DB364 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin" ; - aml_importer:hasTarget "./F266820012936_x_zange_kin_AttachmentPoint_030WZD121"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD121" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030WZD121_BHF_97760CE4-1C13-4228-A0E5-10631A607847 -aml_importer:ei_Attachment_COLLADA_030WZD121_BHF_97760CE4-1C13-4228-A0E5-10631A607847 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD121_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030WZD180_8CA5E1BA-F7F7-456A-A423-D1346F8EB8E7 -aml_importer:ei_Attachment_COLLADA_030WZD180_8CA5E1BA-F7F7-456A-A423-D1346F8EB8E7 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2" ; - aml_importer:hasTarget "./KR240R2700prime_2_AttachmentPoint_030WZD180"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD180" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_030WZD180_9F9EFDD9-AE2A-4D9E-8C0A-525EB3F51B89 -aml_importer:ei_Attachment_COLLADA_030WZD180_9F9EFDD9-AE2A-4D9E-8C0A-525EB3F51B89 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD180" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_A2136160067_31018FA2-9918-452F-9C65-0EAF670D5D6C -aml_importer:ei_Attachment_COLLADA_A2136160067_31018FA2-9918-452F-9C65-0EAF670D5D6C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/T510198_7_Rep.dae#T510198_7" ; - aml_importer:hasTarget "./T510198_7_AttachmentPoint_A2136160067"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_A2136160067" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_A2136160067_4DB273D7-12ED-4A80-B6F5-8C8BE1E625A0 -aml_importer:ei_Attachment_COLLADA_A2136160067_4DB273D7-12ED-4A80-B6F5-8C8BE1E625A0 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/T510198_7_Rep.dae#T510198_7" ; - aml_importer:hasTarget "./T510198_7_AttachmentPoint_A2136160067_1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_A2136160067" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_A2136160067_CCE893BB-DBA0-48CB-A537-3E2074D992B1 -aml_importer:ei_Attachment_COLLADA_A2136160067_CCE893BB-DBA0-48CB-A537-3E2074D992B1 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa" ; - aml_importer:hasTarget "./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_A2136160067" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base1_19B93A9A-461C-4370-A9C5-D2EB7EE44373 -aml_importer:ei_Attachment_COLLADA_Base1_19B93A9A-461C-4370-A9C5-D2EB7EE44373 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base1_28302766-3BA0-4027-8434-94686D520E36 -aml_importer:ei_Attachment_COLLADA_Base1_28302766-3BA0-4027-8434-94686D520E36 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base1_2FE3CECB-4D96-48B3-A4E2-4681F86FFF38 -aml_importer:ei_Attachment_COLLADA_Base1_2FE3CECB-4D96-48B3-A4E2-4681F86FFF38 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02" ; - aml_importer:hasTarget "./JA01732_REV02_FrameOfInterest_Base1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base1_382D4282-542A-4B8E-888D-AA8F85A205D5 -aml_importer:ei_Attachment_COLLADA_Base1_382D4282-542A-4B8E-888D-AA8F85A205D5 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base1_8172A5D8-CB9F-4E1F-AA19-2FCF6A3E1766 -aml_importer:ei_Attachment_COLLADA_Base1_8172A5D8-CB9F-4E1F-AA19-2FCF6A3E1766 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base1_B037040B-1EA1-4EC9-9BA3-0B0C02C43FC6 -aml_importer:ei_Attachment_COLLADA_Base1_B037040B-1EA1-4EC9-9BA3-0B0C02C43FC6 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1" ; - aml_importer:hasTarget "./F19721000063199800000_001.1_FrameOfInterest_Base1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base1_BF73B23D-DC9F-4523-903A-37ED84CE103F -aml_importer:ei_Attachment_COLLADA_Base1_BF73B23D-DC9F-4523-903A-37ED84CE103F rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin" ; - aml_importer:hasTarget "./F266820012936_x_zange_kin_FrameOfInterest_Base1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base1_BFB699E0-894D-4B81-9320-EB0CBB28500B -aml_importer:ei_Attachment_COLLADA_Base1_BFB699E0-894D-4B81-9320-EB0CBB28500B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300" ; - aml_importer:hasTarget "./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base1_E8C48DD4-8B87-425B-95A3-CC385AB5FACC -aml_importer:ei_Attachment_COLLADA_Base1_E8C48DD4-8B87-425B-95A3-CC385AB5FACC rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Base2_FD397F7F-44FB-4E25-BB76-102543881756 -aml_importer:ei_Attachment_COLLADA_Base2_FD397F7F-44FB-4E25-BB76-102543881756 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_FZG0_157818DD-0FDE-4F50-AF13-24339EA93F6A -aml_importer:ei_Attachment_COLLADA_FZG0_157818DD-0FDE-4F50-AF13-24339EA93F6A rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_FZG0" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_FZG0_69314A25-6306-4E29-B36C-75FCEC09F778 -aml_importer:ei_Attachment_COLLADA_FZG0_69314A25-6306-4E29-B36C-75FCEC09F778 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_FZG0" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Fahrzeug0_360DF559-36ED-4A15-9AB9-CA8BC0280E00 -aml_importer:ei_Attachment_COLLADA_Fahrzeug0_360DF559-36ED-4A15-9AB9-CA8BC0280E00 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct" ; - aml_importer:hasTarget "./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Fahrzeug0" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Fahrzeug0_D0245516-3DDF-4338-9D11-3A2A76E3FDB7 -aml_importer:ei_Attachment_COLLADA_Fahrzeug0_D0245516-3DDF-4338-9D11-3A2A76E3FDB7 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - aml_importer:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Fahrzeug0" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_KRxxxRultra.6.1_2ED52C4B-9C55-488B-B07A-F6EF75C7D2D1 -aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_2ED52C4B-9C55-488B-B07A-F6EF75C7D2D1 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_KRxxxRultra.6.1_3C27E082-EEA7-440A-BCFE-FDBC12C3177C -aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_3C27E082-EEA7-440A-BCFE-FDBC12C3177C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1" ; - aml_importer:hasTarget "./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_KRxxxRultra.6.1_5A55ABE0-BD31-4E1F-9E07-E06618B9274A -aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_5A55ABE0-BD31-4E1F-9E07-E06618B9274A rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4" ; - aml_importer:hasTarget "./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_KRxxxRultra.6.1_6BB2D1F4-3AF8-486B-B6BD-F290485D0D7A -aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_6BB2D1F4-3AF8-486B-B6BD-F290485D0D7A rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_KRxxxRultra.6.1_AFC183EC-AC69-49F7-B1A4-3F84C7EE8E2B -aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_AFC183EC-AC69-49F7-B1A4-3F84C7EE8E2B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3" ; - aml_importer:hasTarget "./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_KRxxxRultra.6.1_B2EECEE9-623A-4B33-86AB-018EBC3873D6 -aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_B2EECEE9-623A-4B33-86AB-018EBC3873D6 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_KRxxxRultra.6.1_B5686DD3-ED41-45E2-BD34-08DCE24276FC -aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_B5686DD3-ED41-45E2-BD34-08DCE24276FC rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2" ; - aml_importer:hasTarget "./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_KRxxxRultra.6.1_C977F4BF-ED1A-428D-B4F8-48BC890ACB10 -aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_C977F4BF-ED1A-428D-B4F8-48BC890ACB10 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1" ; - aml_importer:hasTarget "./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_OKF_Dehnfuge_6231E7B7-B291-45A4-88B6-C880FB02C2E3 -aml_importer:ei_Attachment_COLLADA_OKF_Dehnfuge_6231E7B7-B291-45A4-88B6-C880FB02C2E3 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KL1500_3_Product.dae#KL1500_3" ; - aml_importer:hasTarget "./KL1500_3_FrameOfInterest_OKF_Dehnfuge"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_OKF_Dehnfuge" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_OKF_Dehnfuge_BB6DEC54-F99C-4501-9586-35B2A215FF7A -aml_importer:ei_Attachment_COLLADA_OKF_Dehnfuge_BB6DEC54-F99C-4501-9586-35B2A215FF7A rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1" ; - aml_importer:hasTarget "./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_OKF_Dehnfuge" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_OKF_Standard_1C85F2CF-41EE-4D14-B007-41D663428464 -aml_importer:ei_Attachment_COLLADA_OKF_Standard_1C85F2CF-41EE-4D14-B007-41D663428464 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1" ; - aml_importer:hasTarget "./KL1500_3.1_FrameOfInterest_OKF_Standard"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_OKF_Standard" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_OKF_Standard_9D68AEC8-E2E4-4CA3-BADA-D624279DE758 -aml_importer:ei_Attachment_COLLADA_OKF_Standard_9D68AEC8-E2E4-4CA3-BADA-D624279DE758 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KL1500_3_Product.dae#KL1500_3" ; - aml_importer:hasTarget "./KL1500_3_FrameOfInterest_OKF_Standard"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_OKF_Standard" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Roboterposition_Stellung_A_6BFD39F9-8C6E-4EF7-89A6-F0E409A3E0DA -aml_importer:ei_Attachment_COLLADA_Roboterposition_Stellung_A_6BFD39F9-8C6E-4EF7-89A6-F0E409A3E0DA rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schlitten_Product.dae#Schlitten" ; - aml_importer:hasTarget "./Schlitten_FrameOfInterest_Roboterposition_Stellung_A"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Roboterposition_Stellung_A" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Roboterposition_Stellung_A_B8E999EC-E6C7-4203-981B-45D1993E6384 -aml_importer:ei_Attachment_COLLADA_Roboterposition_Stellung_A_B8E999EC-E6C7-4203-981B-45D1993E6384 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schlitten_1_Product.dae#Schlitten_1" ; - aml_importer:hasTarget "./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Roboterposition_Stellung_A" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Schlitten_C0461D83-55DA-4498-BF09-C7662CCBE621 -aml_importer:ei_Attachment_COLLADA_Schlitten_C0461D83-55DA-4498-BF09-C7662CCBE621 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1" ; - aml_importer:hasTarget "./KR240R2700prime_1_AttachmentPoint_Schlitten"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Schlitten" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Schlitten_E643F71E-4C00-4B8C-A690-F52BC12842F0 -aml_importer:ei_Attachment_COLLADA_Schlitten_E643F71E-4C00-4B8C-A690-F52BC12842F0 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime" ; - aml_importer:hasTarget "./KR240R2700prime_AttachmentPoint_Schlitten"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Schlitten" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool1_3DD13EE2-44AB-4A45-A68F-A5A06C09EABB -aml_importer:ei_Attachment_COLLADA_Tool1_3DD13EE2-44AB-4A45-A68F-A5A06C09EABB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02" ; - aml_importer:hasTarget "./JA01732_REV02_FrameOfInterest_Tool1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool1_452A16D7-870E-436F-BE16-55F16F085814 -aml_importer:ei_Attachment_COLLADA_Tool1_452A16D7-870E-436F-BE16-55F16F085814 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool1_4BCB21AF-4184-46D9-BD5E-5719AB80C0FD -aml_importer:ei_Attachment_COLLADA_Tool1_4BCB21AF-4184-46D9-BD5E-5719AB80C0FD rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1" ; - aml_importer:hasTarget "./F19721000063199800000_001.1_FrameOfInterest_Tool1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool1_6EA88E61-6169-476D-A425-038DD482BA50 -aml_importer:ei_Attachment_COLLADA_Tool1_6EA88E61-6169-476D-A425-038DD482BA50 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool1_9FB385A5-79D9-4AF6-8AD5-9A6C2C766A90 -aml_importer:ei_Attachment_COLLADA_Tool1_9FB385A5-79D9-4AF6-8AD5-9A6C2C766A90 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool1_C48383DD-D80D-41A9-BC36-3DCA3D842219 -aml_importer:ei_Attachment_COLLADA_Tool1_C48383DD-D80D-41A9-BC36-3DCA3D842219 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300" ; - aml_importer:hasTarget "./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool1_EEE9B392-8D3C-4478-A063-79DCB7E2301F -aml_importer:ei_Attachment_COLLADA_Tool1_EEE9B392-8D3C-4478-A063-79DCB7E2301F rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin" ; - aml_importer:hasTarget "./F266820012936_x_zange_kin_FrameOfInterest_Tool1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool2_44A353F1-8BE9-4797-AE4A-7AD13EFF28F9 -aml_importer:ei_Attachment_COLLADA_Tool2_44A353F1-8BE9-4797-AE4A-7AD13EFF28F9 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool2_52C20A3E-F75C-4F73-8886-58F133554053 -aml_importer:ei_Attachment_COLLADA_Tool2_52C20A3E-F75C-4F73-8886-58F133554053 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - aml_importer:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Tool2_655093C7-7BDB-4F13-8FC7-E89092B8E9C0 -aml_importer:ei_Attachment_COLLADA_Tool2_655093C7-7BDB-4F13-8FC7-E89092B8E9C0 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_ToolMountPoint_06A4CCB6-5171-4A64-B5A8-2C0B12D6A2B1 -aml_importer:ei_Attachment_COLLADA_ToolMountPoint_06A4CCB6-5171-4A64-B5A8-2C0B12D6A2B1 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1" ; - aml_importer:hasTarget "./Tuer_re.1_FrameOfInterest_ToolMountPoint"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_ToolMountPoint_1E24DD3E-F122-4580-9B81-9AC02620DEEE -aml_importer:ei_Attachment_COLLADA_ToolMountPoint_1E24DD3E-F122-4580-9B81-9AC02620DEEE rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_ToolMountPoint_985645AC-ED86-46F0-846E-1A7D4E8CFCB5 -aml_importer:ei_Attachment_COLLADA_ToolMountPoint_985645AC-ED86-46F0-846E-1A7D4E8CFCB5 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_ToolMountPoint_AAA676AB-FE9F-4559-82E8-DDF7244E9661 -aml_importer:ei_Attachment_COLLADA_ToolMountPoint_AAA676AB-FE9F-4559-82E8-DDF7244E9661 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_ToolMountPoint_AB206F11-B326-46BD-8B6D-0354EAEE9069 -aml_importer:ei_Attachment_COLLADA_ToolMountPoint_AB206F11-B326-46BD-8B6D-0354EAEE9069 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_ToolMountPoint_DD6BF46F-DA09-4C35-BAE1-BB1EF0790387 -aml_importer:ei_Attachment_COLLADA_ToolMountPoint_DD6BF46F-DA09-4C35-BAE1-BB1EF0790387 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Zentrierstift1_368AC9B3-3DA1-49F1-AC27-B3FDAB62234C -aml_importer:ei_Attachment_COLLADA_Zentrierstift1_368AC9B3-3DA1-49F1-AC27-B3FDAB62234C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Zentrierstift1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_Zentrierstift1_54344EDF-F3C3-4B90-A2EF-96E3BC92A342 -aml_importer:ei_Attachment_COLLADA_Zentrierstift1_54344EDF-F3C3-4B90-A2EF-96E3BC92A342 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - aml_importer:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Zentrierstift1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_rot_fraes_horizontal2_C22C35F3-FD61-4CA2-B420-B8383C863507 -aml_importer:ei_Attachment_COLLADA_rot_fraes_horizontal2_C22C35F3-FD61-4CA2-B420-B8383C863507 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal" ; - aml_importer:hasTarget "./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_rot_fraes_horizontal2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_saferobotparts-Tool1.1_1A3598C7-38F2-421D-89F5-2C4B5AEB6A3C -aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_1A3598C7-38F2-421D-89F5-2C4B5AEB6A3C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_saferobotparts-Tool1.1_539FEDEE-1804-41A1-A512-7CA535BB99C3 -aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_539FEDEE-1804-41A1-A512-7CA535BB99C3 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_saferobotparts-Tool1.1_97FE712D-73F0-4ED5-BF25-582430D8045C -aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_97FE712D-73F0-4ED5-BF25-582430D8045C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_saferobotparts-Tool1.1_A19D63AA-D0B0-459B-B1FB-1266C75C9DCA -aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_A19D63AA-D0B0-459B-B1FB-1266C75C9DCA rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_COLLADA_saferobotparts-Tool1.1_DC9884DE-BD71-41D8-88D3-8B7FBB367265 -aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_DC9884DE-BD71-41D8-88D3-8B7FBB367265 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4" ; - aml_importer:hasTarget "./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Design1_18D10496-78D6-4637-8AF5-590B4DB00E94 -aml_importer:ei_Attachment_Design1_18D10496-78D6-4637-8AF5-590B4DB00E94 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Design1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Design1_2507C6B5-758F-4EF6-A3B9-E703DCB16513 -aml_importer:ei_Attachment_Design1_2507C6B5-758F-4EF6-A3B9-E703DCB16513 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Design1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_FZG0_BCF6D05F-A0D3-4EA6-B9B6-5091CB038677 -aml_importer:ei_Attachment_FZG0_BCF6D05F-A0D3-4EA6-B9B6-5091CB038677 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_FZG0" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_FZG0_C696797F-9B5D-4EFD-8117-EC83FFC9393E -aml_importer:ei_Attachment_FZG0_C696797F-9B5D-4EFD-8117-EC83FFC9393E rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_FZG0" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Fahrzeug0_4A1A7113-99AB-4CB7-AFDD-83D08D170D5E -aml_importer:ei_Attachment_Fahrzeug0_4A1A7113-99AB-4CB7-AFDD-83D08D170D5E rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Fahrzeug0" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Fahrzeug0_77292A8A-4066-49ED-B22F-C5421BD3C570 -aml_importer:ei_Attachment_Fahrzeug0_77292A8A-4066-49ED-B22F-C5421BD3C570 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Fahrzeug0" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_13C77DE5-A517-4144-A4B8-ABA4916BE7D1 -aml_importer:ei_Attachment_KRxxxRultra_6_1_13C77DE5-A517-4144-A4B8-ABA4916BE7D1 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_2BFE0407-0969-4A29-BD06-A8BAC2C28D62 -aml_importer:ei_Attachment_KRxxxRultra_6_1_2BFE0407-0969-4A29-BD06-A8BAC2C28D62 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_4CF14346-938B-4150-9F7C-E47B7DCF7C6E -aml_importer:ei_Attachment_KRxxxRultra_6_1_4CF14346-938B-4150-9F7C-E47B7DCF7C6E rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_4CF9835D-E98F-47F9-8C09-9FB44C70405A -aml_importer:ei_Attachment_KRxxxRultra_6_1_4CF9835D-E98F-47F9-8C09-9FB44C70405A rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_72B783F2-A060-496E-812B-BF685CDDB765 -aml_importer:ei_Attachment_KRxxxRultra_6_1_72B783F2-A060-496E-812B-BF685CDDB765 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_827BAC0D-8EF4-4E04-819E-0442BA477256 -aml_importer:ei_Attachment_KRxxxRultra_6_1_827BAC0D-8EF4-4E04-819E-0442BA477256 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_8741F297-D5B0-4F95-8B64-3D25989CCF92 -aml_importer:ei_Attachment_KRxxxRultra_6_1_8741F297-D5B0-4F95-8B64-3D25989CCF92 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_8A4B1B26-AB6C-4B40-B204-AA82A5307F0D -aml_importer:ei_Attachment_KRxxxRultra_6_1_8A4B1B26-AB6C-4B40-B204-AA82A5307F0D rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_96B9C12E-D951-4BCF-908B-077CA5F64A77 -aml_importer:ei_Attachment_KRxxxRultra_6_1_96B9C12E-D951-4BCF-908B-077CA5F64A77 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_KRxxxRultra_6_1_E0F4BB71-0B46-47F7-8EAB-DA15C1B77344 -aml_importer:ei_Attachment_KRxxxRultra_6_1_E0F4BB71-0B46-47F7-8EAB-DA15C1B77344 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_OKF_Dehnfuge_24B3773A-0C05-4DA0-8F9D-05B0E1A968DF -aml_importer:ei_Attachment_OKF_Dehnfuge_24B3773A-0C05-4DA0-8F9D-05B0E1A968DF rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_OKF_Dehnfuge" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_OKF_Dehnfuge_3C9C7109-3861-4AD2-BD00-0649697BD2B3 -aml_importer:ei_Attachment_OKF_Dehnfuge_3C9C7109-3861-4AD2-BD00-0649697BD2B3 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_OKF_Dehnfuge" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_OKF_Standard_17077B0A-E676-4271-9388-E3BF7C6044CA -aml_importer:ei_Attachment_OKF_Standard_17077B0A-E676-4271-9388-E3BF7C6044CA rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_OKF_Standard" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_OKF_Standard_F72D600B-0F39-45E2-A217-43F7FA85DEC0 -aml_importer:ei_Attachment_OKF_Standard_F72D600B-0F39-45E2-A217-43F7FA85DEC0 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_OKF_Standard" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Roboterposition_Stellung_A_3064499C-E3E0-4D19-BFB6-52579034DA24 -aml_importer:ei_Attachment_Roboterposition_Stellung_A_3064499C-E3E0-4D19-BFB6-52579034DA24 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Roboterposition_Stellung_A" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Roboterposition_Stellung_A_A0791535-CCB3-459B-90EA-86ED45CEC7F8 -aml_importer:ei_Attachment_Roboterposition_Stellung_A_A0791535-CCB3-459B-90EA-86ED45CEC7F8 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Roboterposition_Stellung_A" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Schlitten_1EA0D29E-7FB7-43A9-BB88-FD03CDDF9B42 -aml_importer:ei_Attachment_Schlitten_1EA0D29E-7FB7-43A9-BB88-FD03CDDF9B42 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Schlitten" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Schlitten_FC5D79A1-AC60-478E-BCBA-D411F5E20323 -aml_importer:ei_Attachment_Schlitten_FC5D79A1-AC60-478E-BCBA-D411F5E20323 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Schlitten" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool1_048F2A98-7E48-42BC-A8AA-2C5900776DD8 -aml_importer:ei_Attachment_Tool1_048F2A98-7E48-42BC-A8AA-2C5900776DD8 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool1_0F420D64-D074-49B3-96C2-6DD195919A40 -aml_importer:ei_Attachment_Tool1_0F420D64-D074-49B3-96C2-6DD195919A40 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool1_12A94D47-2AAA-4753-A0DB-03E6CA5E80AD -aml_importer:ei_Attachment_Tool1_12A94D47-2AAA-4753-A0DB-03E6CA5E80AD rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool1_5430BF93-D571-414C-A5BF-FBA748F8BCA1 -aml_importer:ei_Attachment_Tool1_5430BF93-D571-414C-A5BF-FBA748F8BCA1 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool1_646D525A-0DE4-45B0-933E-EFF9455FAAE2 -aml_importer:ei_Attachment_Tool1_646D525A-0DE4-45B0-933E-EFF9455FAAE2 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool1_70506433-100A-49AF-8D7E-0C07DAA4A8CD -aml_importer:ei_Attachment_Tool1_70506433-100A-49AF-8D7E-0C07DAA4A8CD rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool1_79B3FED3-C436-4745-8468-5D0654E01CC3 -aml_importer:ei_Attachment_Tool1_79B3FED3-C436-4745-8468-5D0654E01CC3 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool1_DFF80166-206E-4E3F-B82B-8198DD9DBD56 -aml_importer:ei_Attachment_Tool1_DFF80166-206E-4E3F-B82B-8198DD9DBD56 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool1_E1C085CF-7830-426E-B52A-D51356DA3EA1 -aml_importer:ei_Attachment_Tool1_E1C085CF-7830-426E-B52A-D51356DA3EA1 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool2_2D787351-E036-430E-8080-D7F2BABFCBCB -aml_importer:ei_Attachment_Tool2_2D787351-E036-430E-8080-D7F2BABFCBCB rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool2_C16118FE-A563-45BB-8398-B75499D64F6E -aml_importer:ei_Attachment_Tool2_C16118FE-A563-45BB-8398-B75499D64F6E rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool2_D32F8756-B290-460E-A668-74370A2D9F9D -aml_importer:ei_Attachment_Tool2_D32F8756-B290-460E-A668-74370A2D9F9D rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool2_E2758AB0-3CB2-4730-BD76-A584A0D73D79 -aml_importer:ei_Attachment_Tool2_E2758AB0-3CB2-4730-BD76-A584A0D73D79 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Tool3_374287F0-9E8B-4537-9A9E-3731543653DB -aml_importer:ei_Attachment_Tool3_374287F0-9E8B-4537-9A9E-3731543653DB rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_ToolMountPoint_0CB06EF6-7AF0-47C8-A867-415241BC9748 -aml_importer:ei_Attachment_ToolMountPoint_0CB06EF6-7AF0-47C8-A867-415241BC9748 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_ToolMountPoint_13C44878-2FB3-4BAA-BCBE-994C3E02CCA1 -aml_importer:ei_Attachment_ToolMountPoint_13C44878-2FB3-4BAA-BCBE-994C3E02CCA1 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_ToolMountPoint_86312CDD-28DE-4047-B7D9-63FF3A9946F5 -aml_importer:ei_Attachment_ToolMountPoint_86312CDD-28DE-4047-B7D9-63FF3A9946F5 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_ToolMountPoint_98E347B5-C72C-403D-8ABF-6C554CE1AF1D -aml_importer:ei_Attachment_ToolMountPoint_98E347B5-C72C-403D-8ABF-6C554CE1AF1D rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_ToolMountPoint_ABBA360A-8455-4F60-818A-CB3D094EF3F6 -aml_importer:ei_Attachment_ToolMountPoint_ABBA360A-8455-4F60-818A-CB3D094EF3F6 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_ToolMountPoint_F8DA049F-2302-4F79-8518-ADBA2E42A7CF -aml_importer:ei_Attachment_ToolMountPoint_F8DA049F-2302-4F79-8518-ADBA2E42A7CF rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Zentrierstift1_3BA752A4-2733-432C-B1DF-4B64B732FD80 -aml_importer:ei_Attachment_Zentrierstift1_3BA752A4-2733-432C-B1DF-4B64B732FD80 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Zentrierstift1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_Zentrierstift1_CD98FEF5-3C32-4645-B5CD-63B4A4776EE0 -aml_importer:ei_Attachment_Zentrierstift1_CD98FEF5-3C32-4645-B5CD-63B4A4776EE0 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Zentrierstift1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_rot_fraes_horizontal2_CF73BB31-727D-4B97-9116-F3343744B35A -aml_importer:ei_Attachment_rot_fraes_horizontal2_CF73BB31-727D-4B97-9116-F3343744B35A rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_rot_fraes_horizontal2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_saferobotparts_Tool1_1_4211FF36-1735-492B-A9B6-9827AB70D367 -aml_importer:ei_Attachment_saferobotparts_Tool1_1_4211FF36-1735-492B-A9B6-9827AB70D367 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_saferobotparts_Tool1_1_5EC2AB6D-9DDD-4DBB-88AF-424D6D5DFFCA -aml_importer:ei_Attachment_saferobotparts_Tool1_1_5EC2AB6D-9DDD-4DBB-88AF-424D6D5DFFCA rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_saferobotparts_Tool1_1_859C2934-4B56-462E-A182-2D7E076ABCE7 -aml_importer:ei_Attachment_saferobotparts_Tool1_1_859C2934-4B56-462E-A182-2D7E076ABCE7 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_saferobotparts_Tool1_1_D92A35BF-273E-4B89-A2D0-4D2ED14E6F53 -aml_importer:ei_Attachment_saferobotparts_Tool1_1_D92A35BF-273E-4B89-A2D0-4D2ED14E6F53 rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Attachment_saferobotparts_Tool1_1_DC9E93B8-98CF-4A22-927B-ED9753DEB48A -aml_importer:ei_Attachment_saferobotparts_Tool1_1_DC9E93B8-98CF-4A22-927B-ED9753DEB48A rdf:type owl:NamedIndividual , - aml_importer:AttachmentInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_BehaviourLogicInterfaceStateChart_cbd11478-d942-4201-9151-d2e30b2dc0bb -aml_importer:ei_BehaviourLogicInterfaceStateChart_cbd11478-d942-4201-9151-d2e30b2dc0bb rdf:type owl:NamedIndividual , - aml_importer:BehaviourLogicInterface ; - aml_importer:hasRefURI "file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "BehaviourLogicInterfaceStateChart" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataPlug1_9a404f47-0a3c-4ac6-a661-f24926d8101d -aml_importer:ei_DataPlug1_9a404f47-0a3c-4ac6-a661-f24926d8101d rdf:type owl:NamedIndividual , - aml_importer:DataPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataPlug1_a7bcea0f-8293-4838-870d-b1cc839f1b34 -aml_importer:ei_DataPlug1_a7bcea0f-8293-4838-870d-b1cc839f1b34 rdf:type owl:NamedIndividual , - aml_importer:DataPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataPlug1_cf26e9b9-546f-4642-993b-59d4f504f25c -aml_importer:ei_DataPlug1_cf26e9b9-546f-4642-993b-59d4f504f25c rdf:type owl:NamedIndividual , - aml_importer:DataPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataPlug1_f9ce0072-4c30-4b19-ad58-13d874db959e -aml_importer:ei_DataPlug1_f9ce0072-4c30-4b19-ad58-13d874db959e rdf:type owl:NamedIndividual , - aml_importer:DataPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataPlug2_4ef8a268-644b-423c-9777-7e8d839f5dd1 -aml_importer:ei_DataPlug2_4ef8a268-644b-423c-9777-7e8d839f5dd1 rdf:type owl:NamedIndividual , - aml_importer:DataPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataPlug2_9ac880a6-992f-4a72-93c8-697f7184b4a8 -aml_importer:ei_DataPlug2_9ac880a6-992f-4a72-93c8-697f7184b4a8 rdf:type owl:NamedIndividual , - aml_importer:DataPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataPlug2_ec75d2b6-d66e-422a-b6a4-b8fd93fc5597 -aml_importer:ei_DataPlug2_ec75d2b6-d66e-422a-b6a4-b8fd93fc5597 rdf:type owl:NamedIndividual , - aml_importer:DataPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataPlug2_f58826ef-44b9-4605-bb45-2b82cd5afb04 -aml_importer:ei_DataPlug2_f58826ef-44b9-4605-bb45-2b82cd5afb04 rdf:type owl:NamedIndividual , - aml_importer:DataPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataSocket_4af3778d-2956-4fdf-9345-d1fc5957528a -aml_importer:ei_DataSocket_4af3778d-2956-4fdf-9345-d1fc5957528a rdf:type owl:NamedIndividual , - aml_importer:DataSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataSocket_686ff996-1a0c-4a3a-bd0d-be67fd34cafc -aml_importer:ei_DataSocket_686ff996-1a0c-4a3a-bd0d-be67fd34cafc rdf:type owl:NamedIndividual , - aml_importer:DataSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataSocket_7e49a15d-3674-4c83-9b3e-cb30a3ba0fe8 -aml_importer:ei_DataSocket_7e49a15d-3674-4c83-9b3e-cb30a3ba0fe8 rdf:type owl:NamedIndividual , - aml_importer:DataSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataSocket_807dacba-3d37-4be1-a95d-f534dc00bca4 -aml_importer:ei_DataSocket_807dacba-3d37-4be1-a95d-f534dc00bca4 rdf:type owl:NamedIndividual , - aml_importer:DataSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataSocket_846549de-aa8c-4c87-900e-543d02116fe4 -aml_importer:ei_DataSocket_846549de-aa8c-4c87-900e-543d02116fe4 rdf:type owl:NamedIndividual , - aml_importer:DataSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataSocket_92cbf340-ae86-4bbd-9ce9-e9995c8255ff -aml_importer:ei_DataSocket_92cbf340-ae86-4bbd-9ce9-e9995c8255ff rdf:type owl:NamedIndividual , - aml_importer:DataSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataSocket_ae28eb4b-ffe8-4cb0-90ad-4b29fa94f73d -aml_importer:ei_DataSocket_ae28eb4b-ffe8-4cb0-90ad-4b29fa94f73d rdf:type owl:NamedIndividual , - aml_importer:DataSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_DataSocket_e01de9a6-af8d-4aa5-8f5f-57080f540b6a -aml_importer:ei_DataSocket_e01de9a6-af8d-4aa5-8f5f-57080f540b6a rdf:type owl:NamedIndividual , - aml_importer:DataSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_037d7f93-efa5-4f61-b40a-107192afb27b -aml_importer:ei_EthernetPlug1_037d7f93-efa5-4f61-b40a-107192afb27b rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_0b0f750d-a2fd-4a30-94d6-55f0562317c5 -aml_importer:ei_EthernetPlug1_0b0f750d-a2fd-4a30-94d6-55f0562317c5 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_0b97ffa8-eb93-417f-858e-a4add57b022a -aml_importer:ei_EthernetPlug1_0b97ffa8-eb93-417f-858e-a4add57b022a rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_10541cca-9d69-4f11-a2a3-b486db56df6d -aml_importer:ei_EthernetPlug1_10541cca-9d69-4f11-a2a3-b486db56df6d rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_14548e38-9b8c-4bb9-95bd-fa0bfa038371 -aml_importer:ei_EthernetPlug1_14548e38-9b8c-4bb9-95bd-fa0bfa038371 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_19f6da58-3759-4fa3-a5e4-b3dc3b49e58b -aml_importer:ei_EthernetPlug1_19f6da58-3759-4fa3-a5e4-b3dc3b49e58b rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_272ee7e2-353b-41fc-a03e-38168d7b4a7f -aml_importer:ei_EthernetPlug1_272ee7e2-353b-41fc-a03e-38168d7b4a7f rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_30ab7cca-fd5b-4f17-92c3-b13af6a203f1 -aml_importer:ei_EthernetPlug1_30ab7cca-fd5b-4f17-92c3-b13af6a203f1 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_3ce929fc-cb81-4ddd-90c4-566a8dc9d524 -aml_importer:ei_EthernetPlug1_3ce929fc-cb81-4ddd-90c4-566a8dc9d524 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_44569ec8-9862-4ac2-baf2-96a40bbd168b -aml_importer:ei_EthernetPlug1_44569ec8-9862-4ac2-baf2-96a40bbd168b rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_479ada71-c9a1-4dc7-b139-ebdcffc5e1b8 -aml_importer:ei_EthernetPlug1_479ada71-c9a1-4dc7-b139-ebdcffc5e1b8 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_4df91bcd-c9cc-4e47-b28c-d78e2c9b870f -aml_importer:ei_EthernetPlug1_4df91bcd-c9cc-4e47-b28c-d78e2c9b870f rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_5147fe00-748d-4b23-940f-95bfb75eb1c9 -aml_importer:ei_EthernetPlug1_5147fe00-748d-4b23-940f-95bfb75eb1c9 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_527adc4b-3795-4165-83fc-dd38cafc1971 -aml_importer:ei_EthernetPlug1_527adc4b-3795-4165-83fc-dd38cafc1971 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_558636dd-7408-4de4-8e3b-14464da10877 -aml_importer:ei_EthernetPlug1_558636dd-7408-4de4-8e3b-14464da10877 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_5aebb503-e90c-4b74-9607-8531a6743be6 -aml_importer:ei_EthernetPlug1_5aebb503-e90c-4b74-9607-8531a6743be6 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_61884fe6-00de-4e36-b9b0-ad4d74f455e0 -aml_importer:ei_EthernetPlug1_61884fe6-00de-4e36-b9b0-ad4d74f455e0 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_6e384bf9-7850-484b-8649-78acf992f8d5 -aml_importer:ei_EthernetPlug1_6e384bf9-7850-484b-8649-78acf992f8d5 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_76e82eca-3004-4e04-9eee-abc322b491d1 -aml_importer:ei_EthernetPlug1_76e82eca-3004-4e04-9eee-abc322b491d1 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_7b4c288c-c4a0-434b-b92e-2376421a1813 -aml_importer:ei_EthernetPlug1_7b4c288c-c4a0-434b-b92e-2376421a1813 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_8ebc5cee-11a4-4417-99a7-6f0b757282e8 -aml_importer:ei_EthernetPlug1_8ebc5cee-11a4-4417-99a7-6f0b757282e8 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_92abd253-9f0a-45cc-a4c5-9820592a1c40 -aml_importer:ei_EthernetPlug1_92abd253-9f0a-45cc-a4c5-9820592a1c40 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_9501027d-fbb2-47dd-8c06-ceb068d39fb2 -aml_importer:ei_EthernetPlug1_9501027d-fbb2-47dd-8c06-ceb068d39fb2 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_9ac7da67-a7ec-4547-86fa-c7970ffc8cb9 -aml_importer:ei_EthernetPlug1_9ac7da67-a7ec-4547-86fa-c7970ffc8cb9 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_9c17b165-9777-4fd3-b401-6dd4dc887c0c -aml_importer:ei_EthernetPlug1_9c17b165-9777-4fd3-b401-6dd4dc887c0c rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_9d8f0b1c-1839-48c7-ad79-e29f222bf27e -aml_importer:ei_EthernetPlug1_9d8f0b1c-1839-48c7-ad79-e29f222bf27e rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_a611ffbd-b94a-466a-a224-cb2ffdd51793 -aml_importer:ei_EthernetPlug1_a611ffbd-b94a-466a-a224-cb2ffdd51793 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_b5d14e27-a73d-475b-a565-2ed93c409c6a -aml_importer:ei_EthernetPlug1_b5d14e27-a73d-475b-a565-2ed93c409c6a rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_b6584936-fa1a-491b-b25e-667326c59ae4 -aml_importer:ei_EthernetPlug1_b6584936-fa1a-491b-b25e-667326c59ae4 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_b8ca4279-9c8f-496f-8536-ea084e697182 -aml_importer:ei_EthernetPlug1_b8ca4279-9c8f-496f-8536-ea084e697182 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_b9ff7173-3281-4b88-92a1-b38f5215cab9 -aml_importer:ei_EthernetPlug1_b9ff7173-3281-4b88-92a1-b38f5215cab9 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_c0f21b27-bf5a-4459-befb-23b245900980 -aml_importer:ei_EthernetPlug1_c0f21b27-bf5a-4459-befb-23b245900980 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_c2d51637-661b-4bdd-87e4-5511903613ab -aml_importer:ei_EthernetPlug1_c2d51637-661b-4bdd-87e4-5511903613ab rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_c8e94303-b2d2-40e0-90f7-949eee3d885c -aml_importer:ei_EthernetPlug1_c8e94303-b2d2-40e0-90f7-949eee3d885c rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_cc5fabd2-7cde-485b-8843-0f082201c50d -aml_importer:ei_EthernetPlug1_cc5fabd2-7cde-485b-8843-0f082201c50d rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_d4e83dfa-6e8a-4b50-b492-2b16780577d6 -aml_importer:ei_EthernetPlug1_d4e83dfa-6e8a-4b50-b492-2b16780577d6 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_d820150e-51ac-4d9b-af41-7a8397b05d13 -aml_importer:ei_EthernetPlug1_d820150e-51ac-4d9b-af41-7a8397b05d13 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_d873bdde-d3f8-4655-b20f-11287be393e1 -aml_importer:ei_EthernetPlug1_d873bdde-d3f8-4655-b20f-11287be393e1 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_dbdcbb3f-00e1-4c8d-a548-3dc25891facb -aml_importer:ei_EthernetPlug1_dbdcbb3f-00e1-4c8d-a548-3dc25891facb rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_dee3d6c3-fd3b-45e8-91d0-72e1c6586630 -aml_importer:ei_EthernetPlug1_dee3d6c3-fd3b-45e8-91d0-72e1c6586630 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_e20e313c-f472-4a6a-9727-4982e028474f -aml_importer:ei_EthernetPlug1_e20e313c-f472-4a6a-9727-4982e028474f rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_e74852e8-e491-4945-91d7-8f8d4f9863cf -aml_importer:ei_EthernetPlug1_e74852e8-e491-4945-91d7-8f8d4f9863cf rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_f6b9c06d-b470-4aef-ba06-09edc891e6fc -aml_importer:ei_EthernetPlug1_f6b9c06d-b470-4aef-ba06-09edc891e6fc rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_f7c9ed9e-7700-4469-a7de-163190ee5eb1 -aml_importer:ei_EthernetPlug1_f7c9ed9e-7700-4469-a7de-163190ee5eb1 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_fa50852d-143d-4289-a134-18299f7896cc -aml_importer:ei_EthernetPlug1_fa50852d-143d-4289-a134-18299f7896cc rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug1_fc9888b3-6263-465f-b6e8-59a408c705f3 -aml_importer:ei_EthernetPlug1_fc9888b3-6263-465f-b6e8-59a408c705f3 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_0004adea-700d-434a-a21f-b71884abe932 -aml_importer:ei_EthernetPlug2_0004adea-700d-434a-a21f-b71884abe932 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_0018de50-0c3f-4125-8dd5-3c964380196a -aml_importer:ei_EthernetPlug2_0018de50-0c3f-4125-8dd5-3c964380196a rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_0378e1b8-e417-41d0-8e5e-6ebb9e8a816b -aml_importer:ei_EthernetPlug2_0378e1b8-e417-41d0-8e5e-6ebb9e8a816b rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_046841d8-4a43-4d61-b003-35769f7e3992 -aml_importer:ei_EthernetPlug2_046841d8-4a43-4d61-b003-35769f7e3992 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_04e43dbe-c305-4ce7-9a37-6966bd003a17 -aml_importer:ei_EthernetPlug2_04e43dbe-c305-4ce7-9a37-6966bd003a17 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_050f4374-4ade-4e74-910a-456afc883474 -aml_importer:ei_EthernetPlug2_050f4374-4ade-4e74-910a-456afc883474 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_0c1866a0-8d5f-45ca-9d40-0ddfc0002a22 -aml_importer:ei_EthernetPlug2_0c1866a0-8d5f-45ca-9d40-0ddfc0002a22 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_0cba49f1-5272-4e65-88a2-172997506511 -aml_importer:ei_EthernetPlug2_0cba49f1-5272-4e65-88a2-172997506511 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_1614d03b-de78-4762-93d1-7ad27cf07fa6 -aml_importer:ei_EthernetPlug2_1614d03b-de78-4762-93d1-7ad27cf07fa6 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_2a3b0c7c-db96-420b-9280-49ac1764428d -aml_importer:ei_EthernetPlug2_2a3b0c7c-db96-420b-9280-49ac1764428d rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_2a58752f-b177-4678-ae1d-fe781e8e155e -aml_importer:ei_EthernetPlug2_2a58752f-b177-4678-ae1d-fe781e8e155e rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_2a70d441-04eb-4780-a125-a1f913f715f7 -aml_importer:ei_EthernetPlug2_2a70d441-04eb-4780-a125-a1f913f715f7 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_2eb48f3e-95ff-459f-a252-3338bb312a91 -aml_importer:ei_EthernetPlug2_2eb48f3e-95ff-459f-a252-3338bb312a91 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_2ec69119-66c8-457e-8423-4ec33f099b20 -aml_importer:ei_EthernetPlug2_2ec69119-66c8-457e-8423-4ec33f099b20 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_30cee2f3-26c5-496b-ae7c-b8caf2aa0353 -aml_importer:ei_EthernetPlug2_30cee2f3-26c5-496b-ae7c-b8caf2aa0353 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_315a8dee-4000-417c-bd0c-007f8c1e7e3e -aml_importer:ei_EthernetPlug2_315a8dee-4000-417c-bd0c-007f8c1e7e3e rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_3341c300-495b-4800-a419-7786fb539101 -aml_importer:ei_EthernetPlug2_3341c300-495b-4800-a419-7786fb539101 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_3a0cd779-4358-4a4e-9e1d-760d88d9e968 -aml_importer:ei_EthernetPlug2_3a0cd779-4358-4a4e-9e1d-760d88d9e968 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_3d19d82e-0b7d-4586-92a1-2ab4d563ab0a -aml_importer:ei_EthernetPlug2_3d19d82e-0b7d-4586-92a1-2ab4d563ab0a rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_3ecaf821-1a98-45a6-8578-d10894d44973 -aml_importer:ei_EthernetPlug2_3ecaf821-1a98-45a6-8578-d10894d44973 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_40cd00a0-391c-4620-9527-d78c5d3b20a2 -aml_importer:ei_EthernetPlug2_40cd00a0-391c-4620-9527-d78c5d3b20a2 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_4eb6dc2f-dff1-4bac-a865-492f1023404b -aml_importer:ei_EthernetPlug2_4eb6dc2f-dff1-4bac-a865-492f1023404b rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_7024d245-4621-4b60-b25c-d0b72e30892e -aml_importer:ei_EthernetPlug2_7024d245-4621-4b60-b25c-d0b72e30892e rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_8750445b-c4d5-4c3e-a96a-903af449bee7 -aml_importer:ei_EthernetPlug2_8750445b-c4d5-4c3e-a96a-903af449bee7 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_87ef45da-2057-4860-974b-26d64f8d5f9d -aml_importer:ei_EthernetPlug2_87ef45da-2057-4860-974b-26d64f8d5f9d rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_8f5bb8d6-2553-4b91-98c5-f05b624b2f65 -aml_importer:ei_EthernetPlug2_8f5bb8d6-2553-4b91-98c5-f05b624b2f65 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_9411fd4d-e3f0-4b82-9726-cc007318a8bf -aml_importer:ei_EthernetPlug2_9411fd4d-e3f0-4b82-9726-cc007318a8bf rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_9b8d99fd-42f3-44c1-956e-da53204c151b -aml_importer:ei_EthernetPlug2_9b8d99fd-42f3-44c1-956e-da53204c151b rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_a0c2a075-76ac-4ba9-8431-d3f34cde2777 -aml_importer:ei_EthernetPlug2_a0c2a075-76ac-4ba9-8431-d3f34cde2777 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_a332c210-a79b-42b7-a537-9776d2139ab0 -aml_importer:ei_EthernetPlug2_a332c210-a79b-42b7-a537-9776d2139ab0 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_a53e525a-9249-4c78-a32a-c3c10bd40034 -aml_importer:ei_EthernetPlug2_a53e525a-9249-4c78-a32a-c3c10bd40034 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_ab091654-77cb-4680-bfd9-3a1651eaf59c -aml_importer:ei_EthernetPlug2_ab091654-77cb-4680-bfd9-3a1651eaf59c rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_b7c90d56-3709-4acc-8562-d7116bd549d1 -aml_importer:ei_EthernetPlug2_b7c90d56-3709-4acc-8562-d7116bd549d1 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_bb270613-e7f8-4c44-83a0-090b1003040d -aml_importer:ei_EthernetPlug2_bb270613-e7f8-4c44-83a0-090b1003040d rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_cb71bfd9-e012-4a10-86f0-c4c606e1e495 -aml_importer:ei_EthernetPlug2_cb71bfd9-e012-4a10-86f0-c4c606e1e495 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_cde479a9-1cfc-4908-86f5-0d02683c4935 -aml_importer:ei_EthernetPlug2_cde479a9-1cfc-4908-86f5-0d02683c4935 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_d0199789-9c02-44fa-9f62-dfddb1d1a47d -aml_importer:ei_EthernetPlug2_d0199789-9c02-44fa-9f62-dfddb1d1a47d rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_d1271e4c-b1b8-49b5-8fdd-504f6596f0da -aml_importer:ei_EthernetPlug2_d1271e4c-b1b8-49b5-8fdd-504f6596f0da rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_d2968eb1-85a0-4898-bbd3-3497cdde065d -aml_importer:ei_EthernetPlug2_d2968eb1-85a0-4898-bbd3-3497cdde065d rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_d6388a7b-6006-4e47-936e-a3da211e0f5b -aml_importer:ei_EthernetPlug2_d6388a7b-6006-4e47-936e-a3da211e0f5b rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_de1a769d-17aa-4add-a68a-b41e728abac1 -aml_importer:ei_EthernetPlug2_de1a769d-17aa-4add-a68a-b41e728abac1 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_e84fe43d-40c6-4132-a8fb-f9c49fb24553 -aml_importer:ei_EthernetPlug2_e84fe43d-40c6-4132-a8fb-f9c49fb24553 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_eb5f8cab-ad6b-4fa0-87a1-d8d54fc229d7 -aml_importer:ei_EthernetPlug2_eb5f8cab-ad6b-4fa0-87a1-d8d54fc229d7 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_efd46995-ca03-4bf4-9491-086d617a3f0f -aml_importer:ei_EthernetPlug2_efd46995-ca03-4bf4-9491-086d617a3f0f rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_f577cb67-8d22-43b5-9012-8b85b548bf81 -aml_importer:ei_EthernetPlug2_f577cb67-8d22-43b5-9012-8b85b548bf81 rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetPlug2_ffed756f-eda3-490d-9730-f61888d28b0d -aml_importer:ei_EthernetPlug2_ffed756f-eda3-490d-9730-f61888d28b0d rdf:type owl:NamedIndividual , - aml_importer:EthernetPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket10_17701d76-794d-4eda-9aa1-44dfd9ee1b18 -aml_importer:ei_EthernetSocket10_17701d76-794d-4eda-9aa1-44dfd9ee1b18 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket10" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket11_6847e2e4-aadf-4808-aacd-aeba5837517e -aml_importer:ei_EthernetSocket11_6847e2e4-aadf-4808-aacd-aeba5837517e rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket11" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket12_eedd7431-8f9c-45a7-8195-d01a4c446656 -aml_importer:ei_EthernetSocket12_eedd7431-8f9c-45a7-8195-d01a4c446656 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket12" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket13_0c1aaf7d-4170-4621-9edd-109072f8cd7e -aml_importer:ei_EthernetSocket13_0c1aaf7d-4170-4621-9edd-109072f8cd7e rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket13" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket14_6fa6d0d2-2b34-4115-a14d-18c5a224e54e -aml_importer:ei_EthernetSocket14_6fa6d0d2-2b34-4115-a14d-18c5a224e54e rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket14" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_0e28cd59-35a1-4726-b672-366db5780dd4 -aml_importer:ei_EthernetSocket1_0e28cd59-35a1-4726-b672-366db5780dd4 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_1191a78f-9c97-4b0c-bdb0-0a920a8152ff -aml_importer:ei_EthernetSocket1_1191a78f-9c97-4b0c-bdb0-0a920a8152ff rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_17d6bbc4-df3d-4f05-9548-82e7227cf8bd -aml_importer:ei_EthernetSocket1_17d6bbc4-df3d-4f05-9548-82e7227cf8bd rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_2070bd6b-0107-425c-90e0-bfff8fd41c95 -aml_importer:ei_EthernetSocket1_2070bd6b-0107-425c-90e0-bfff8fd41c95 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_2a220313-14f5-466d-9338-1a0db0d2ffef -aml_importer:ei_EthernetSocket1_2a220313-14f5-466d-9338-1a0db0d2ffef rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_2d23b693-4fdd-45f5-8541-22dfd91ad4b6 -aml_importer:ei_EthernetSocket1_2d23b693-4fdd-45f5-8541-22dfd91ad4b6 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_2f28d804-7a56-424f-b7b7-27e66f84eb16 -aml_importer:ei_EthernetSocket1_2f28d804-7a56-424f-b7b7-27e66f84eb16 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_311a9abc-3c8e-4675-a111-fd30738f2732 -aml_importer:ei_EthernetSocket1_311a9abc-3c8e-4675-a111-fd30738f2732 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_328efddb-d056-40cb-b177-4674361be7be -aml_importer:ei_EthernetSocket1_328efddb-d056-40cb-b177-4674361be7be rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_34c5a701-1da9-4a1e-b1fc-5e72091da36f -aml_importer:ei_EthernetSocket1_34c5a701-1da9-4a1e-b1fc-5e72091da36f rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_34fe9386-a622-4165-a63b-62fe8c8ee1d6 -aml_importer:ei_EthernetSocket1_34fe9386-a622-4165-a63b-62fe8c8ee1d6 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_3af32e21-6a1c-4d22-aa93-ebd5f2174376 -aml_importer:ei_EthernetSocket1_3af32e21-6a1c-4d22-aa93-ebd5f2174376 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_3b2421f0-e997-4a03-a6c3-f6959e16a1d2 -aml_importer:ei_EthernetSocket1_3b2421f0-e997-4a03-a6c3-f6959e16a1d2 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_3ec77b75-860c-4856-a6b1-638136639ac8 -aml_importer:ei_EthernetSocket1_3ec77b75-860c-4856-a6b1-638136639ac8 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_3ff51c5f-de99-4bb4-b326-9877d03faecb -aml_importer:ei_EthernetSocket1_3ff51c5f-de99-4bb4-b326-9877d03faecb rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_4004db01-a168-4e93-b4b3-44494dc62463 -aml_importer:ei_EthernetSocket1_4004db01-a168-4e93-b4b3-44494dc62463 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_41e16462-63f1-4a2b-96d2-9bfe032838b0 -aml_importer:ei_EthernetSocket1_41e16462-63f1-4a2b-96d2-9bfe032838b0 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_4e373d26-b42d-4b7d-9b6b-eaf79f97a56f -aml_importer:ei_EthernetSocket1_4e373d26-b42d-4b7d-9b6b-eaf79f97a56f rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_53a5f197-a511-4e71-84e9-2ab523099198 -aml_importer:ei_EthernetSocket1_53a5f197-a511-4e71-84e9-2ab523099198 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_693e5301-37c0-4168-8f29-0908cb40c024 -aml_importer:ei_EthernetSocket1_693e5301-37c0-4168-8f29-0908cb40c024 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_6f2435d9-f622-4749-996c-379e9d87b83d -aml_importer:ei_EthernetSocket1_6f2435d9-f622-4749-996c-379e9d87b83d rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_6f4fad76-7a6b-4156-90be-01c354d32800 -aml_importer:ei_EthernetSocket1_6f4fad76-7a6b-4156-90be-01c354d32800 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_829e06ef-1ede-49f3-8e55-a6a18ffcdace -aml_importer:ei_EthernetSocket1_829e06ef-1ede-49f3-8e55-a6a18ffcdace rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_83e071e7-772b-4b50-ae5a-70f263a2bddb -aml_importer:ei_EthernetSocket1_83e071e7-772b-4b50-ae5a-70f263a2bddb rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_881a9b51-6752-4aa8-8471-714015644adf -aml_importer:ei_EthernetSocket1_881a9b51-6752-4aa8-8471-714015644adf rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_89571e9b-e0f0-4856-b72a-7897ae1cf7ad -aml_importer:ei_EthernetSocket1_89571e9b-e0f0-4856-b72a-7897ae1cf7ad rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_a02963d4-9d31-4dc2-98ff-239192d33803 -aml_importer:ei_EthernetSocket1_a02963d4-9d31-4dc2-98ff-239192d33803 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_a2c82022-d2be-4355-8911-c826a52fc8b2 -aml_importer:ei_EthernetSocket1_a2c82022-d2be-4355-8911-c826a52fc8b2 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_a45b3032-c03b-4410-80a0-8f69fe26fef2 -aml_importer:ei_EthernetSocket1_a45b3032-c03b-4410-80a0-8f69fe26fef2 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_a7278c83-fe80-4c1d-bb62-f78d3c568af8 -aml_importer:ei_EthernetSocket1_a7278c83-fe80-4c1d-bb62-f78d3c568af8 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_a92c7873-0a07-4694-92eb-4e5afa8851a4 -aml_importer:ei_EthernetSocket1_a92c7873-0a07-4694-92eb-4e5afa8851a4 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_aa0cfc1c-4738-4da7-9e0f-c582c808f0a9 -aml_importer:ei_EthernetSocket1_aa0cfc1c-4738-4da7-9e0f-c582c808f0a9 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_b25aef65-333a-4adc-9bd7-29d88a99349c -aml_importer:ei_EthernetSocket1_b25aef65-333a-4adc-9bd7-29d88a99349c rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_bda9ab9d-a3e8-4753-8a32-2f460711e08c -aml_importer:ei_EthernetSocket1_bda9ab9d-a3e8-4753-8a32-2f460711e08c rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_c80744fd-2711-491f-8aac-776e9c28c62f -aml_importer:ei_EthernetSocket1_c80744fd-2711-491f-8aac-776e9c28c62f rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_cb3518ed-a657-40f9-8c13-3cfbd60ea63a -aml_importer:ei_EthernetSocket1_cb3518ed-a657-40f9-8c13-3cfbd60ea63a rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_cb93258e-84a8-49b8-b7fd-63ee9eeba5b2 -aml_importer:ei_EthernetSocket1_cb93258e-84a8-49b8-b7fd-63ee9eeba5b2 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_d507e3e3-1a9c-4957-b399-c96b9c68c09a -aml_importer:ei_EthernetSocket1_d507e3e3-1a9c-4957-b399-c96b9c68c09a rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_d833a7f9-908e-4b0d-88d2-16298bb533cf -aml_importer:ei_EthernetSocket1_d833a7f9-908e-4b0d-88d2-16298bb533cf rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_e3204a83-9a92-404e-99ae-decdfec06045 -aml_importer:ei_EthernetSocket1_e3204a83-9a92-404e-99ae-decdfec06045 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_e351e1b0-8e14-4fc5-b1b8-4d9a731afe5a -aml_importer:ei_EthernetSocket1_e351e1b0-8e14-4fc5-b1b8-4d9a731afe5a rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_e998d27c-161a-4bb7-85ac-41beae800ff0 -aml_importer:ei_EthernetSocket1_e998d27c-161a-4bb7-85ac-41beae800ff0 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket1_fc47c0ff-3e24-405a-a852-953b71ee65b6 -aml_importer:ei_EthernetSocket1_fc47c0ff-3e24-405a-a852-953b71ee65b6 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_0df11b8c-5e02-4e67-a3e9-c4588992b1b1 -aml_importer:ei_EthernetSocket2_0df11b8c-5e02-4e67-a3e9-c4588992b1b1 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_19ba8293-31eb-4e43-a11f-7b4011957ae1 -aml_importer:ei_EthernetSocket2_19ba8293-31eb-4e43-a11f-7b4011957ae1 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_2aba6457-9137-470a-b03c-2ea7144890d6 -aml_importer:ei_EthernetSocket2_2aba6457-9137-470a-b03c-2ea7144890d6 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_341486c1-612f-40ea-81af-36f34b6681c4 -aml_importer:ei_EthernetSocket2_341486c1-612f-40ea-81af-36f34b6681c4 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_3ec391ca-8953-416f-85ad-0c97a1a1a501 -aml_importer:ei_EthernetSocket2_3ec391ca-8953-416f-85ad-0c97a1a1a501 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_504b0974-f88e-4a2b-9c7f-28d1b54859ce -aml_importer:ei_EthernetSocket2_504b0974-f88e-4a2b-9c7f-28d1b54859ce rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_6bf6a4bd-7bef-412c-938b-4d3bde1bfa62 -aml_importer:ei_EthernetSocket2_6bf6a4bd-7bef-412c-938b-4d3bde1bfa62 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_7db774dd-f913-4c9e-a710-881a4adf8731 -aml_importer:ei_EthernetSocket2_7db774dd-f913-4c9e-a710-881a4adf8731 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_a95b5f98-b5cf-447b-8792-ed42e675f8b6 -aml_importer:ei_EthernetSocket2_a95b5f98-b5cf-447b-8792-ed42e675f8b6 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_a9bcea30-40e4-4439-a855-e4b088f1254f -aml_importer:ei_EthernetSocket2_a9bcea30-40e4-4439-a855-e4b088f1254f rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_b02527e7-57d7-46d0-8ec5-5332cb3400f8 -aml_importer:ei_EthernetSocket2_b02527e7-57d7-46d0-8ec5-5332cb3400f8 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_b8fd1fdb-5185-47da-a635-425c897b4a0e -aml_importer:ei_EthernetSocket2_b8fd1fdb-5185-47da-a635-425c897b4a0e rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_c5abb676-677e-46f5-be24-18907e30b6dc -aml_importer:ei_EthernetSocket2_c5abb676-677e-46f5-be24-18907e30b6dc rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_cc03190d-ad77-410a-87c6-ce5e32fe5894 -aml_importer:ei_EthernetSocket2_cc03190d-ad77-410a-87c6-ce5e32fe5894 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_dad4357c-c01f-4c20-833e-cdda1199d5c2 -aml_importer:ei_EthernetSocket2_dad4357c-c01f-4c20-833e-cdda1199d5c2 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket2_f92432c7-7db5-4ee6-8f8b-96d58ab4b6b7 -aml_importer:ei_EthernetSocket2_f92432c7-7db5-4ee6-8f8b-96d58ab4b6b7 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_1c9c25cb-e95a-4708-a2ca-65e252b24a3f -aml_importer:ei_EthernetSocket3_1c9c25cb-e95a-4708-a2ca-65e252b24a3f rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_2839194e-f970-4f48-9510-c8dd9d7c78f5 -aml_importer:ei_EthernetSocket3_2839194e-f970-4f48-9510-c8dd9d7c78f5 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_28d87e93-ae2d-4f6b-afef-ff28b4c995aa -aml_importer:ei_EthernetSocket3_28d87e93-ae2d-4f6b-afef-ff28b4c995aa rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_39ffd08b-5871-49bc-9e10-b1e340c12ac6 -aml_importer:ei_EthernetSocket3_39ffd08b-5871-49bc-9e10-b1e340c12ac6 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_6e7d59c5-d96e-4e5b-814f-e94c5858faea -aml_importer:ei_EthernetSocket3_6e7d59c5-d96e-4e5b-814f-e94c5858faea rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_6ebaee6c-fc37-424b-b713-978397078156 -aml_importer:ei_EthernetSocket3_6ebaee6c-fc37-424b-b713-978397078156 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_6fea490b-3e8f-4243-85b9-e6e0d8f24e18 -aml_importer:ei_EthernetSocket3_6fea490b-3e8f-4243-85b9-e6e0d8f24e18 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_818fe45b-1f74-4b1e-8a8f-71330e70eba1 -aml_importer:ei_EthernetSocket3_818fe45b-1f74-4b1e-8a8f-71330e70eba1 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_ad4fb3b9-a476-4ac8-b83f-f3c99bca1513 -aml_importer:ei_EthernetSocket3_ad4fb3b9-a476-4ac8-b83f-f3c99bca1513 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_b1f45de9-a7ae-4327-b537-ae7c5a0c13a5 -aml_importer:ei_EthernetSocket3_b1f45de9-a7ae-4327-b537-ae7c5a0c13a5 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_c3e33c4a-bb75-4f10-9720-c8eea6ef90c9 -aml_importer:ei_EthernetSocket3_c3e33c4a-bb75-4f10-9720-c8eea6ef90c9 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket3_e4931324-995a-4f20-ab21-384fb1ffea6d -aml_importer:ei_EthernetSocket3_e4931324-995a-4f20-ab21-384fb1ffea6d rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket4_1a4b042a-eef5-46ce-b350-656ab2b6c060 -aml_importer:ei_EthernetSocket4_1a4b042a-eef5-46ce-b350-656ab2b6c060 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket4_1f3b99b8-9092-42d0-98c9-cecbf3b5a189 -aml_importer:ei_EthernetSocket4_1f3b99b8-9092-42d0-98c9-cecbf3b5a189 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket4_1feae021-7b03-4bd6-ae49-5c2b699741a3 -aml_importer:ei_EthernetSocket4_1feae021-7b03-4bd6-ae49-5c2b699741a3 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket4_47f2bfca-7a36-4ae8-b955-b5aa88e734b8 -aml_importer:ei_EthernetSocket4_47f2bfca-7a36-4ae8-b955-b5aa88e734b8 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket4_5830331c-a53c-4a17-aa6d-47f99a759b32 -aml_importer:ei_EthernetSocket4_5830331c-a53c-4a17-aa6d-47f99a759b32 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket4_c1e9b84e-e655-4dff-aa82-866445a091a3 -aml_importer:ei_EthernetSocket4_c1e9b84e-e655-4dff-aa82-866445a091a3 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket4_c57b5d9b-d2a1-44cf-bb7a-57a60957247a -aml_importer:ei_EthernetSocket4_c57b5d9b-d2a1-44cf-bb7a-57a60957247a rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket5_10ad4d48-9f71-4e8f-b52d-735e19c529ab -aml_importer:ei_EthernetSocket5_10ad4d48-9f71-4e8f-b52d-735e19c529ab rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket5" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket5_66987355-b53a-4fd4-af31-c78628bfbbf6 -aml_importer:ei_EthernetSocket5_66987355-b53a-4fd4-af31-c78628bfbbf6 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket5" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket5_7341e507-7cca-4692-90d1-7efca1a55850 -aml_importer:ei_EthernetSocket5_7341e507-7cca-4692-90d1-7efca1a55850 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket5" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket6_c41d5604-d159-42c6-b3c6-2c034d52246b -aml_importer:ei_EthernetSocket6_c41d5604-d159-42c6-b3c6-2c034d52246b rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket6" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket7_bddd02f6-f870-4457-84f6-cb18ba0b1001 -aml_importer:ei_EthernetSocket7_bddd02f6-f870-4457-84f6-cb18ba0b1001 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket7" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket8_393fa348-770a-4479-9dfa-a2a7786a0bda -aml_importer:ei_EthernetSocket8_393fa348-770a-4479-9dfa-a2a7786a0bda rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket8" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket9_71125503-ca69-4789-8ab6-2c12a4068e8e -aml_importer:ei_EthernetSocket9_71125503-ca69-4789-8ab6-2c12a4068e8e rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket9" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket_3e5cccb8-098e-4e8c-b66d-0c17f7a536ca -aml_importer:ei_EthernetSocket_3e5cccb8-098e-4e8c-b66d-0c17f7a536ca rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket_642233fd-820b-40fc-8705-9908fd914dac -aml_importer:ei_EthernetSocket_642233fd-820b-40fc-8705-9908fd914dac rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket_8186e078-1346-489f-baed-bfa4e8b524f3 -aml_importer:ei_EthernetSocket_8186e078-1346-489f-baed-bfa4e8b524f3 rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_EthernetSocket_ebfabd7d-e0a0-425d-979f-88e726ba20cc -aml_importer:ei_EthernetSocket_ebfabd7d-e0a0-425d-979f-88e726ba20cc rdf:type owl:NamedIndividual , - aml_importer:EthernetSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicInterfaceActivityOnNode_89b75af1-3a02-4d85-a4e6-c491eb2dacb3 -aml_importer:ei_LogicInterfaceActivityOnNode_89b75af1-3a02-4d85-a4e6-c491eb2dacb3 rdf:type owl:NamedIndividual , - aml_importer:SequencingLogicInterface ; - aml_importer:hasRefURI "file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicInterfaceActivityOnNode" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicInterfaceGantt_1342f8d1-db6b-41e8-a387-47145362f813 -aml_importer:ei_LogicInterfaceGantt_1342f8d1-db6b-41e8-a387-47145362f813 rdf:type owl:NamedIndividual , - aml_importer:SequencingLogicInterface ; - aml_importer:hasRefURI "file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicInterfaceGantt" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicInterfaceTimingDiagram_d1622fae-7da4-49f0-b458-91d7ee25628c -aml_importer:ei_LogicInterfaceTimingDiagram_d1622fae-7da4-49f0-b458-91d7ee25628c rdf:type owl:NamedIndividual , - aml_importer:SequencingLogicInterface ; - aml_importer:hasRefURI "file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicInterfaceTimingDiagram" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointHTTP-1_27371c00-7ffc-4820-b129-c971d5e6a739 -aml_importer:ei_LogicalEndpointHTTP-1_27371c00-7ffc-4820-b129-c971d5e6a739 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointHTTP ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointHTTP-1_b4d46f14-64ef-466b-86c3-3ab92e1d12eb -aml_importer:ei_LogicalEndpointHTTP-1_b4d46f14-64ef-466b-86c3-3ab92e1d12eb rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointHTTP ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointHTTP-1_db5d1336-2a10-439c-9961-6450ecc7a047 -aml_importer:ei_LogicalEndpointHTTP-1_db5d1336-2a10-439c-9961-6450ecc7a047 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointHTTP ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointHTTP-2_927ed061-fa2b-47b1-b48c-bca7a559d854 -aml_importer:ei_LogicalEndpointHTTP-2_927ed061-fa2b-47b1-b48c-bca7a559d854 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointHTTP ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointHTTP-2_bcd4438c-0472-4144-b5b3-3e05ed6bb1d2 -aml_importer:ei_LogicalEndpointHTTP-2_bcd4438c-0472-4144-b5b3-3e05ed6bb1d2 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointHTTP ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointHTTP-2_ede3a8fd-21f5-4d63-978e-50cd5b01e756 -aml_importer:ei_LogicalEndpointHTTP-2_ede3a8fd-21f5-4d63-978e-50cd5b01e756 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointHTTP ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointHTTP_263fcd54-6a0e-4fbe-a02b-49e390e00943 -aml_importer:ei_LogicalEndpointHTTP_263fcd54-6a0e-4fbe-a02b-49e390e00943 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointHTTP ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointHTTP_2d9365fd-7a4f-46ec-aa7b-075c9969efc2 -aml_importer:ei_LogicalEndpointHTTP_2d9365fd-7a4f-46ec-aa7b-075c9969efc2 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointHTTP ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointModbus_81b74a1f-b305-470b-8c8c-d6bad9103441 -aml_importer:ei_LogicalEndpointModbus_81b74a1f-b305-470b-8c8c-d6bad9103441 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointModbus ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointModbus" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC-UA-1_2f5fab35-8e99-45ff-ae56-4ac00b7144ea -aml_importer:ei_LogicalEndpointOPC-UA-1_2f5fab35-8e99-45ff-ae56-4ac00b7144ea rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC-UA ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC-UA-1_6397e1c3-f31f-49a4-a1f0-1ebb1028c4ea -aml_importer:ei_LogicalEndpointOPC-UA-1_6397e1c3-f31f-49a4-a1f0-1ebb1028c4ea rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC-UA ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC-UA-1_a04436ec-db07-4dc1-a5a1-4a0e469e2c1d -aml_importer:ei_LogicalEndpointOPC-UA-1_a04436ec-db07-4dc1-a5a1-4a0e469e2c1d rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC-UA ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC-UA-2_25f02e01-a974-4880-bd72-bf584af8624d -aml_importer:ei_LogicalEndpointOPC-UA-2_25f02e01-a974-4880-bd72-bf584af8624d rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC-UA ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC-UA-2_823520ec-9659-47e5-ad5d-1c466e824b11 -aml_importer:ei_LogicalEndpointOPC-UA-2_823520ec-9659-47e5-ad5d-1c466e824b11 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC-UA ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC-UA-2_cfe19784-1636-4a08-a64c-930bde597f15 -aml_importer:ei_LogicalEndpointOPC-UA-2_cfe19784-1636-4a08-a64c-930bde597f15 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC-UA ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC-UA_105f4f40-54fe-4d8f-90d2-bcdfd30c0031 -aml_importer:ei_LogicalEndpointOPC-UA_105f4f40-54fe-4d8f-90d2-bcdfd30c0031 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC-UA ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC-UA_83524b62-a19a-4f1b-8038-23027d20c93c -aml_importer:ei_LogicalEndpointOPC-UA_83524b62-a19a-4f1b-8038-23027d20c93c rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC-UA ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC1_3af21c9e-cc80-4889-87b5-10255ec1f52f -aml_importer:ei_LogicalEndpointOPC1_3af21c9e-cc80-4889-87b5-10255ec1f52f rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC1_48993549-d4d0-4931-90b2-416e913174d0 -aml_importer:ei_LogicalEndpointOPC1_48993549-d4d0-4931-90b2-416e913174d0 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC1_5c88241e-d581-45e0-990e-4ac58c6de838 -aml_importer:ei_LogicalEndpointOPC1_5c88241e-d581-45e0-990e-4ac58c6de838 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC1_98472cc7-8ab4-4c62-b4cf-c28f0d4ea391 -aml_importer:ei_LogicalEndpointOPC1_98472cc7-8ab4-4c62-b4cf-c28f0d4ea391 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC1_9ff435fc-52d0-4204-a2f3-4d8323e7f1fd -aml_importer:ei_LogicalEndpointOPC1_9ff435fc-52d0-4204-a2f3-4d8323e7f1fd rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC1_c8dda586-0a8d-4aed-b41b-1070f0e56e4a -aml_importer:ei_LogicalEndpointOPC1_c8dda586-0a8d-4aed-b41b-1070f0e56e4a rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC2_02e7b935-8067-4293-8748-0449c1144807 -aml_importer:ei_LogicalEndpointOPC2_02e7b935-8067-4293-8748-0449c1144807 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC2_12c24e84-be9a-4e36-b7a9-7b2ad751cfe6 -aml_importer:ei_LogicalEndpointOPC2_12c24e84-be9a-4e36-b7a9-7b2ad751cfe6 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC2_1a018044-4ba2-4210-8099-68e6c28aff4f -aml_importer:ei_LogicalEndpointOPC2_1a018044-4ba2-4210-8099-68e6c28aff4f rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC2_448bc6ba-609c-4d66-87bf-f01b86c53b63 -aml_importer:ei_LogicalEndpointOPC2_448bc6ba-609c-4d66-87bf-f01b86c53b63 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC2_4f4277fd-d47e-4e24-b7dd-afabc94cbe9c -aml_importer:ei_LogicalEndpointOPC2_4f4277fd-d47e-4e24-b7dd-afabc94cbe9c rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC2_73557256-bbd1-4dcf-8856-777db2b92c3d -aml_importer:ei_LogicalEndpointOPC2_73557256-bbd1-4dcf-8856-777db2b92c3d rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC3_372ad0ad-1e08-45ea-899c-19d4009158e2 -aml_importer:ei_LogicalEndpointOPC3_372ad0ad-1e08-45ea-899c-19d4009158e2 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC4_9a5396fa-80d9-438e-9700-75f3a7950fe1 -aml_importer:ei_LogicalEndpointOPC4_9a5396fa-80d9-438e-9700-75f3a7950fe1 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC4" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC5_8e747187-913d-4635-bd1b-d64e683a0a21 -aml_importer:ei_LogicalEndpointOPC5_8e747187-913d-4635-bd1b-d64e683a0a21 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC5" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC_4a38d310-5447-4ac6-88a7-74bfc25172ec -aml_importer:ei_LogicalEndpointOPC_4a38d310-5447-4ac6-88a7-74bfc25172ec rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC_4d43bded-d2e8-4c1f-a357-05760b746cbb -aml_importer:ei_LogicalEndpointOPC_4d43bded-d2e8-4c1f-a357-05760b746cbb rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC_7f4077c1-4536-45d4-af0c-f516b817d3a7 -aml_importer:ei_LogicalEndpointOPC_7f4077c1-4536-45d4-af0c-f516b817d3a7 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC_871d320f-b7a9-4fa2-9b23-c975da0cc485 -aml_importer:ei_LogicalEndpointOPC_871d320f-b7a9-4fa2-9b23-c975da0cc485 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointOPC_8910bbbb-0cda-46c5-8a5e-550068c82931 -aml_importer:ei_LogicalEndpointOPC_8910bbbb-0cda-46c5-8a5e-550068c82931 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointOPC ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe1_a175d785-e4e9-4858-b4c2-1807437c1f63 -aml_importer:ei_LogicalEndpointPROFIsafe1_a175d785-e4e9-4858-b4c2-1807437c1f63 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe1_e5384131-e6eb-48e8-8b90-9ead55a16971 -aml_importer:ei_LogicalEndpointPROFIsafe1_e5384131-e6eb-48e8-8b90-9ead55a16971 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe1_eafdfbba-1d80-48a8-b74b-3b27aaf71c8b -aml_importer:ei_LogicalEndpointPROFIsafe1_eafdfbba-1d80-48a8-b74b-3b27aaf71c8b rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe1_f03aad7a-9c5a-4f63-8261-c0d0d388e18a -aml_importer:ei_LogicalEndpointPROFIsafe1_f03aad7a-9c5a-4f63-8261-c0d0d388e18a rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe2_08eb5c10-0f82-401f-b6b5-720988f25910 -aml_importer:ei_LogicalEndpointPROFIsafe2_08eb5c10-0f82-401f-b6b5-720988f25910 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe2_2a1403ac-30d9-43de-9f26-2f7cbe82c75c -aml_importer:ei_LogicalEndpointPROFIsafe2_2a1403ac-30d9-43de-9f26-2f7cbe82c75c rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe2_7d57b69d-8413-4f16-8d00-339083413b5f -aml_importer:ei_LogicalEndpointPROFIsafe2_7d57b69d-8413-4f16-8d00-339083413b5f rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe2_eda94389-af6a-4f80-9526-294676019256 -aml_importer:ei_LogicalEndpointPROFIsafe2_eda94389-af6a-4f80-9526-294676019256 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe_429d1ee7-4e79-4657-a6d7-dd469a9b4a87 -aml_importer:ei_LogicalEndpointPROFIsafe_429d1ee7-4e79-4657-a6d7-dd469a9b4a87 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe_57cb22a2-920a-4de4-9f02-52a8267b744d -aml_importer:ei_LogicalEndpointPROFIsafe_57cb22a2-920a-4de4-9f02-52a8267b744d rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe_59fa5a98-b9c5-443e-a743-df56b026d9f3 -aml_importer:ei_LogicalEndpointPROFIsafe_59fa5a98-b9c5-443e-a743-df56b026d9f3 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe_a2bd3329-93c3-4b76-9689-38069e140904 -aml_importer:ei_LogicalEndpointPROFIsafe_a2bd3329-93c3-4b76-9689-38069e140904 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe_ae854efb-9d6b-4b00-a4da-247eaf736f6f -aml_importer:ei_LogicalEndpointPROFIsafe_ae854efb-9d6b-4b00-a4da-247eaf736f6f rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe_c0f1cf30-00cd-459b-aa62-2b9578daa128 -aml_importer:ei_LogicalEndpointPROFIsafe_c0f1cf30-00cd-459b-aa62-2b9578daa128 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe_f3545173-695e-4c8e-b02e-4a3ed53a15ba -aml_importer:ei_LogicalEndpointPROFIsafe_f3545173-695e-4c8e-b02e-4a3ed53a15ba rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointPROFIsafe_f8375d35-7820-469d-9aaa-5ab3c8bb2eef -aml_importer:ei_LogicalEndpointPROFIsafe_f8375d35-7820-469d-9aaa-5ab3c8bb2eef rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointPROFIsafe ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet1_01e828d3-97b1-4667-ab52-12b568cea9da -aml_importer:ei_LogicalEndpointProfinet1_01e828d3-97b1-4667-ab52-12b568cea9da rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet1_47666355-7eb2-485b-83b6-b7a83ae24175 -aml_importer:ei_LogicalEndpointProfinet1_47666355-7eb2-485b-83b6-b7a83ae24175 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet1_72ed1588-3b9b-4dfe-a89a-9346bfc01530 -aml_importer:ei_LogicalEndpointProfinet1_72ed1588-3b9b-4dfe-a89a-9346bfc01530 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet1_9de6bd05-5336-4dd6-83d7-6eb3fdbc6c9d -aml_importer:ei_LogicalEndpointProfinet1_9de6bd05-5336-4dd6-83d7-6eb3fdbc6c9d rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet2_04af5cee-6f9d-4f44-afe9-de3393fc7bf4 -aml_importer:ei_LogicalEndpointProfinet2_04af5cee-6f9d-4f44-afe9-de3393fc7bf4 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet2_2fc773b5-2686-4d82-bc98-5f6dc599daad -aml_importer:ei_LogicalEndpointProfinet2_2fc773b5-2686-4d82-bc98-5f6dc599daad rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet2_302e1abe-af1d-4e16-b0ab-43d7eeac5082 -aml_importer:ei_LogicalEndpointProfinet2_302e1abe-af1d-4e16-b0ab-43d7eeac5082 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet2_7df3b19b-64c8-419f-8dba-82cd2b56aa15 -aml_importer:ei_LogicalEndpointProfinet2_7df3b19b-64c8-419f-8dba-82cd2b56aa15 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet_2d99c617-b230-4b96-be81-8108865806cc -aml_importer:ei_LogicalEndpointProfinet_2d99c617-b230-4b96-be81-8108865806cc rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet_433a17eb-fc4a-4d65-85cc-311e1ff00019 -aml_importer:ei_LogicalEndpointProfinet_433a17eb-fc4a-4d65-85cc-311e1ff00019 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet_4f19c87a-fc28-4fc3-a41f-4a1089481412 -aml_importer:ei_LogicalEndpointProfinet_4f19c87a-fc28-4fc3-a41f-4a1089481412 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet_5e889b68-e366-4560-b3ee-318c59c8aea5 -aml_importer:ei_LogicalEndpointProfinet_5e889b68-e366-4560-b3ee-318c59c8aea5 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet_67a0e8e3-f5f9-4a69-bf63-cc6e05f9a6b3 -aml_importer:ei_LogicalEndpointProfinet_67a0e8e3-f5f9-4a69-bf63-cc6e05f9a6b3 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet_7e7fba22-6784-4256-a18e-9699fe75df70 -aml_importer:ei_LogicalEndpointProfinet_7e7fba22-6784-4256-a18e-9699fe75df70 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet_915ff2e6-3d5d-4681-b6e0-dbb30417dae4 -aml_importer:ei_LogicalEndpointProfinet_915ff2e6-3d5d-4681-b6e0-dbb30417dae4 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalEndpointProfinet_9512f6d4-17f5-42fe-8d41-7049e4c0a1b9 -aml_importer:ei_LogicalEndpointProfinet_9512f6d4-17f5-42fe-8d41-7049e4c0a1b9 rdf:type owl:NamedIndividual , - aml_importer:LogicalEndpointProfinet ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#ei_LogicalRemoteEndpoint_ceca8b8d-7308-4242-868f-abc070544477 -aml_importer:ei_LogicalRemoteEndpoint_ceca8b8d-7308-4242-868f-abc070544477 rdf:type owl:NamedIndividual , - aml_importer:LogicalRemoteEndpoint ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalRemoteEndpoint" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorPlug1_3cfc448e-1c96-4379-8139-03adb5ef4bb8 -aml_importer:ei_MotorPlug1_3cfc448e-1c96-4379-8139-03adb5ef4bb8 rdf:type owl:NamedIndividual , - aml_importer:MotorPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorPlug1_3d417e2d-9b3b-4025-90c0-225d2f12ae17 -aml_importer:ei_MotorPlug1_3d417e2d-9b3b-4025-90c0-225d2f12ae17 rdf:type owl:NamedIndividual , - aml_importer:MotorPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorPlug1_78aef019-703a-4d0e-a682-17955c9bb45c -aml_importer:ei_MotorPlug1_78aef019-703a-4d0e-a682-17955c9bb45c rdf:type owl:NamedIndividual , - aml_importer:MotorPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorPlug1_cfbea44c-35e9-4230-81f9-3d799b5a87db -aml_importer:ei_MotorPlug1_cfbea44c-35e9-4230-81f9-3d799b5a87db rdf:type owl:NamedIndividual , - aml_importer:MotorPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorPlug2_462600ad-7698-4968-9f3b-7f38052a6fc5 -aml_importer:ei_MotorPlug2_462600ad-7698-4968-9f3b-7f38052a6fc5 rdf:type owl:NamedIndividual , - aml_importer:MotorPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorPlug2_64b94804-57fa-46bf-88dc-c1707dcf5f3b -aml_importer:ei_MotorPlug2_64b94804-57fa-46bf-88dc-c1707dcf5f3b rdf:type owl:NamedIndividual , - aml_importer:MotorPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorPlug2_77af8496-b3af-4e27-86b0-0fdf30cc9e0f -aml_importer:ei_MotorPlug2_77af8496-b3af-4e27-86b0-0fdf30cc9e0f rdf:type owl:NamedIndividual , - aml_importer:MotorPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorPlug2_d1668324-4fcd-4002-9acb-5b6215fce49d -aml_importer:ei_MotorPlug2_d1668324-4fcd-4002-9acb-5b6215fce49d rdf:type owl:NamedIndividual , - aml_importer:MotorPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorSocket_06edea8e-1bd1-43f6-a847-1d0eb58f95a9 -aml_importer:ei_MotorSocket_06edea8e-1bd1-43f6-a847-1d0eb58f95a9 rdf:type owl:NamedIndividual , - aml_importer:MotorSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorSocket_0ccfc25b-fefa-4a39-a516-300776c0a425 -aml_importer:ei_MotorSocket_0ccfc25b-fefa-4a39-a516-300776c0a425 rdf:type owl:NamedIndividual , - aml_importer:MotorSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorSocket_38a06c3f-ad69-4eed-9df0-d0320219f65a -aml_importer:ei_MotorSocket_38a06c3f-ad69-4eed-9df0-d0320219f65a rdf:type owl:NamedIndividual , - aml_importer:MotorSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorSocket_4d895e1a-ce3b-471b-bd55-4cd328d4bb8e -aml_importer:ei_MotorSocket_4d895e1a-ce3b-471b-bd55-4cd328d4bb8e rdf:type owl:NamedIndividual , - aml_importer:MotorSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorSocket_4e8f851e-faac-4b92-a8db-987634653157 -aml_importer:ei_MotorSocket_4e8f851e-faac-4b92-a8db-987634653157 rdf:type owl:NamedIndividual , - aml_importer:MotorSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorSocket_8b7f2dde-0548-4459-9b33-bf7a7875e0ed -aml_importer:ei_MotorSocket_8b7f2dde-0548-4459-9b33-bf7a7875e0ed rdf:type owl:NamedIndividual , - aml_importer:MotorSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorSocket_c957622e-197f-485d-bec6-29f81153fb2f -aml_importer:ei_MotorSocket_c957622e-197f-485d-bec6-29f81153fb2f rdf:type owl:NamedIndividual , - aml_importer:MotorSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_MotorSocket_ed3aabca-267d-46c4-b511-77d151c7846f -aml_importer:ei_MotorSocket_ed3aabca-267d-46c4-b511-77d151c7846f rdf:type owl:NamedIndividual , - aml_importer:MotorSocket ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Process_59dfad55-376c-4187-be99-f38a65f6e016 -aml_importer:ei_Process_59dfad55-376c-4187-be99-f38a65f6e016 rdf:type owl:NamedIndividual , - aml_importer:PPRConnector ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Process" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Process_c07c3906-8d6a-4bf5-b727-2dee27caeec2 -aml_importer:ei_Process_c07c3906-8d6a-4bf5-b727-2dee27caeec2 rdf:type owl:NamedIndividual , - aml_importer:PPRConnector ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Process" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Product_1db172cd-14bc-4ce4-a9fe-bf99cc1598c0 -aml_importer:ei_Product_1db172cd-14bc-4ce4-a9fe-bf99cc1598c0 rdf:type owl:NamedIndividual , - aml_importer:PPRConnector ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Product" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Product_29421e10-831f-4fa1-85b0-81bb0687145c -aml_importer:ei_Product_29421e10-831f-4fa1-85b0-81bb0687145c rdf:type owl:NamedIndividual , - aml_importer:PPRConnector ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Product" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_041B7419-8770-4264-A1B6-C418D01A33A7 -aml_importer:ei_Representation_041B7419-8770-4264-A1B6-C418D01A33A7 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_07592164-A934-482B-9A0E-C03D2D5F82D3 -aml_importer:ei_Representation_07592164-A934-482B-9A0E-C03D2D5F82D3 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_07776E94-CC26-4508-ACBF-4405ED336E6F -aml_importer:ei_Representation_07776E94-CC26-4508-ACBF-4405ED336E6F rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_2_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_087655E1-F357-4975-AA12-F085961CF310 -aml_importer:ei_Representation_087655E1-F357-4975-AA12-F085961CF310 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_08C53529-F700-4251-A1C8-8221E02BA4AB -aml_importer:ei_Representation_08C53529-F700-4251-A1C8-8221E02BA4AB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schlitten_1_Product.dae#Schlitten_1" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_0A462592-DE34-479F-8335-6F3233A17646 -aml_importer:ei_Representation_0A462592-DE34-479F-8335-6F3233A17646 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KL1500_3.1_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_0BF1708F-EE3C-4E4E-8BC3-13B2334D5AE2 -aml_importer:ei_Representation_0BF1708F-EE3C-4E4E-8BC3-13B2334D5AE2 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Zaunelement_775mm_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_160C2A8B-B454-4167-9405-4F182A8F2BBC -aml_importer:ei_Representation_160C2A8B-B454-4167-9405-4F182A8F2BBC rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_1853FF3C-F14C-4290-A773-BA13E8AFF421 -aml_importer:ei_Representation_1853FF3C-F14C-4290-A773-BA13E8AFF421 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_1C035F95-FD10-4A4D-AF28-C5DB3927A5C2 -aml_importer:ei_Representation_1C035F95-FD10-4A4D-AF28-C5DB3927A5C2 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_207638C0-E1DB-4262-8122-C2683C021E85 -aml_importer:ei_Representation_207638C0-E1DB-4262-8122-C2683C021E85 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KL1500_3_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_213EC99E-2846-40B6-BC4A-0887C50E6886 -aml_importer:ei_Representation_213EC99E-2846-40B6-BC4A-0887C50E6886 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_2143DD72-C0EB-4D66-A177-85E964AC33EB -aml_importer:ei_Representation_2143DD72-C0EB-4D66-A177-85E964AC33EB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_24E181ED-C8B8-4D2B-9177-501EB8B6247A -aml_importer:ei_Representation_24E181ED-C8B8-4D2B-9177-501EB8B6247A rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_2608F01B-0F93-4588-818C-4330BDCE0AAB -aml_importer:ei_Representation_2608F01B-0F93-4588-818C-4330BDCE0AAB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_276A0F61-743E-4E2F-AE66-694592F17EF1 -aml_importer:ei_Representation_276A0F61-743E-4E2F-AE66-694592F17EF1 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_27DCE7F2-DE82-4750-92D9-EE11D2C5E865 -aml_importer:ei_Representation_27DCE7F2-DE82-4750-92D9-EE11D2C5E865 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_28169D3A-3C50-430D-AD23-1EB691E18F01 -aml_importer:ei_Representation_28169D3A-3C50-430D-AD23-1EB691E18F01 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_2A7FBD92-1BAF-484F-8BE2-CA8A767DCECA -aml_importer:ei_Representation_2A7FBD92-1BAF-484F-8BE2-CA8A767DCECA rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_2AB076C7-7A08-4678-8656-10F75F03EF19 -aml_importer:ei_Representation_2AB076C7-7A08-4678-8656-10F75F03EF19 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_2DF9DCC6-90F3-41CC-A729-7B75064E6738 -aml_importer:ei_Representation_2DF9DCC6-90F3-41CC-A729-7B75064E6738 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_2E041E3E-ED0A-486D-95E7-07514A3449E9 -aml_importer:ei_Representation_2E041E3E-ED0A-486D-95E7-07514A3449E9 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_2E1271DE-F7D1-4D88-BD9D-619D9550B886 -aml_importer:ei_Representation_2E1271DE-F7D1-4D88-BD9D-619D9550B886 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_2F7473F2-CB41-493A-BB44-5FEA23ABA32E -aml_importer:ei_Representation_2F7473F2-CB41-493A-BB44-5FEA23ABA32E rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_300739F5-E2E8-4E0E-AB2A-BA27221C4BFB -aml_importer:ei_Representation_300739F5-E2E8-4E0E-AB2A-BA27221C4BFB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_32B26A25-D8D2-48B0-B82D-B7A4F58BAEF2 -aml_importer:ei_Representation_32B26A25-D8D2-48B0-B82D-B7A4F58BAEF2 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_32D1045E-5069-45BB-9DFB-DDA17BC7F27B -aml_importer:ei_Representation_32D1045E-5069-45BB-9DFB-DDA17BC7F27B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_3586C6BD-7D09-484A-9545-269973500836 -aml_importer:ei_Representation_3586C6BD-7D09-484A-9545-269973500836 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_365E06DA-69EA-4069-AB40-2999ABEAC961 -aml_importer:ei_Representation_365E06DA-69EA-4069-AB40-2999ABEAC961 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_37EE8A38-509B-49B8-8250-C2A5B87C9CC1 -aml_importer:ei_Representation_37EE8A38-509B-49B8-8250-C2A5B87C9CC1 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_3A0D834D-98AB-48FC-BCFF-86410CE25B87 -aml_importer:ei_Representation_3A0D834D-98AB-48FC-BCFF-86410CE25B87 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_3A4C1DC3-1A56-4714-B7ED-5AFB7614EEF5 -aml_importer:ei_Representation_3A4C1DC3-1A56-4714-B7ED-5AFB7614EEF5 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_3A80B19A-A9AE-489C-89CC-4BF9407FC760 -aml_importer:ei_Representation_3A80B19A-A9AE-489C-89CC-4BF9407FC760 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_3C9EB814-E7AF-4055-A259-532B8C573B12 -aml_importer:ei_Representation_3C9EB814-E7AF-4055-A259-532B8C573B12 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzgittertuer_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_3FE655E7-FEF8-4A71-B14C-38DB1602545B -aml_importer:ei_Representation_3FE655E7-FEF8-4A71-B14C-38DB1602545B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_4085F647-5ECB-4C97-B26F-AA543878A0A8 -aml_importer:ei_Representation_4085F647-5ECB-4C97-B26F-AA543878A0A8 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_42DCF521-EC77-44FA-8A81-B0CCA35E956C -aml_importer:ei_Representation_42DCF521-EC77-44FA-8A81-B0CCA35E956C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_4346C9F9-6E47-466C-9C60-1D07E54AEBC8 -aml_importer:ei_Representation_4346C9F9-6E47-466C-9C60-1D07E54AEBC8 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_4983A3A2-9A99-476E-A259-DCC1CEDDDF55 -aml_importer:ei_Representation_4983A3A2-9A99-476E-A259-DCC1CEDDDF55 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_4ED6E31F-5195-4D55-995B-925FEE990FBA -aml_importer:ei_Representation_4ED6E31F-5195-4D55-995B-925FEE990FBA rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_51F0CD67-7EE3-486D-8C73-5CF1D641B117 -aml_importer:ei_Representation_51F0CD67-7EE3-486D-8C73-5CF1D641B117 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_56329413-4E68-4697-B325-4EB92177B090 -aml_importer:ei_Representation_56329413-4E68-4697-B325-4EB92177B090 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_569A7F6B-2B90-433C-B5CD-FD8CDD8C568B -aml_importer:ei_Representation_569A7F6B-2B90-433C-B5CD-FD8CDD8C568B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_569A87C7-5BFB-438C-9C96-8B080C3C6569 -aml_importer:ei_Representation_569A87C7-5BFB-438C-9C96-8B080C3C6569 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Tore_A_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_59FC8794-015E-47D5-B088-E91FE5B7042D -aml_importer:ei_Representation_59FC8794-015E-47D5-B088-E91FE5B7042D rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_5A399DBE-E9CA-4D22-9B00-86E93A5B9CD8 -aml_importer:ei_Representation_5A399DBE-E9CA-4D22-9B00-86E93A5B9CD8 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/SPS_Schrank_1200x2000x500_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_5D06EB89-14A6-45A2-B0F6-E9B81D7B0772 -aml_importer:ei_Representation_5D06EB89-14A6-45A2-B0F6-E9B81D7B0772 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_5D43F4AA-F86B-423B-9A36-49228D65F08F -aml_importer:ei_Representation_5D43F4AA-F86B-423B-9A36-49228D65F08F rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_5F0ADF50-9691-4241-89E0-E1EDA0354705 -aml_importer:ei_Representation_5F0ADF50-9691-4241-89E0-E1EDA0354705 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_62B4B848-BFDC-4495-8680-8FC6872659F3 -aml_importer:ei_Representation_62B4B848-BFDC-4495-8680-8FC6872659F3 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_645B6406-D0BE-4F34-BB4C-94771B578F1D -aml_importer:ei_Representation_645B6406-D0BE-4F34-BB4C-94771B578F1D rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_64ABC105-24AC-4350-81D7-88966C99BF48 -aml_importer:ei_Representation_64ABC105-24AC-4350-81D7-88966C99BF48 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_6571DCB9-A8B9-4A6F-89A3-1229FA6138BC -aml_importer:ei_Representation_6571DCB9-A8B9-4A6F-89A3-1229FA6138BC rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_658227F1-A512-4781-8046-1B78EAF14360 -aml_importer:ei_Representation_658227F1-A512-4781-8046-1B78EAF14360 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_66264A05-382C-41A1-9E78-B61C93B74A96 -aml_importer:ei_Representation_66264A05-382C-41A1-9E78-B61C93B74A96 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_6B6F83ED-EFBC-4EDA-9261-3A447B94DF5C -aml_importer:ei_Representation_6B6F83ED-EFBC-4EDA-9261-3A447B94DF5C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Materialbereitstellung_A_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_6B79A914-C147-4410-AEE8-B963A6ABA00F -aml_importer:ei_Representation_6B79A914-C147-4410-AEE8-B963A6ABA00F rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_6F3AEA34-D348-41A8-BA72-89D80B77D729 -aml_importer:ei_Representation_6F3AEA34-D348-41A8-BA72-89D80B77D729 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_6F680005-56C9-4A1A-B001-659DACC930CE -aml_importer:ei_Representation_6F680005-56C9-4A1A-B001-659DACC930CE rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_6FE99409-18FD-4091-B0EB-26699CF84285 -aml_importer:ei_Representation_6FE99409-18FD-4091-B0EB-26699CF84285 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_6FF63352-C85A-44D3-868D-F5B7B977B8BD -aml_importer:ei_Representation_6FF63352-C85A-44D3-868D-F5B7B977B8BD rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063199800000_001.1_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_734AD298-632E-4E34-823D-399224D207A7 -aml_importer:ei_Representation_734AD298-632E-4E34-823D-399224D207A7 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_74228306-7229-4E67-B3A7-66FA39D6BC9D -aml_importer:ei_Representation_74228306-7229-4E67-B3A7-66FA39D6BC9D rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_74CF2758-C2F7-4C9C-9805-AD0BE27D4CB7 -aml_importer:ei_Representation_74CF2758-C2F7-4C9C-9805-AD0BE27D4CB7 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schlitten_Product.dae#Schlitten" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_773AC0AC-DCD8-4BEA-B7D0-AB748A336E92 -aml_importer:ei_Representation_773AC0AC-DCD8-4BEA-B7D0-AB748A336E92 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_7ADA36A4-C4F9-48EE-8EFF-AD7AB1365BB5 -aml_importer:ei_Representation_7ADA36A4-C4F9-48EE-8EFF-AD7AB1365BB5 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_7BA2129E-5C48-4F56-A2B9-395566413D75 -aml_importer:ei_Representation_7BA2129E-5C48-4F56-A2B9-395566413D75 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_7D3F9BC8-12C1-47CF-988E-CB99906F0A1B -aml_importer:ei_Representation_7D3F9BC8-12C1-47CF-988E-CB99906F0A1B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/T510198_7_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_827A12D9-F83E-4276-8741-58ED0E848D0E -aml_importer:ei_Representation_827A12D9-F83E-4276-8741-58ED0E848D0E rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Peripherie_A_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_8D49D096-625E-46F8-88E3-A2622D385CE6 -aml_importer:ei_Representation_8D49D096-625E-46F8-88E3-A2622D385CE6 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_8D4DE416-D829-48EB-BE69-C8455E4952DB -aml_importer:ei_Representation_8D4DE416-D829-48EB-BE69-C8455E4952DB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_8D671A40-A943-4D73-A015-6C29BB33F97E -aml_importer:ei_Representation_8D671A40-A943-4D73-A015-6C29BB33F97E rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_8F6D40ED-CA1B-42AC-BA35-763748533648 -aml_importer:ei_Representation_8F6D40ED-CA1B-42AC-BA35-763748533648 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_90269BD9-D7F6-4C26-B852-5F4A9B5D4ECD -aml_importer:ei_Representation_90269BD9-D7F6-4C26-B852-5F4A9B5D4ECD rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_91C60239-4DC6-4B63-B6A6-D4FB49CDCA2C -aml_importer:ei_Representation_91C60239-4DC6-4B63-B6A6-D4FB49CDCA2C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_9628D4AC-CF41-4793-9AD2-42CF76B38842 -aml_importer:ei_Representation_9628D4AC-CF41-4793-9AD2-42CF76B38842 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_96A399E2-BBD1-4049-A1BE-4FD1F48BB85B -aml_importer:ei_Representation_96A399E2-BBD1-4049-A1BE-4FD1F48BB85B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/JA01732_REV02_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_96ECB4B5-6064-49F8-BA98-8E3D316FBA92 -aml_importer:ei_Representation_96ECB4B5-6064-49F8-BA98-8E3D316FBA92 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_96FAB428-41F9-476D-8DCF-C66F6968183C -aml_importer:ei_Representation_96FAB428-41F9-476D-8DCF-C66F6968183C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_97EC293B-56FD-4FE8-A837-981070F4B323 -aml_importer:ei_Representation_97EC293B-56FD-4FE8-A837-981070F4B323 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_1_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_9FD125EE-ED2C-4F38-80C3-D52078B53D48 -aml_importer:ei_Representation_9FD125EE-ED2C-4F38-80C3-D52078B53D48 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_A01832C3-2C2E-4687-A615-0F8AB2364ABC -aml_importer:ei_Representation_A01832C3-2C2E-4687-A615-0F8AB2364ABC rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_A0F62C4D-A68D-4C23-9107-E7D8680DD97B -aml_importer:ei_Representation_A0F62C4D-A68D-4C23-9107-E7D8680DD97B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_A28D9B44-DF73-480E-99AD-C2CC5E704FEE -aml_importer:ei_Representation_A28D9B44-DF73-480E-99AD-C2CC5E704FEE rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_A53433C2-43AC-4BC1-9667-491E627DAFDD -aml_importer:ei_Representation_A53433C2-43AC-4BC1-9667-491E627DAFDD rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_A5AE5EF4-AE56-428B-954D-92945F1BDAAE -aml_importer:ei_Representation_A5AE5EF4-AE56-428B-954D-92945F1BDAAE rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_A612DA04-C947-48BC-8556-09B6A6ED73ED -aml_importer:ei_Representation_A612DA04-C947-48BC-8556-09B6A6ED73ED rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_A6B2E11C-BBFD-4248-88A8-A606164886B2 -aml_importer:ei_Representation_A6B2E11C-BBFD-4248-88A8-A606164886B2 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_A7E06243-E977-4994-93A5-E2B638F47BAB -aml_importer:ei_Representation_A7E06243-E977-4994-93A5-E2B638F47BAB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_AD2FB08A-F868-4385-8A8A-E05B681DEB5E -aml_importer:ei_Representation_AD2FB08A-F868-4385-8A8A-E05B681DEB5E rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_B0784176-AC01-4D65-B993-9A04D8244BCC -aml_importer:ei_Representation_B0784176-AC01-4D65-B993-9A04D8244BCC rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_B0D18424-EDDA-4427-B8FF-5F93810A1EBD -aml_importer:ei_Representation_B0D18424-EDDA-4427-B8FF-5F93810A1EBD rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_B51229A6-6E99-46CE-A079-54A47478155C -aml_importer:ei_Representation_B51229A6-6E99-46CE-A079-54A47478155C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_B65169F0-9765-40BE-904A-4B9F60B3C413 -aml_importer:ei_Representation_B65169F0-9765-40BE-904A-4B9F60B3C413 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_B85D2454-3205-4346-B4E5-E27451049CCA -aml_importer:ei_Representation_B85D2454-3205-4346-B4E5-E27451049CCA rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_B963E0D8-CD30-41A9-A720-8C7F6C246A26 -aml_importer:ei_Representation_B963E0D8-CD30-41A9-A720-8C7F6C246A26 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_BA700FEB-B272-4A2F-905A-68509906E8FB -aml_importer:ei_Representation_BA700FEB-B272-4A2F-905A-68509906E8FB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_BAB90778-2C84-4FF7-A237-89686A4B9A36 -aml_importer:ei_Representation_BAB90778-2C84-4FF7-A237-89686A4B9A36 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_BC7066CC-91E1-4984-95C6-7ABD53814C2F -aml_importer:ei_Representation_BC7066CC-91E1-4984-95C6-7ABD53814C2F rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_BD4A75D6-499A-4C70-978C-FF43D1C39A1B -aml_importer:ei_Representation_BD4A75D6-499A-4C70-978C-FF43D1C39A1B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_BFDB1D5A-AB22-4C79-923C-36E447FC9198 -aml_importer:ei_Representation_BFDB1D5A-AB22-4C79-923C-36E447FC9198 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_C17256CA-C14D-482E-A569-C3F7573CEF98 -aml_importer:ei_Representation_C17256CA-C14D-482E-A569-C3F7573CEF98 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_C5A8BFF3-71E0-47B7-BC63-138E818CD550 -aml_importer:ei_Representation_C5A8BFF3-71E0-47B7-BC63-138E818CD550 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_C6CD5063-8F95-4C5B-BF50-ADCBAFDD77BB -aml_importer:ei_Representation_C6CD5063-8F95-4C5B-BF50-ADCBAFDD77BB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_C76C35D1-16D3-45CC-B9FE-2D68607B5ABB -aml_importer:ei_Representation_C76C35D1-16D3-45CC-B9FE-2D68607B5ABB rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/59230001_FIX_EF310_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_C7BA8C03-B866-4C9C-9AE0-40FE849CD27A -aml_importer:ei_Representation_C7BA8C03-B866-4C9C-9AE0-40FE849CD27A rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_C7BDE75A-7AFF-4649-BD28-2DDC46149F36 -aml_importer:ei_Representation_C7BDE75A-7AFF-4649-BD28-2DDC46149F36 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzgittertuer_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_C8C9A85D-2494-493A-AD56-54509CB9A40A -aml_importer:ei_Representation_C8C9A85D-2494-493A-AD56-54509CB9A40A rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_CB25117E-6041-4191-8F44-8DF18C1C0453 -aml_importer:ei_Representation_CB25117E-6041-4191-8F44-8DF18C1C0453 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_3_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_CB398B71-D498-4994-B0EA-51B6F3D39F71 -aml_importer:ei_Representation_CB398B71-D498-4994-B0EA-51B6F3D39F71 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_CBB61637-70FA-4DF6-8258-E150D9F7FC65 -aml_importer:ei_Representation_CBB61637-70FA-4DF6-8258-E150D9F7FC65 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_CE825AD5-1C99-47E2-B0F9-5F12D304C94C -aml_importer:ei_Representation_CE825AD5-1C99-47E2-B0F9-5F12D304C94C rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_CF1BC4B3-2145-4EE5-9414-BDE375E84818 -aml_importer:ei_Representation_CF1BC4B3-2145-4EE5-9414-BDE375E84818 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_CFD78EB8-CA34-4CF2-B9DC-1C7F54D2520B -aml_importer:ei_Representation_CFD78EB8-CA34-4CF2-B9DC-1C7F54D2520B rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_D5A3A3BB-07C6-404F-9281-AA2781DBE9AF -aml_importer:ei_Representation_D5A3A3BB-07C6-404F-9281-AA2781DBE9AF rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_D91E4EE8-36FC-4A96-B1AD-D74806A58E83 -aml_importer:ei_Representation_D91E4EE8-36FC-4A96-B1AD-D74806A58E83 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_4_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_D9DF7FC1-FACB-44E1-8C20-72948C52CC73 -aml_importer:ei_Representation_D9DF7FC1-FACB-44E1-8C20-72948C52CC73 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_DCD42D09-0521-4D8B-8260-0871A90200E6 -aml_importer:ei_Representation_DCD42D09-0521-4D8B-8260-0871A90200E6 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_DCEE9D53-0DF2-4C1F-8C5E-0C7B2B5D5E0D -aml_importer:ei_Representation_DCEE9D53-0DF2-4C1F-8C5E-0C7B2B5D5E0D rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "implicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_DE5E7FC2-D648-43E0-B047-AB7E219D5453 -aml_importer:ei_Representation_DE5E7FC2-D648-43E0-B047-AB7E219D5453 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/KR240R2700prime_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_E064A3CA-9FCC-4C17-B5B4-0623F1E24608 -aml_importer:ei_Representation_E064A3CA-9FCC-4C17-B5B4-0623F1E24608 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_E4D4046E-398B-4730-B707-224DED4A7E66 -aml_importer:ei_Representation_E4D4046E-398B-4730-B707-224DED4A7E66 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_E8F7757E-50FE-4AD9-89A8-30C588AE2073 -aml_importer:ei_Representation_E8F7757E-50FE-4AD9-89A8-30C588AE2073 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzgittertuer_Product.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_E9017613-E22F-479F-857C-845BEBC4DB41 -aml_importer:ei_Representation_E9017613-E22F-479F-857C-845BEBC4DB41 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_E91B6FE9-D465-46DA-956F-59ABD2603DA9 -aml_importer:ei_Representation_E91B6FE9-D465-46DA-956F-59ABD2603DA9 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_E9C64C01-B228-41AE-8294-050FD9C5D649 -aml_importer:ei_Representation_E9C64C01-B228-41AE-8294-050FD9C5D649 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_EA6A0D28-0713-4FC5-B4BD-8109D6117526 -aml_importer:ei_Representation_EA6A0D28-0713-4FC5-B4BD-8109D6117526 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_EEBE0762-5E41-4D29-A7C5-BF6F2FA3389D -aml_importer:ei_Representation_EEBE0762-5E41-4D29-A7C5-BF6F2FA3389D rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_F54AAF7A-DC11-4E0B-BEA0-A764532134B3 -aml_importer:ei_Representation_F54AAF7A-DC11-4E0B-BEA0-A764532134B3 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_F74F923B-416E-4B7E-8D27-44BA0A621A05 -aml_importer:ei_Representation_F74F923B-416E-4B7E-8D27-44BA0A621A05 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Representation_FB34922C-06B9-452B-B951-CFAF2B5B40A4 -aml_importer:ei_Representation_FB34922C-06B9-452B-B951-CFAF2B5B40A4 rdf:type owl:NamedIndividual , - aml_importer:COLLADAInterface ; - aml_importer:hasRefType "explicit"^^rdfs:Literal ; - aml_importer:hasRefURI "./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae" ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Resource_76e731d9-164c-4a55-9818-4dfcf9089a88 -aml_importer:ei_Resource_76e731d9-164c-4a55-9818-4dfcf9089a88 rdf:type owl:NamedIndividual , - aml_importer:PPRConnector ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Resource" . - - -### http://www.ipr.kit.edu/aml_importer#ei_Resource_b660c4ab-0b21-4a62-b0bb-e5b8ae843e35 -aml_importer:ei_Resource_b660c4ab-0b21-4a62-b0bb-e5b8ae843e35 rdf:type owl:NamedIndividual , - aml_importer:PPRConnector ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Resource" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessInterface1_1856e465-4f19-4308-a9fb-5b903c6addf1 -aml_importer:ei_WirelessInterface1_1856e465-4f19-4308-a9fb-5b903c6addf1 rdf:type owl:NamedIndividual , - aml_importer:WirelessInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessInterface1_a288c0ef-c44e-4cb1-b9fe-53754023fff1 -aml_importer:ei_WirelessInterface1_a288c0ef-c44e-4cb1-b9fe-53754023fff1 rdf:type owl:NamedIndividual , - aml_importer:WirelessInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessInterface1_a3d5bb25-f7f2-4c20-8cbc-9ce7f8115a34 -aml_importer:ei_WirelessInterface1_a3d5bb25-f7f2-4c20-8cbc-9ce7f8115a34 rdf:type owl:NamedIndividual , - aml_importer:WirelessInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessInterface1_a3ff8a82-d3c1-40c8-b02c-5a622c97750c -aml_importer:ei_WirelessInterface1_a3ff8a82-d3c1-40c8-b02c-5a622c97750c rdf:type owl:NamedIndividual , - aml_importer:WirelessInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessInterface2_68cdcef0-c91a-4abb-83cb-e95450a9429d -aml_importer:ei_WirelessInterface2_68cdcef0-c91a-4abb-83cb-e95450a9429d rdf:type owl:NamedIndividual , - aml_importer:WirelessInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessInterface3_4cd4526f-ba94-407a-8b36-8f30f39dcf28 -aml_importer:ei_WirelessInterface3_4cd4526f-ba94-407a-8b36-8f30f39dcf28 rdf:type owl:NamedIndividual , - aml_importer:WirelessInterface ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface3" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessPlug1_11a45cd3-d809-43a3-b4bb-082cfdb23fa7 -aml_importer:ei_WirelessPlug1_11a45cd3-d809-43a3-b4bb-082cfdb23fa7 rdf:type owl:NamedIndividual , - aml_importer:WirelessPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessPlug1_3e07cf2a-89c0-4000-97fd-ff6fd3b3ba7a -aml_importer:ei_WirelessPlug1_3e07cf2a-89c0-4000-97fd-ff6fd3b3ba7a rdf:type owl:NamedIndividual , - aml_importer:WirelessPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessPlug1_97f811e1-694e-4b03-9f0b-4a0308462c02 -aml_importer:ei_WirelessPlug1_97f811e1-694e-4b03-9f0b-4a0308462c02 rdf:type owl:NamedIndividual , - aml_importer:WirelessPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug1" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessPlug2_1138b241-22e0-4fa1-b6ff-b3ae35dbe7da -aml_importer:ei_WirelessPlug2_1138b241-22e0-4fa1-b6ff-b3ae35dbe7da rdf:type owl:NamedIndividual , - aml_importer:WirelessPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessPlug2_911e7a2c-6199-4496-b4dd-a431ae2ab086 -aml_importer:ei_WirelessPlug2_911e7a2c-6199-4496-b4dd-a431ae2ab086 rdf:type owl:NamedIndividual , - aml_importer:WirelessPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ei_WirelessPlug2_a2d38962-e093-4d87-9399-5affac4a8bef -aml_importer:ei_WirelessPlug2_a2d38962-e093-4d87-9399-5affac4a8bef rdf:type owl:NamedIndividual , - aml_importer:WirelessPlug ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010ABS100_010RB_100_BA_010R1_010_W_AF138E59-0000-17AC-556E-B57B000031FD -aml_importer:ie_010ABS100_010RB_100_BA_010R1_010_W_AF138E59-0000-17AC-556E-B57B000031FD rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_010RB_100_BA_010R1_010_W_DD8D2821-6C61-4D15-B3F8-EBB55C14773D , - aml_importer:ei_Attachment_COLLADA_010RB_100_BA_010R1_010_W_865A3EED-EF8C-4AF3-8B34-29436ED3A9C1 ; - rdfs:comment "InternalElement" ; - rdfs:label "010ABS100_010RB_100_BA_010R1_010_W" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010ABS100_020RB_100_BH_020R1_010_W_AF138E59-0000-17AC-556E-B57B000031FE -aml_importer:ie_010ABS100_020RB_100_BH_020R1_010_W_AF138E59-0000-17AC-556E-B57B000031FE rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_020RB_100_BH_020R1_010_W_72D81248-6CC6-4A1C-BDAB-AB7EC677819F , - aml_importer:ei_Attachment_COLLADA_020RB_100_BH_020R1_010_W_DC79E57B-40BE-4404-811E-A8A2CFC0E0BE ; - rdfs:comment "InternalElement" ; - rdfs:label "010ABS100_020RB_100_BH_020R1_010_W" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010ABS100_AF138E59-0000-17AC-556E-B570000031F8 -aml_importer:ie_010ABS100_AF138E59-0000-17AC-556E-B570000031F8 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_A01832C3-2C2E-4687-A615-0F8AB2364ABC ; - aml_ontology:hasIE aml_importer:ie_010ABS100_010RB_100_BA_010R1_010_W_AF138E59-0000-17AC-556E-B57B000031FD , - aml_importer:ie_010ABS100_020RB_100_BH_020R1_010_W_AF138E59-0000-17AC-556E-B57B000031FE , - aml_importer:ie_010ABS100_Fahrzeug0_AF138E59-0000-17AC-556E-B57B000031FC ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-4.296263"^^rdfs:Literal ; - aml_importer:hasFrame_y "4.670705"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010ABS100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010ABS100_Fahrzeug0_AF138E59-0000-17AC-556E-B57B000031FC -aml_importer:ie_010ABS100_Fahrzeug0_AF138E59-0000-17AC-556E-B57B000031FC rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Fahrzeug0_360DF559-36ED-4A15-9AB9-CA8BC0280E00 , - aml_importer:ei_Attachment_Fahrzeug0_4A1A7113-99AB-4CB7-AFDD-83D08D170D5E ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "75"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.194684"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "3.486383"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010ABS100_Fahrzeug0" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GES191_AF138E59-0000-17AC-556E-B156000031DA -aml_importer:ie_010GES191_AF138E59-0000-17AC-556E-B156000031DA rdf:type owl:NamedIndividual , - aml_importer:Machine ; - aml_ontology:hasEI aml_importer:ei_Representation_0A462592-DE34-479F-8335-6F3233A17646 ; - aml_ontology:hasIE aml_importer:ie_010GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B159000031E0 , - aml_importer:ie_010GES191_OKF_Standard_AF138E59-0000-17AC-556E-B159000031DF , - aml_importer:ie_Schlitten_AF138E59-0000-17AC-556E-B159000031E1 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.025"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.923347"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010GES191" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B159000031E0 -aml_importer:ie_010GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B159000031E0 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_OKF_Dehnfuge_BB6DEC54-F99C-4501-9586-35B2A215FF7A , - aml_importer:ei_Attachment_OKF_Dehnfuge_24B3773A-0C05-4DA0-8F9D-05B0E1A968DF ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "-0.025"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010GES191_OKF_Dehnfuge" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GES191_OKF_Standard_AF138E59-0000-17AC-556E-B159000031DF -aml_importer:ie_010GES191_OKF_Standard_AF138E59-0000-17AC-556E-B159000031DF rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_OKF_Standard_1C85F2CF-41EE-4D14-B007-41D663428464 , - aml_importer:ei_Attachment_OKF_Standard_17077B0A-E676-4271-9388-E3BF7C6044CA ; - rdfs:comment "InternalElement" ; - rdfs:label "010GES191_OKF_Standard" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GRF141_010GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B56E000031F1 -aml_importer:ie_010GRF141_010GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B56E000031F1 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_010GRF141_A2136160067_SFK-HAB-010_E437BD91-8747-4672-8EC5-4729DB803E0A , - aml_importer:ei_Attachment_COLLADA_010GRF141_A2136160067_SFK-HAB-010_FA5D9D6D-A851-462E-AC91-9D5E453B7B18 ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_010GRF141_A2136160067_SFK-HAB-010" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GRF141_AF138E59-0000-17AC-556E-B159000031E4 -aml_importer:ie_010GRF141_AF138E59-0000-17AC-556E-B159000031E4 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_BehaviourLogicInterfaceStateChart_cbd11478-d942-4201-9151-d2e30b2dc0bb , - aml_importer:ei_LogicInterfaceTimingDiagram_d1622fae-7da4-49f0-b458-91d7ee25628c , - aml_importer:ei_Representation_6571DCB9-A8B9-4A6F-89A3-1229FA6138BC ; - aml_ontology:hasIE aml_importer:ie_010GRF141_010GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B56E000031F1 , - aml_importer:ie_010GRF141_Base1_AF138E59-0000-17AC-556E-B56E000031ED , - aml_importer:ie_010GRF141_Base2_AF138E59-0000-17AC-556E-B56E000031EE , - aml_importer:ie_010GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B56E000031F2 , - aml_importer:ie_010GRF141_Tool1_AF138E59-0000-17AC-556E-B56E000031EF , - aml_importer:ie_010GRF141_Tool2_AF138E59-0000-17AC-556E-B56E000031F0 ; - aml_importer:hasFrame_rx "53.275"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-51.967"^^rdfs:Literal ; - aml_importer:hasFrame_rz "177.879"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.413583"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.852547"^^rdfs:Literal ; - aml_importer:hasFrame_z "3.134476"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GRF141_Base1_AF138E59-0000-17AC-556E-B56E000031ED -aml_importer:ie_010GRF141_Base1_AF138E59-0000-17AC-556E-B56E000031ED rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_EFC464FF-8599-4796-9B56-F961B443C71C , - aml_importer:ei_Attachment_COLLADA_Base1_E8C48DD4-8B87-425B-95A3-CC385AB5FACC ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GRF141_Base2_AF138E59-0000-17AC-556E-B56E000031EE -aml_importer:ie_010GRF141_Base2_AF138E59-0000-17AC-556E-B56E000031EE rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base2_24EA73C7-A304-4B52-A1D7-E29406E699C5 , - aml_importer:ei_Attachment_COLLADA_Base2_FD397F7F-44FB-4E25-BB76-102543881756 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.1"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_Base2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B56E000031F2 -aml_importer:ie_010GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B56E000031F2 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_2ED52C4B-9C55-488B-B07A-F6EF75C7D2D1 , - aml_importer:ei_Attachment_KRxxxRultra_6_1_E0F4BB71-0B46-47F7-8EAB-DA15C1B77344 ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GRF141_Tool1_AF138E59-0000-17AC-556E-B56E000031EF -aml_importer:ie_010GRF141_Tool1_AF138E59-0000-17AC-556E-B56E000031EF rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool1_452A16D7-870E-436F-BE16-55F16F085814 , - aml_importer:ei_Attachment_Tool1_0F420D64-D074-49B3-96C2-6DD195919A40 ; - aml_importer:hasFrame_rx "-180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.354"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.015"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.613949"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010GRF141_Tool2_AF138E59-0000-17AC-556E-B56E000031F0 -aml_importer:ie_010GRF141_Tool2_AF138E59-0000-17AC-556E-B56E000031F0 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool2_655093C7-7BDB-4F13-8FC7-E89092B8E9C0 , - aml_importer:ei_Attachment_Tool2_D32F8756-B290-460E-A668-74370A2D9F9D ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.583734"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.572997"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.765788"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010RB_100_AF138E59-0000-17AC-556E-B124000031B4 -aml_importer:ie_010RB_100_AF138E59-0000-17AC-556E-B124000031B4 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_010GES191_AF138E59-0000-17AC-556E-B156000031DA , - aml_importer:ie_010GRF141_AF138E59-0000-17AC-556E-B159000031E4 , - aml_importer:ie_010RB_100_AF138E59-0000-17AC-556E-B155000031D6 , - aml_importer:ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5 ; - rdfs:comment "InternalElement" ; - rdfs:label "010RB_100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010RB_100_AF138E59-0000-17AC-556E-B155000031D6 -aml_importer:ie_010RB_100_AF138E59-0000-17AC-556E-B155000031D6 rdf:type owl:NamedIndividual , - aml_importer:ControlCabinet ; - aml_ontology:hasEI aml_importer:ei_Representation_4346C9F9-6E47-466C-9C60-1D07E54AEBC8 ; - aml_ontology:hasIE aml_importer:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , - aml_importer:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-2.272745"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.942511"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010RB_100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5 -aml_importer:ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5 rdf:type owl:NamedIndividual , - aml_importer:Robot ; - aml_ontology:hasEI aml_importer:ei_Representation_DE5E7FC2-D648-43E0-B047-AB7E219D5453 ; - aml_ontology:hasIE aml_importer:ie_010RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B155000031CE , - aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031CF , - aml_importer:ie_Portlist_e0f59bb3-daa6-4af9-ac74-e89e33084015 , - aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B155000031D3 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-2.053096"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.923347"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.007"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B155000031CE -aml_importer:ie_010RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B155000031CE rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Schlitten_E643F71E-4C00-4B8C-A690-F52BC12842F0 , - aml_importer:ei_Attachment_Schlitten_FC5D79A1-AC60-478E-BCBA-D411F5E20323 ; - rdfs:comment "InternalElement" ; - rdfs:label "010RB_100_KR240R2700prime__Schlitten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010VRE100_010RB_100_BH_010R1_010_W_AF138E59-0000-17AC-556E-B56E000031F4 -aml_importer:ie_010VRE100_010RB_100_BH_010R1_010_W_AF138E59-0000-17AC-556E-B56E000031F4 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_010RB_100_BH_010R1_010_W_F9BFE6F1-2169-4B07-B210-1C0EF6BCC960 ; - rdfs:comment "InternalElement" ; - rdfs:label "010VRE100_010RB_100_BH_010R1_010_W" . - - -### http://www.ipr.kit.edu/aml_importer#ie_010VRE100_AF138E59-0000-17AC-556E-B56E000031F3 -aml_importer:ie_010VRE100_AF138E59-0000-17AC-556E-B56E000031F3 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_010VRE100_010RB_100_BH_010R1_010_W_AF138E59-0000-17AC-556E-B56E000031F4 , - aml_importer:ie_T510198_7_AF138E59-0000-17AC-556E-B56E000031F5 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "010VRE100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020GES191_AF138E59-0000-17AC-556E-B5B200003226 -aml_importer:ie_020GES191_AF138E59-0000-17AC-556E-B5B200003226 rdf:type owl:NamedIndividual , - aml_importer:Machine ; - aml_ontology:hasEI aml_importer:ei_Representation_207638C0-E1DB-4262-8122-C2683C021E85 ; - aml_ontology:hasIE aml_importer:ie_020GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B5B30000322C , - aml_importer:ie_020GES191_OKF_Standard_AF138E59-0000-17AC-556E-B5B30000322B , - aml_importer:ie_Schlitten_AF138E59-0000-17AC-556E-B5B30000322D ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.575"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.923347"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "020GES191" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B5B30000322C -aml_importer:ie_020GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B5B30000322C rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_OKF_Dehnfuge_6231E7B7-B291-45A4-88B6-C880FB02C2E3 , - aml_importer:ei_Attachment_OKF_Dehnfuge_3C9C7109-3861-4AD2-BD00-0649697BD2B3 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "-0.025"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "020GES191_OKF_Dehnfuge" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020GES191_OKF_Standard_AF138E59-0000-17AC-556E-B5B30000322B -aml_importer:ie_020GES191_OKF_Standard_AF138E59-0000-17AC-556E-B5B30000322B rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_OKF_Standard_9D68AEC8-E2E4-4CA3-BADA-D624279DE758 , - aml_importer:ei_Attachment_OKF_Standard_F72D600B-0F39-45E2-A217-43F7FA85DEC0 ; - rdfs:comment "InternalElement" ; - rdfs:label "020GES191_OKF_Standard" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020GRF141_020GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B81A0000323D -aml_importer:ie_020GRF141_020GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B81A0000323D rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_020GRF141_A2136160067_SFK_HAB_010_91A891CA-B49D-4A08-A06D-C4828DE4079E , - aml_importer:ei_Attachment_COLLADA_020GRF141_A2136160067_SFK-HAB-010_2F622227-2AE5-4B4B-9AAD-42D549F55200 ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_020GRF141_A2136160067_SFK-HAB-010" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020GRF141_AF138E59-0000-17AC-556E-B5B300003230 -aml_importer:ie_020GRF141_AF138E59-0000-17AC-556E-B5B300003230 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_C7BA8C03-B866-4C9C-9AE0-40FE849CD27A ; - aml_ontology:hasIE aml_importer:ie_020GRF141_020GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B81A0000323D , - aml_importer:ie_020GRF141_Base1_AF138E59-0000-17AC-556E-B81A00003239 , - aml_importer:ie_020GRF141_FZG0_AF138E59-0000-17AC-556E-B81A0000323B , - aml_importer:ie_020GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B81A0000323C , - aml_importer:ie_020GRF141_Zentrierstift1_AF138E59-0000-17AC-556E-B81A0000323A ; - aml_importer:hasFrame_rx "-121.11"^^rdfs:Literal ; - aml_importer:hasFrame_ry "13.004"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-80.204"^^rdfs:Literal ; - aml_importer:hasFrame_x "-6.940001"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.010911"^^rdfs:Literal ; - aml_importer:hasFrame_z "3.625631"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020GRF141_Base1_AF138E59-0000-17AC-556E-B81A00003239 -aml_importer:ie_020GRF141_Base1_AF138E59-0000-17AC-556E-B81A00003239 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_466F8DA2-1F63-41EA-9808-DBC729F54146 , - aml_importer:ei_Attachment_COLLADA_Base1_8172A5D8-CB9F-4E1F-AA19-2FCF6A3E1766 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.1"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020GRF141_FZG0_AF138E59-0000-17AC-556E-B81A0000323B -aml_importer:ie_020GRF141_FZG0_AF138E59-0000-17AC-556E-B81A0000323B rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_FZG0_69314A25-6306-4E29-B36C-75FCEC09F778 , - aml_importer:ei_Attachment_FZG0_BCF6D05F-A0D3-4EA6-B9B6-5091CB038677 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.195001"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.015"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.697"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_FZG0" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B81A0000323C -aml_importer:ie_020GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B81A0000323C rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_6BB2D1F4-3AF8-486B-B6BD-F290485D0D7A , - aml_importer:ei_Attachment_KRxxxRultra_6_1_4CF14346-938B-4150-9F7C-E47B7DCF7C6E ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020GRF141_Zentrierstift1_AF138E59-0000-17AC-556E-B81A0000323A -aml_importer:ie_020GRF141_Zentrierstift1_AF138E59-0000-17AC-556E-B81A0000323A rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Zentrierstift1_54344EDF-F3C3-4B90-A2EF-96E3BC92A342 , - aml_importer:ei_Attachment_Zentrierstift1_CD98FEF5-3C32-4645-B5CD-63B4A4776EE0 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.424735"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.572998"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.605999"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_Zentrierstift1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020RB_100_AF138E59-0000-17AC-556E-B57B00003200 -aml_importer:ie_020RB_100_AF138E59-0000-17AC-556E-B57B00003200 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_020GES191_AF138E59-0000-17AC-556E-B5B200003226 , - aml_importer:ie_020GRF141_AF138E59-0000-17AC-556E-B5B300003230 , - aml_importer:ie_020RB_100_AF138E59-0000-17AC-556E-B5B000003222 , - aml_importer:ie_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B57B00003201 ; - rdfs:comment "InternalElement" ; - rdfs:label "020RB_100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020RB_100_AF138E59-0000-17AC-556E-B5B000003222 -aml_importer:ie_020RB_100_AF138E59-0000-17AC-556E-B5B000003222 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_5D06EB89-14A6-45A2-B0F6-E9B81D7B0772 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-2.267624"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.944691"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.964365"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "020RB_100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B57B00003201 -aml_importer:ie_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B57B00003201 rdf:type owl:NamedIndividual , - aml_importer:Robot ; - aml_ontology:hasEI aml_importer:ei_Representation_97EC293B-56FD-4FE8-A837-981070F4B323 ; - aml_ontology:hasIE aml_importer:ie_020RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B5B00000321A , - aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B00000321B , - aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B5B00000321F ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.217233"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.923347"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.007"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "020RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_020RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B5B00000321A -aml_importer:ie_020RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B5B00000321A rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Schlitten_C0461D83-55DA-4498-BF09-C7662CCBE621 , - aml_importer:ei_Attachment_Schlitten_1EA0D29E-7FB7-43A9-BB88-FD03CDDF9B42 ; - rdfs:comment "InternalElement" ; - rdfs:label "020RB_100_KR240R2700prime__Schlitten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030BH_256_AF138E59-0000-17AC-556E-B961000032D6 -aml_importer:ie_030BH_256_AF138E59-0000-17AC-556E-B961000032D6 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_F19732000122019015600_001_zb_gestell_fa.1_AF138E59-0000-17AC-556E-B961000032D7 , - , - ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-37.258"^^rdfs:Literal ; - aml_importer:hasFrame_x "-8.368737"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.346279"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030BH_256" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030DS_251_AF138E59-0000-17AC-556E-B8F6000032C7 -aml_importer:ie_030DS_251_AF138E59-0000-17AC-556E-B8F6000032C7 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030DS_251_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F6000032C8 , - aml_importer:ie_F19704000046499800797_001_bez_axis.1_AF138E59-0000-17AC-556E-B8F6000032CC , - aml_importer:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_AF138E59-0000-17AC-556E-B8F6000032CE ; - aml_importer:hasFrame_rx "73.172"^^rdfs:Literal ; - aml_importer:hasFrame_ry "34.473"^^rdfs:Literal ; - aml_importer:hasFrame_rz "97.709"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.491077"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.60465"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.650281"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030DS_251" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030DS_251_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F6000032C8 -aml_importer:ie_030DS_251_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F6000032C8 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_KRxxxRultra_6_1_13C77DE5-A517-4144-A4B8-ABA4916BE7D1 ; - rdfs:comment "InternalElement" ; - rdfs:label "030DS_251_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKF170_030RB_100_KAPPENFRAESEN_AF138E59-0000-17AC-556E-B8B600003298 -aml_importer:ie_030EKF170_030RB_100_KAPPENFRAESEN_AF138E59-0000-17AC-556E-B8B600003298 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_KAPPENFRAESEN_036534DF-B746-49E4-A2A6-673718C355A4 , - aml_importer:ei_Attachment_COLLADA_030RB_100_KAPPENFRAESEN_44DF7F6F-DBD2-46BC-B6AF-2C165FB00B07 ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF170_030RB_100_KAPPENFRAESEN" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKF170_AF138E59-0000-17AC-556E-B8B500003291 -aml_importer:ie_030EKF170_AF138E59-0000-17AC-556E-B8B500003291 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_C76C35D1-16D3-45CC-B9FE-2D68607B5ABB ; - aml_ontology:hasIE aml_importer:ie_030EKF170_030RB_100_KAPPENFRAESEN_AF138E59-0000-17AC-556E-B8B600003298 , - aml_importer:ie_drehen_fraeser_horizontal_AF138E59-0000-17AC-556E-B8B600003299 ; - aml_importer:hasFrame_rx "90"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.598677"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.208313"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF170" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKF370_AF138E59-0000-17AC-556E-BC0100003311 -aml_importer:ie_030EKF370_AF138E59-0000-17AC-556E-BC0100003311 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_6FF63352-C85A-44D3-868D-F5B7B977B8BD ; - aml_ontology:hasIE aml_importer:ie_030EKF370_Base1_AF138E59-0000-17AC-556E-BC0300003315 , - aml_importer:ie_030EKF370_Tool1_AF138E59-0000-17AC-556E-BC0300003316 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "45"^^rdfs:Literal ; - aml_importer:hasFrame_x "-10.299504"^^rdfs:Literal ; - aml_importer:hasFrame_y "4.364677"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF370" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKF370_Base1_AF138E59-0000-17AC-556E-BC0300003315 -aml_importer:ie_030EKF370_Base1_AF138E59-0000-17AC-556E-BC0300003315 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_DFFFD347-BA14-4528-A395-6B5BC053FEC3 , - aml_importer:ei_Attachment_COLLADA_Base1_B037040B-1EA1-4EC9-9BA3-0B0C02C43FC6 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-15"^^rdfs:Literal ; - aml_importer:hasFrame_x "2.379211"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.319617"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF370_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKF370_Tool1_AF138E59-0000-17AC-556E-BC0300003316 -aml_importer:ie_030EKF370_Tool1_AF138E59-0000-17AC-556E-BC0300003316 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool1_4BCB21AF-4184-46D9-BD5E-5719AB80C0FD , - aml_importer:ei_Attachment_Tool1_E1C085CF-7830-426E-B52A-D51356DA3EA1 ; - aml_importer:hasFrame_rx "-19.512"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-41.394"^^rdfs:Literal ; - aml_importer:hasFrame_rz "13.187"^^rdfs:Literal ; - aml_importer:hasFrame_x "2.233052"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.377786"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.716137"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF370_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKW171_030RB_100_KAPPENTAUSCH_0_AF138E59-0000-17AC-556E-B8B60000329C -aml_importer:ie_030EKW171_030RB_100_KAPPENTAUSCH_0_AF138E59-0000-17AC-556E-B8B60000329C rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_KAPPENTAUSCH_0_1760FA05-8795-43B9-A6A7-86AAFEA2AA71 ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171_030RB_100_KAPPENTAUSCH_0" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKW171_AF138E59-0000-17AC-556E-B8B60000329B -aml_importer:ie_030EKW171_AF138E59-0000-17AC-556E-B8B60000329B rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030EKW171_030RB_100_KAPPENTAUSCH_0_AF138E59-0000-17AC-556E-B8B60000329C , - aml_importer:ie_030EKW171_Tool1_AF138E59-0000-17AC-556E-B8B60000329D , - aml_importer:ie_030EKW171_Tool2_AF138E59-0000-17AC-556E-B8B60000329E , - aml_importer:ie_030EKW171_Tool3_AF138E59-0000-17AC-556E-B8B60000329F , - aml_importer:ie_EKW_BR212_Kappenwechsler.1_AF138E59-0000-17AC-556E-B8B6000032A0 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "75"^^rdfs:Literal ; - aml_importer:hasFrame_x "-8.3"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKW171_Tool1_AF138E59-0000-17AC-556E-B8B60000329D -aml_importer:ie_030EKW171_Tool1_AF138E59-0000-17AC-556E-B8B60000329D rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Tool1_048F2A98-7E48-42BC-A8AA-2C5900776DD8 ; - aml_importer:hasFrame_rx "90"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.048"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.0798"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.85385"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKW171_Tool2_AF138E59-0000-17AC-556E-B8B60000329E -aml_importer:ie_030EKW171_Tool2_AF138E59-0000-17AC-556E-B8B60000329E rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Tool2_2D787351-E036-430E-8080-D7F2BABFCBCB ; - aml_importer:hasFrame_rx "-90"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.0695"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.015772"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.986772"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030EKW171_Tool3_AF138E59-0000-17AC-556E-B8B60000329F -aml_importer:ie_030EKW171_Tool3_AF138E59-0000-17AC-556E-B8B60000329F rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Tool3_374287F0-9E8B-4537-9A9E-3731543653DB ; - aml_importer:hasFrame_rx "-90"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.0705"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.015772"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.014727"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171_Tool3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030FG_111_030WZD111_AF138E59-0000-17AC-556E-B8880000326F -aml_importer:ie_030FG_111_030WZD111_AF138E59-0000-17AC-556E-B8880000326F rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030WZD111_0D5E6978-CEB2-4985-BB95-31C01B2D409B , - aml_importer:ei_Attachment_COLLADA_030WZD111_589F48BB-B346-448B-9C65-E12F58CE454A ; - rdfs:comment "InternalElement" ; - rdfs:label "030FG_111_030WZD111" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030FG_111_AF138E59-0000-17AC-556E-B8810000326A -aml_importer:ie_030FG_111_AF138E59-0000-17AC-556E-B8810000326A rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_96A399E2-BBD1-4049-A1BE-4FD1F48BB85B ; - aml_ontology:hasIE aml_importer:ie_030FG_111_030WZD111_AF138E59-0000-17AC-556E-B8880000326F , - aml_importer:ie_030FG_111_Base1_AF138E59-0000-17AC-556E-B8880000326D , - aml_importer:ie_030FG_111_Tool1_AF138E59-0000-17AC-556E-B8880000326E ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "45"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-4.499"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.740861"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.408973"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.509727"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030FG_111" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030FG_111_Base1_AF138E59-0000-17AC-556E-B8880000326D -aml_importer:ie_030FG_111_Base1_AF138E59-0000-17AC-556E-B8880000326D rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_126F6BAD-6EDB-4D6A-BB69-928D2AAAE212 , - aml_importer:ei_Attachment_COLLADA_Base1_2FE3CECB-4D96-48B3-A4E2-4681F86FFF38 ; - aml_importer:hasFrame_rx "-180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-45"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.415646"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.947177"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030FG_111_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030FG_111_Tool1_AF138E59-0000-17AC-556E-B8880000326E -aml_importer:ie_030FG_111_Tool1_AF138E59-0000-17AC-556E-B8880000326E rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool1_3DD13EE2-44AB-4A45-A68F-A5A06C09EABB , - aml_importer:ei_Attachment_Tool1_12A94D47-2AAA-4753-A0DB-03E6CA5E80AD ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030FG_111_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GES190_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B8B40000328F -aml_importer:ie_030GES190_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B8B40000328F rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_KR240R2700prime__D0EC1411-8E0B-4A32-8AE3-6E309ABA9A80 ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES190_030RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GES190_AF138E59-0000-17AC-556E-B8B40000328E -aml_importer:ie_030GES190_AF138E59-0000-17AC-556E-B8B40000328E rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030GES190_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B8B40000328F , - aml_importer:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B8B400003290 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.4"^^rdfs:Literal ; - aml_importer:hasFrame_y "7.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES190" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GES290_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B95D000032D2 -aml_importer:ie_030GES290_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B95D000032D2 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_200_KR240R2700prime__DD6B4EE3-6C4C-417B-B452-2E1DC1544709 ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES290_030RB_200_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GES290_AF138E59-0000-17AC-556E-B95D000032D1 -aml_importer:ie_030GES290_AF138E59-0000-17AC-556E-B95D000032D1 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030GES290_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B95D000032D2 , - aml_importer:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B95D000032D3 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-9.3"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES290" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GES292_AF138E59-0000-17AC-556E-B95D000032D4 -aml_importer:ie_030GES292_AF138E59-0000-17AC-556E-B95D000032D4 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_F36529100530800000000_staender_schlauchpaket_L2300_A950_H575.1_AF138E59-0000-17AC-556E-B95D000032D5 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-8.3"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES292" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GES390_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-BC0300003318 -aml_importer:ie_030GES390_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-BC0300003318 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_300_KR240R2700prime__7B0A454B-4206-4AEC-985D-7F6E9F5E4904 ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES390_030RB_300_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GES390_AF138E59-0000-17AC-556E-BC0300003317 -aml_importer:ie_030GES390_AF138E59-0000-17AC-556E-BC0300003317 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030GES390_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-BC0300003318 , - aml_importer:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-BC0300003319 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-9.7"^^rdfs:Literal ; - aml_importer:hasFrame_y "4.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES390" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GES392_AF138E59-0000-17AC-556E-BC030000331A -aml_importer:ie_030GES392_AF138E59-0000-17AC-556E-BC030000331A rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030GES392_Design1_AF138E59-0000-17AC-556E-BC030000331B , - aml_importer:ie_F197210000631025121_001_zb_hb_zangenstaender_21.1_AF138E59-0000-17AC-556E-BC030000331C ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-150"^^rdfs:Literal ; - aml_importer:hasFrame_x "-10.462436"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.29725"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES392" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GES392_Design1_AF138E59-0000-17AC-556E-BC030000331B -aml_importer:ie_030GES392_Design1_AF138E59-0000-17AC-556E-BC030000331B rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Design1_18D10496-78D6-4637-8AF5-590B4DB00E94 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "74.045"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.402858"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.670187"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.5"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES392_Design1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GRF341_030GRF341_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-BC010000330F -aml_importer:ie_030GRF341_030GRF341_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-BC010000330F rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030GRF341_A2136160067_SFK-HAB-010_8C391539-FF6A-46E7-9A60-7677B335D3C9 , - aml_importer:ei_Attachment_COLLADA_030GRF341_A2136160067_SFK-HAB-010_1A94740C-4F0E-4876-9FB6-9530F8FAB5CF ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_030GRF341_A2136160067_SFK-HAB-010" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GRF341_AF138E59-0000-17AC-556E-B99D00003303 -aml_importer:ie_030GRF341_AF138E59-0000-17AC-556E-B99D00003303 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_64ABC105-24AC-4350-81D7-88966C99BF48 ; - aml_ontology:hasIE aml_importer:ie_030GRF341_030GRF341_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-BC010000330F , - aml_importer:ie_030GRF341_Base1_AF138E59-0000-17AC-556E-BC010000330C , - aml_importer:ie_030GRF341_FZG0_AF138E59-0000-17AC-556E-BC010000330E , - aml_importer:ie_030GRF341_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-BC0100003310 , - aml_importer:ie_030GRF341_Zentrierstift1_AF138E59-0000-17AC-556E-BC010000330D ; - aml_importer:hasFrame_rx "-165.687"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-63.064"^^rdfs:Literal ; - aml_importer:hasFrame_rz "72.646"^^rdfs:Literal ; - aml_importer:hasFrame_x "-9.695639"^^rdfs:Literal ; - aml_importer:hasFrame_y "4.780569"^^rdfs:Literal ; - aml_importer:hasFrame_z "3.645245"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GRF341_Base1_AF138E59-0000-17AC-556E-BC010000330C -aml_importer:ie_030GRF341_Base1_AF138E59-0000-17AC-556E-BC010000330C rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_8B5992AA-AD9F-4022-83D2-AFE89FDBA3F1 , - aml_importer:ei_Attachment_COLLADA_Base1_19B93A9A-461C-4370-A9C5-D2EB7EE44373 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.1"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GRF341_FZG0_AF138E59-0000-17AC-556E-BC010000330E -aml_importer:ie_030GRF341_FZG0_AF138E59-0000-17AC-556E-BC010000330E rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_FZG0_157818DD-0FDE-4F50-AF13-24339EA93F6A , - aml_importer:ei_Attachment_FZG0_C696797F-9B5D-4EFD-8117-EC83FFC9393E ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.195001"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.015"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.697"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_FZG0" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GRF341_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-BC0100003310 -aml_importer:ie_030GRF341_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-BC0100003310 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_B2EECEE9-623A-4B33-86AB-018EBC3873D6 , - aml_importer:ei_Attachment_KRxxxRultra_6_1_8A4B1B26-AB6C-4B40-B204-AA82A5307F0D ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GRF341_Zentrierstift1_AF138E59-0000-17AC-556E-BC010000330D -aml_importer:ie_030GRF341_Zentrierstift1_AF138E59-0000-17AC-556E-BC010000330D rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Zentrierstift1_368AC9B3-3DA1-49F1-AC27-B3FDAB62234C , - aml_importer:ei_Attachment_Zentrierstift1_3BA752A4-2733-432C-B1DF-4B64B732FD80 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.424735"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.572998"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.605999"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_Zentrierstift1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GST100_020RB_100_BA_020R1_030_W_AF138E59-0000-17AC-556E-BC4600003329 -aml_importer:ie_030GST100_020RB_100_BA_020R1_030_W_AF138E59-0000-17AC-556E-BC4600003329 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_020RB_100_BA_020R1_030_W_FD80D8AF-19F0-44A7-8D4D-66E43BD206FA , - aml_importer:ei_Attachment_COLLADA_020RB_100_BA_020R1_030_W_8DC9CD04-338E-4FF9-B364-F1D6F49107C9 ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_020RB_100_BA_020R1_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GST100_030RB_100_FG_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332B -aml_importer:ie_030GST100_030RB_100_FG_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332B rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_FG_030R1_030_W_5D446CD1-9A21-497F-A219-1052F112BBC9 , - aml_importer:ei_Attachment_COLLADA_030RB_100_FG_030R1_030_W_2CB795DD-500C-42F5-8C6D-A86537A6B141 ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_030RB_100_FG_030R1_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GST100_030RB_100_SWP_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332A -aml_importer:ie_030GST100_030RB_100_SWP_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332A rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_SWP_030R1_030_W_5898418B-3444-4BA6-92A7-F86FFB3BA9EC , - aml_importer:ei_Attachment_COLLADA_030RB_100_SWP_030R1_030_W_1331E1B0-BB11-40AF-832D-8561245D922F ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_030RB_100_SWP_030R1_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GST100_030RB_300_BH_030R3_030_W_AF138E59-0000-17AC-556E-BC460000332C -aml_importer:ie_030GST100_030RB_300_BH_030R3_030_W_AF138E59-0000-17AC-556E-BC460000332C rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_300_BH_030R3_030_W_C55BCE74-84C9-488D-9989-BCA6C2DC6F11 , - aml_importer:ei_Attachment_COLLADA_030RB_300_BH_030R3_030_W_20DA954A-FBD3-49B6-9E1A-D97A347A6DFE ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_030RB_300_BH_030R3_030_W" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GST100_AF138E59-0000-17AC-556E-BC030000331D -aml_importer:ie_030GST100_AF138E59-0000-17AC-556E-BC030000331D rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_32D1045E-5069-45BB-9DFB-DDA17BC7F27B ; - aml_ontology:hasIE aml_importer:ie_030GST100_020RB_100_BA_020R1_030_W_AF138E59-0000-17AC-556E-BC4600003329 , - aml_importer:ie_030GST100_030RB_100_FG_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332B , - aml_importer:ie_030GST100_030RB_100_SWP_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332A , - aml_importer:ie_030GST100_030RB_300_BH_030R3_030_W_AF138E59-0000-17AC-556E-BC460000332C , - aml_importer:ie_030GST100_Fahrzeug0_AF138E59-0000-17AC-556E-BC4600003328 , - aml_importer:ie_F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile.1_AF138E59-0000-17AC-556E-BC460000332D ; - aml_importer:hasFrame_rx "-180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.5"^^rdfs:Literal ; - aml_importer:hasFrame_y "4.87"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030GST100_Fahrzeug0_AF138E59-0000-17AC-556E-BC4600003328 -aml_importer:ie_030GST100_Fahrzeug0_AF138E59-0000-17AC-556E-BC4600003328 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Fahrzeug0_D0245516-3DDF-4338-9D11-3A2A76E3FDB7 , - aml_importer:ei_Attachment_Fahrzeug0_77292A8A-4066-49ED-B22F-C5421BD3C570 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.365"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "-1.795"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_Fahrzeug0" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_100_AF138E59-0000-17AC-556E-B81A0000323F -aml_importer:ie_030RB_100_AF138E59-0000-17AC-556E-B81A0000323F rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030EKF170_AF138E59-0000-17AC-556E-B8B500003291 , - aml_importer:ie_030EKW171_AF138E59-0000-17AC-556E-B8B60000329B , - aml_importer:ie_030FG_111_AF138E59-0000-17AC-556E-B8810000326A , - aml_importer:ie_030GES190_AF138E59-0000-17AC-556E-B8B40000328E , - aml_importer:ie_030RB_100_AF138E59-0000-17AC-556E-B84F00003262 , - aml_importer:ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240 , - aml_importer:ie_030SWZ121_AF138E59-0000-17AC-556E-B89A00003273 , - aml_importer:ie_030WZA180_AF138E59-0000-17AC-556E-B8A90000327A , - aml_importer:ie_030WZA181_AF138E59-0000-17AC-556E-B8B300003284 , - aml_importer:ie_030WZD111_AF138E59-0000-17AC-556E-B88800003270 , - aml_importer:ie_030WZD121_AF138E59-0000-17AC-556E-B8A900003277 , - aml_importer:ie_030WZD180_AF138E59-0000-17AC-556E-B85100003266 ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_100_AF138E59-0000-17AC-556E-B84F00003262 -aml_importer:ie_030RB_100_AF138E59-0000-17AC-556E-B84F00003262 rdf:type owl:NamedIndividual , - aml_importer:ControlCabinet ; - aml_ontology:hasEI aml_importer:ei_Representation_66264A05-382C-41A1-9E78-B61C93B74A96 ; - aml_ontology:hasIE aml_importer:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , - aml_importer:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-4.558491"^^rdfs:Literal ; - aml_importer:hasFrame_y "7.882722"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_100_KR240R2700prime__030GES190_AF138E59-0000-17AC-556E-B84F00003259 -aml_importer:ie_030RB_100_KR240R2700prime__030GES190_AF138E59-0000-17AC-556E-B84F00003259 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030GES190_47E90BE3-E2EB-46FD-AE00-CDD36656F0BF , - aml_importer:ei_Attachment_COLLADA_030GES190_C5DC63CF-707A-4E76-BF31-7EEA8F58EB17 ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100_KR240R2700prime__030GES190" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_100_KR240R2700prime__030WZD180_AF138E59-0000-17AC-556E-B84F0000325A -aml_importer:ie_030RB_100_KR240R2700prime__030WZD180_AF138E59-0000-17AC-556E-B84F0000325A rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030WZD180_B71117BC-7C64-4EEA-B117-163BBF982EC8 , - aml_importer:ei_Attachment_COLLADA_030WZD180_8CA5E1BA-F7F7-456A-A423-D1346F8EB8E7 ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100_KR240R2700prime__030WZD180" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240 -aml_importer:ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240 rdf:type owl:NamedIndividual , - aml_importer:Robot ; - aml_ontology:hasEI aml_importer:ei_Representation_07776E94-CC26-4508-ACBF-4405ED336E6F ; - aml_ontology:hasIE aml_importer:ie_030RB_100_KR240R2700prime__030GES190_AF138E59-0000-17AC-556E-B84F00003259 , - aml_importer:ie_030RB_100_KR240R2700prime__030WZD180_AF138E59-0000-17AC-556E-B84F0000325A , - aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F0000325B , - aml_importer:ie_Portlist_bd1d02e1-de6e-43c1-8d50-d0d5d306e4af , - aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B84F0000325F ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.4"^^rdfs:Literal ; - aml_importer:hasFrame_y "7.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "1"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_200_AF138E59-0000-17AC-556E-B8BD000032A1 -aml_importer:ie_030RB_200_AF138E59-0000-17AC-556E-B8BD000032A1 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030BH_256_AF138E59-0000-17AC-556E-B961000032D6 , - aml_importer:ie_030DS_251_AF138E59-0000-17AC-556E-B8F6000032C7 , - aml_importer:ie_030GES290_AF138E59-0000-17AC-556E-B95D000032D1 , - aml_importer:ie_030GES292_AF138E59-0000-17AC-556E-B95D000032D4 , - aml_importer:ie_030RB_200_AF138E59-0000-17AC-556E-B8F4000032C3 , - aml_importer:ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2 ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_200" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_200_AF138E59-0000-17AC-556E-B8F4000032C3 -aml_importer:ie_030RB_200_AF138E59-0000-17AC-556E-B8F4000032C3 rdf:type owl:NamedIndividual , - aml_importer:ControlCabinet ; - aml_ontology:hasEI aml_importer:ei_Representation_213EC99E-2846-40B6-BC4A-0887C50E6886 ; - aml_ontology:hasIE aml_importer:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , - aml_importer:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-3.128421"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.936761"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_200" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_200_KR240R2700prime__030GES290_AF138E59-0000-17AC-556E-B8F4000032BB -aml_importer:ie_030RB_200_KR240R2700prime__030GES290_AF138E59-0000-17AC-556E-B8F4000032BB rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030GES290_97188306-9230-47AC-BA4B-87E8DD3FF857 , - aml_importer:ei_Attachment_COLLADA_030GES290_9EDB471F-C9CF-4883-AAE1-17479DC5775C ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_200_KR240R2700prime__030GES290" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2 -aml_importer:ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2 rdf:type owl:NamedIndividual , - aml_importer:Robot ; - aml_ontology:hasEI aml_importer:ei_Representation_CB25117E-6041-4191-8F44-8DF18C1C0453 ; - aml_ontology:hasIE aml_importer:ie_030RB_200_KR240R2700prime__030GES290_AF138E59-0000-17AC-556E-B8F4000032BB , - aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032BC , - aml_importer:ie_Portlist_67231c27-d1ae-4b80-af71-249d4a0e5e3e , - aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B8F4000032C0 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-9.3"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "1"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_200_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_300_AF138E59-0000-17AC-556E-B961000032DA -aml_importer:ie_030RB_300_AF138E59-0000-17AC-556E-B961000032DA rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030EKF370_AF138E59-0000-17AC-556E-BC0100003311 , - aml_importer:ie_030GES390_AF138E59-0000-17AC-556E-BC0300003317 , - aml_importer:ie_030GES392_AF138E59-0000-17AC-556E-BC030000331A , - aml_importer:ie_030GRF341_AF138E59-0000-17AC-556E-B99D00003303 , - aml_importer:ie_030RB_300_AF138E59-0000-17AC-556E-B99B000032FC , - aml_importer:ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB , - aml_importer:ie_030SWZ321_AF138E59-0000-17AC-556E-B99C00003300 ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_300" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_300_AF138E59-0000-17AC-556E-B99B000032FC -aml_importer:ie_030RB_300_AF138E59-0000-17AC-556E-B99B000032FC rdf:type owl:NamedIndividual , - aml_importer:ControlCabinet ; - aml_ontology:hasEI aml_importer:ei_Representation_BD4A75D6-499A-4C70-978C-FF43D1C39A1B ; - aml_ontology:hasIE aml_importer:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , - aml_importer:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-4.555277"^^rdfs:Literal ; - aml_importer:hasFrame_y "7.060808"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_300" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_300_KR240R2700prime__030GES390_AF138E59-0000-17AC-556E-B99B000032F4 -aml_importer:ie_030RB_300_KR240R2700prime__030GES390_AF138E59-0000-17AC-556E-B99B000032F4 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030GES390_633BC548-00F4-4CE1-B825-BD135EF6074D , - aml_importer:ei_Attachment_COLLADA_030GES390_9319CFA9-1048-470F-B1F3-6A6E67A1EB37 ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_300_KR240R2700prime__030GES390" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB -aml_importer:ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB rdf:type owl:NamedIndividual , - aml_importer:Robot ; - aml_ontology:hasEI aml_importer:ei_Representation_D91E4EE8-36FC-4A96-B1AD-D74806A58E83 ; - aml_ontology:hasIE aml_importer:ie_030RB_300_KR240R2700prime__030GES390_AF138E59-0000-17AC-556E-B99B000032F4 , - aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032F5 , - aml_importer:ie_Portlist_540cf162-d674-4e8f-a3cd-ed9ee550ef66 , - aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B99B000032F9 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-9.7"^^rdfs:Literal ; - aml_importer:hasFrame_y "4.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "1"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_300_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030SWZ121_030WZD121_AF138E59-0000-17AC-556E-B8A900003276 -aml_importer:ie_030SWZ121_030WZD121_AF138E59-0000-17AC-556E-B8A900003276 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030WZD121_50F00CDD-9E68-495C-A49C-09DF1F6B7B22 , - aml_importer:ei_Attachment_COLLADA_030WZD121_8B0F1C8B-B91C-415D-BD7F-CF87520DB364 ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ121_030WZD121" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030SWZ121_AF138E59-0000-17AC-556E-B89A00003273 -aml_importer:ie_030SWZ121_AF138E59-0000-17AC-556E-B89A00003273 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_DCD42D09-0521-4D8B-8260-0871A90200E6 ; - aml_ontology:hasIE aml_importer:ie_030SWZ121_030WZD121_AF138E59-0000-17AC-556E-B8A900003276 , - aml_importer:ie_030SWZ121_Base1_AF138E59-0000-17AC-556E-B8A900003274 , - aml_importer:ie_030SWZ121_Tool1_AF138E59-0000-17AC-556E-B8A900003275 ; - aml_importer:hasFrame_rx "180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-6.025"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.2655"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ121" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030SWZ121_Base1_AF138E59-0000-17AC-556E-B8A900003274 -aml_importer:ie_030SWZ121_Base1_AF138E59-0000-17AC-556E-B8A900003274 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_30E2039C-1CF6-4646-8B6C-9B738B72FB7D , - aml_importer:ei_Attachment_COLLADA_Base1_BF73B23D-DC9F-4523-903A-37ED84CE103F ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ121_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030SWZ121_Tool1_AF138E59-0000-17AC-556E-B8A900003275 -aml_importer:ie_030SWZ121_Tool1_AF138E59-0000-17AC-556E-B8A900003275 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool1_EEE9B392-8D3C-4478-A063-79DCB7E2301F , - aml_importer:ei_Attachment_Tool1_70506433-100A-49AF-8D7E-0C07DAA4A8CD ; - aml_importer:hasFrame_rx "180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-45"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.152"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.3705"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.8468"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ121_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030SWZ321_AF138E59-0000-17AC-556E-B99C00003300 -aml_importer:ie_030SWZ321_AF138E59-0000-17AC-556E-B99C00003300 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_28169D3A-3C50-430D-AD23-1EB691E18F01 ; - aml_ontology:hasIE aml_importer:ie_030SWZ321_Base1_AF138E59-0000-17AC-556E-B99D00003301 , - aml_importer:ie_030SWZ321_Tool1_AF138E59-0000-17AC-556E-B99D00003302 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-60"^^rdfs:Literal ; - aml_importer:hasFrame_x "-10.462436"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.29725"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.5"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ321" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030SWZ321_Base1_AF138E59-0000-17AC-556E-B99D00003301 -aml_importer:ie_030SWZ321_Base1_AF138E59-0000-17AC-556E-B99D00003301 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_3E50FB8D-C747-402F-9761-ADBD51745232 ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ321_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030SWZ321_Tool1_AF138E59-0000-17AC-556E-B99D00003302 -aml_importer:ie_030SWZ321_Tool1_AF138E59-0000-17AC-556E-B99D00003302 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Tool1_646D525A-0DE4-45B0-933E-EFF9455FAAE2 ; - aml_importer:hasFrame_rx "180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-45"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.152"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.3705"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.8468"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ321_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA180_030RB_100_tool_1_couple_sim_AF138E59-0000-17AC-556E-B8B300003282 -aml_importer:ie_030WZA180_030RB_100_tool_1_couple_sim_AF138E59-0000-17AC-556E-B8B300003282 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_tool_1_couple_sim_E0BC059A-0904-4C70-8626-146F0D882EE7 , - aml_importer:ei_Attachment_COLLADA_030RB_100_tool_1_couple_sim_3862C9A6-FF25-4F48-B866-CF7B9B76F465 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_030RB_100_tool_1_couple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA180_030RB_100_tool_1_decouple_sim_AF138E59-0000-17AC-556E-B8B300003283 -aml_importer:ie_030WZA180_030RB_100_tool_1_decouple_sim_AF138E59-0000-17AC-556E-B8B300003283 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_tool_1_decouple_sim_8D1439C3-24E4-4AC8-87C9-0272D92787B3 , - aml_importer:ei_Attachment_COLLADA_030RB_100_tool_1_decouple_sim_5F032567-1A1B-41D8-99AC-EFDB12C13A97 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_030RB_100_tool_1_decouple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA180_030SWZ121_BHF_AF138E59-0000-17AC-556E-B8B300003280 -aml_importer:ie_030WZA180_030SWZ121_BHF_AF138E59-0000-17AC-556E-B8B300003280 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030SWZ121_BHF_263FA9E4-E35A-4BAB-AC88-CAF74219E3F8 , - aml_importer:ei_Attachment_COLLADA_030SWZ121_BHF_601B6485-CF44-4919-B11B-93BC3FE21DBB ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_030SWZ121_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA180_030WZD121_BHF_AF138E59-0000-17AC-556E-B8B300003281 -aml_importer:ie_030WZA180_030WZD121_BHF_AF138E59-0000-17AC-556E-B8B300003281 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030WZD121_BHF_0EE264DF-39A6-4B00-884A-1E0ABD85A222 , - aml_importer:ei_Attachment_COLLADA_030WZD121_BHF_97760CE4-1C13-4228-A0E5-10631A607847 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_030WZD121_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA180_AF138E59-0000-17AC-556E-B8A90000327A -aml_importer:ie_030WZA180_AF138E59-0000-17AC-556E-B8A90000327A rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_24E181ED-C8B8-4D2B-9177-501EB8B6247A ; - aml_ontology:hasIE aml_importer:ie_030WZA180_030RB_100_tool_1_couple_sim_AF138E59-0000-17AC-556E-B8B300003282 , - aml_importer:ie_030WZA180_030RB_100_tool_1_decouple_sim_AF138E59-0000-17AC-556E-B8B300003283 , - aml_importer:ie_030WZA180_030SWZ121_BHF_AF138E59-0000-17AC-556E-B8B300003280 , - aml_importer:ie_030WZA180_030WZD121_BHF_AF138E59-0000-17AC-556E-B8B300003281 , - aml_importer:ie_030WZA180_Base1_AF138E59-0000-17AC-556E-B8B30000327D , - aml_importer:ie_030WZA180_Tool1_AF138E59-0000-17AC-556E-B8B30000327E , - aml_importer:ie_030WZA180_Tool2_AF138E59-0000-17AC-556E-B8B30000327F ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.7"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA180_Base1_AF138E59-0000-17AC-556E-B8B30000327D -aml_importer:ie_030WZA180_Base1_AF138E59-0000-17AC-556E-B8B30000327D rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_4D47BAAE-7E23-491F-B0BD-1F2A7CABCF5B , - aml_importer:ei_Attachment_COLLADA_Base1_28302766-3BA0-4027-8434-94686D520E36 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA180_Tool1_AF138E59-0000-17AC-556E-B8B30000327E -aml_importer:ie_030WZA180_Tool1_AF138E59-0000-17AC-556E-B8B30000327E rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool1_9FB385A5-79D9-4AF6-8AD5-9A6C2C766A90 , - aml_importer:ei_Attachment_Tool1_79B3FED3-C436-4745-8468-5D0654E01CC3 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.325"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.211893"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA180_Tool2_AF138E59-0000-17AC-556E-B8B30000327F -aml_importer:ie_030WZA180_Tool2_AF138E59-0000-17AC-556E-B8B30000327F rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool2_52C20A3E-F75C-4F73-8886-58F133554053 , - aml_importer:ei_Attachment_Tool2_E2758AB0-3CB2-4730-BD76-A584A0D73D79 ; - aml_importer:hasFrame_rx "-180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.325"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.3615"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA181_030FG_111_BHF_AF138E59-0000-17AC-556E-B8B40000328A -aml_importer:ie_030WZA181_030FG_111_BHF_AF138E59-0000-17AC-556E-B8B40000328A rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030FG_111_BHF_79059D91-AB04-4BB6-BA6E-AD38A33A9510 , - aml_importer:ei_Attachment_COLLADA_030FG_111_BHF_5A2DC66B-7582-40B3-8853-E88C71B854AB ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_030FG_111_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA181_030RB_100_tool_2_couple_sim_AF138E59-0000-17AC-556E-B8B40000328C -aml_importer:ie_030WZA181_030RB_100_tool_2_couple_sim_AF138E59-0000-17AC-556E-B8B40000328C rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_tool_2_couple_sim_DA580463-4245-43C4-AAC0-D9C908E50C4A , - aml_importer:ei_Attachment_COLLADA_030RB_100_tool_2_couple_sim_D23BC94E-1BF7-4B26-8E15-373E34E82619 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_030RB_100_tool_2_couple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA181_030RB_100_tool_2_decouple_sim_AF138E59-0000-17AC-556E-B8B40000328D -aml_importer:ie_030WZA181_030RB_100_tool_2_decouple_sim_AF138E59-0000-17AC-556E-B8B40000328D rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_tool_2_decouple_sim_A445C2AB-E18E-49C0-9166-C979457D8D18 , - aml_importer:ei_Attachment_COLLADA_030RB_100_tool_2_decouple_sim_DC9E1031-2B40-49E4-B0FE-DC8E7D3BFE95 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_030RB_100_tool_2_decouple_sim" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA181_030WZD111_BHF_AF138E59-0000-17AC-556E-B8B40000328B -aml_importer:ie_030WZA181_030WZD111_BHF_AF138E59-0000-17AC-556E-B8B40000328B rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030WZD111_BHF_066212E0-98C1-4944-B03E-A5DB727A9630 , - aml_importer:ei_Attachment_COLLADA_030WZD111_BHF_2487E0DE-6A8B-423A-ACF3-A98105130DDD ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_030WZD111_BHF" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA181_AF138E59-0000-17AC-556E-B8B300003284 -aml_importer:ie_030WZA181_AF138E59-0000-17AC-556E-B8B300003284 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_BAB90778-2C84-4FF7-A237-89686A4B9A36 ; - aml_ontology:hasIE aml_importer:ie_030WZA181_030FG_111_BHF_AF138E59-0000-17AC-556E-B8B40000328A , - aml_importer:ie_030WZA181_030RB_100_tool_2_couple_sim_AF138E59-0000-17AC-556E-B8B40000328C , - aml_importer:ie_030WZA181_030RB_100_tool_2_decouple_sim_AF138E59-0000-17AC-556E-B8B40000328D , - aml_importer:ie_030WZA181_030WZD111_BHF_AF138E59-0000-17AC-556E-B8B40000328B , - aml_importer:ie_030WZA181_Base1_AF138E59-0000-17AC-556E-B8B400003287 , - aml_importer:ie_030WZA181_Tool1_AF138E59-0000-17AC-556E-B8B400003288 , - aml_importer:ie_030WZA181_Tool2_AF138E59-0000-17AC-556E-B8B400003289 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.7"^^rdfs:Literal ; - aml_importer:hasFrame_y "7.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA181_Base1_AF138E59-0000-17AC-556E-B8B400003287 -aml_importer:ie_030WZA181_Base1_AF138E59-0000-17AC-556E-B8B400003287 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_395CD38C-0C21-4183-B681-FE4A6B0F90ED , - aml_importer:ei_Attachment_COLLADA_Base1_382D4282-542A-4B8E-888D-AA8F85A205D5 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA181_Tool1_AF138E59-0000-17AC-556E-B8B400003288 -aml_importer:ie_030WZA181_Tool1_AF138E59-0000-17AC-556E-B8B400003288 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool1_6EA88E61-6169-476D-A425-038DD482BA50 , - aml_importer:ei_Attachment_Tool1_5430BF93-D571-414C-A5BF-FBA748F8BCA1 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.325"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.211893"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZA181_Tool2_AF138E59-0000-17AC-556E-B8B400003289 -aml_importer:ie_030WZA181_Tool2_AF138E59-0000-17AC-556E-B8B400003289 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool2_44A353F1-8BE9-4797-AE4A-7AD13EFF28F9 , - aml_importer:ei_Attachment_Tool2_C16118FE-A563-45BB-8398-B75499D64F6E ; - aml_importer:hasFrame_rx "-180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.325"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.3615"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_Tool2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZD111_030FG_111_AF138E59-0000-17AC-556E-B88800003271 -aml_importer:ie_030WZD111_030FG_111_AF138E59-0000-17AC-556E-B88800003271 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030FG_111_A239FC93-5FA9-48B5-9AEC-66B1AD6974A3 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD111_030FG_111" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZD111_AF138E59-0000-17AC-556E-B88800003270 -aml_importer:ie_030WZD111_AF138E59-0000-17AC-556E-B88800003270 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030WZD111_030FG_111_AF138E59-0000-17AC-556E-B88800003271 , - aml_importer:ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B88800003272 ; - aml_importer:hasFrame_rx "4.499"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.366173"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.379494"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.420836"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD111" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZD121_030SWZ121_AF138E59-0000-17AC-556E-B8A900003278 -aml_importer:ie_030WZD121_030SWZ121_AF138E59-0000-17AC-556E-B8A900003278 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030SWZ121_D5424A35-758E-4C2F-AF2A-D59E562378E8 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD121_030SWZ121" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZD121_AF138E59-0000-17AC-556E-B8A900003277 -aml_importer:ie_030WZD121_AF138E59-0000-17AC-556E-B8A900003277 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030WZD121_030SWZ121_AF138E59-0000-17AC-556E-B8A900003278 , - aml_importer:ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B8A900003279 ; - aml_importer:hasFrame_rx "270"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-6.025"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.212946"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD121" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZD180_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B85100003267 -aml_importer:ie_030WZD180_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B85100003267 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_100_KR240R2700prime__8BC86E1D-3F3D-4855-AAC7-BF9A8EA79675 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD180_030RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZD180_AF138E59-0000-17AC-556E-B85100003266 -aml_importer:ie_030WZD180_AF138E59-0000-17AC-556E-B85100003266 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030WZD180_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B85100003267 , - aml_importer:ie_030WZD180_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B85100003268 , - aml_importer:ie_F16500000115199800458_001_458_walther.1_AF138E59-0000-17AC-556E-B85100003269 ; - aml_importer:hasFrame_rx "4.499"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.366172"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.379493"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.394861"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD180" . - - -### http://www.ipr.kit.edu/aml_importer#ie_030WZD180_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B85100003268 -aml_importer:ie_030WZD180_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B85100003268 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_KRxxxRultra_6_1_827BAC0D-8EF4-4E04-819E-0442BA477256 ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD180_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_040ABS100_030RB_300_BA_030R3_040_W_AF138E59-0000-17AC-556E-BC4600003332 -aml_importer:ie_040ABS100_030RB_300_BA_030R3_040_W_AF138E59-0000-17AC-556E-BC4600003332 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030RB_300_BA_030R3_040_W_CF88925D-65B7-41FE-BF10-236CB0C74AF2 ; - rdfs:comment "InternalElement" ; - rdfs:label "040ABS100_030RB_300_BA_030R3_040_W" . - - -### http://www.ipr.kit.edu/aml_importer#ie_040ABS100_AF138E59-0000-17AC-556E-BC4600003331 -aml_importer:ie_040ABS100_AF138E59-0000-17AC-556E-BC4600003331 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_040ABS100_030RB_300_BA_030R3_040_W_AF138E59-0000-17AC-556E-BC4600003332 , - aml_importer:ie_040ABS100_Design1_AF138E59-0000-17AC-556E-BC4600003333 , - aml_importer:ie_F19721000063203000100_001_zb_hb_ablage_001_071106.1_AF138E59-0000-17AC-556E-BC4600003334 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-11.518965"^^rdfs:Literal ; - aml_importer:hasFrame_y "4.780033"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "040ABS100" . - - -### http://www.ipr.kit.edu/aml_importer#ie_040ABS100_Design1_AF138E59-0000-17AC-556E-BC4600003333 -aml_importer:ie_040ABS100_Design1_AF138E59-0000-17AC-556E-BC4600003333 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Design1_2507C6B5-758F-4EF6-A3B9-E703DCB16513 ; - aml_importer:hasFrame_rx "-180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.225"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.13"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.37"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "040ABS100_Design1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154 -aml_importer:ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154 rdf:type owl:NamedIndividual , - aml_importer:AVServer ; - aml_ontology:hasIE aml_importer:ie_Portlist_e4d96340-7ee4-45a1-bdc0-7d972367ccb8 ; - rdfs:comment "InternalElement" ; - rdfs:label "AVSvr1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_A_AF138E59-0000-17AC-556E-BC4900003345 -aml_importer:ie_A_AF138E59-0000-17AC-556E-BC4900003345 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Einzelpfosten.1_AF138E59-0000-17AC-556E-BC4B00003352 , - aml_importer:ie_Einzelpfosten.2_AF138E59-0000-17AC-556E-BC4C00003369 , - aml_importer:ie_Einzelpfosten.3_AF138E59-0000-17AC-556E-BC4C00003380 , - aml_importer:ie_Schutzgittertuer.1_AF138E59-0000-17AC-556E-BC4E00003393 , - aml_importer:ie_Schutzgittertuer.2_AF138E59-0000-17AC-556E-BC4F00003397 , - aml_importer:ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC4B0000335D , - aml_importer:ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC4C00003363 , - aml_importer:ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC4C00003371 , - aml_importer:ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4C0000338B , - aml_importer:ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC4C00003382 , - aml_importer:ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC4C00003385 , - aml_importer:ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC4C00003388 , - aml_importer:ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC4C0000338E , - aml_importer:ie_Schutzzaun_2000x2000.10_AF138E59-0000-17AC-556E-BC4C00003360 , - aml_importer:ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC4C00003366 , - aml_importer:ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC4C0000336B , - aml_importer:ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC4C0000336E , - aml_importer:ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC4C00003374 , - aml_importer:ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC4C00003377 , - aml_importer:ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC4C0000337A , - aml_importer:ie_Schutzzaun_2000x2000.18_AF138E59-0000-17AC-556E-BC4C0000337D , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003346 , - aml_importer:ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC4B00003349 , - aml_importer:ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC4B0000334C , - aml_importer:ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC4B0000334F , - aml_importer:ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC4B00003354 , - aml_importer:ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC4B00003357 , - aml_importer:ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC4B0000335A , - aml_importer:ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003391 ; - rdfs:comment "InternalElement" ; - rdfs:label "A" . - - -### http://www.ipr.kit.edu/aml_importer#ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321 -aml_importer:ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321 rdf:type owl:NamedIndividual , - aml_importer:Server ; - aml_ontology:hasIE aml_importer:ie_Portlist_9e0353d3-876b-443b-b1b9-93bc26113d19 ; - rdfs:comment "InternalElement" ; - rdfs:label "AnalyticsSvr1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 -aml_importer:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 rdf:type owl:NamedIndividual ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "http_server" ; - aml_importer:hasCpeVendor "apache" ; - aml_importer:hasCpeVersion "2.4.17" ; - rdfs:comment "InternalElement" ; - rdfs:label "ApacheHttpServer" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b -aml_importer:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b rdf:type owl:NamedIndividual ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "http_server" ; - aml_importer:hasCpeVendor "apache" ; - aml_importer:hasCpeVersion "2.4.17" ; - rdfs:comment "InternalElement" ; - rdfs:label "ApacheHttpServer" . - - -### http://www.ipr.kit.edu/aml_importer#ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 -aml_importer:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 rdf:type owl:NamedIndividual , - aml_importer:Server ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_17feba5e-563a-40f5-88df-22bf61dbdfe5 , - aml_importer:ie_Portlist_3a2cbfe7-ef3e-4701-8903-7c9134daaabb ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "netweaver_process_integration" ; - aml_importer:hasCpeVendor "sap" ; - aml_importer:hasCpeVersion "7.50" ; - rdfs:comment "InternalElement" ; - rdfs:label "AppSvr1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_B_AF138E59-0000-17AC-556E-BC4F00003398 -aml_importer:ie_B_AF138E59-0000-17AC-556E-BC4F00003398 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Schutzgittertuer.3_AF138E59-0000-17AC-556E-BC50000033B7 , - aml_importer:ie_Schutzzaun_2000x1000.10_AF138E59-0000-17AC-556E-BC50000033A1 , - aml_importer:ie_Schutzzaun_2000x1000.11_AF138E59-0000-17AC-556E-BC50000033B1 , - aml_importer:ie_Schutzzaun_2000x1000.12_AF138E59-0000-17AC-556E-BC51000033C2 , - aml_importer:ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC50000033A5 , - aml_importer:ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC50000033A8 , - aml_importer:ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC50000033A9 , - aml_importer:ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4F00003399 , - aml_importer:ie_Schutzzaun_2000x1000.5_AF138E59-0000-17AC-556E-BC50000033BE , - aml_importer:ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC50000033AD , - aml_importer:ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC50000033AE , - aml_importer:ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC50000033B0 , - aml_importer:ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC500000339C , - aml_importer:ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC50000033AA , - aml_importer:ie_Schutzzaun_2000x2000.12_AF138E59-0000-17AC-556E-BC50000033A0 , - aml_importer:ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC50000033AB , - aml_importer:ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC50000033B3 , - aml_importer:ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC50000033B4 , - aml_importer:ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC50000033B5 , - aml_importer:ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC50000033B6 , - aml_importer:ie_Schutzzaun_2000x2000.19_AF138E59-0000-17AC-556E-BC50000033BB , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033A2 , - aml_importer:ie_Schutzzaun_2000x2000.21_AF138E59-0000-17AC-556E-BC50000033B8 , - aml_importer:ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC50000033A3 , - aml_importer:ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC50000033A4 , - aml_importer:ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC50000033AF , - aml_importer:ie_Schutzzaun_2000x2000.5_AF138E59-0000-17AC-556E-BC500000339D , - aml_importer:ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC50000033B2 , - aml_importer:ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC50000033A6 , - aml_importer:ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC50000033A7 , - aml_importer:ie_Zaunelement_775mm.1_AF138E59-0000-17AC-556E-BC50000033C1 ; - rdfs:comment "InternalElement" ; - rdfs:label "B" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Basic128RSA15_b46c3d9c-712b-4044-aa7b-eba4e1c8200e -aml_importer:ie_Basic128RSA15_b46c3d9c-712b-4044-aa7b-eba4e1c8200e rdf:type owl:NamedIndividual , - aml_importer:Basic128RSA15 ; - rdfs:comment "InternalElement" ; - rdfs:label "Basic128RSA15" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Business_3ff407a0-13b9-43a3-a26a-850bd0288d49 -aml_importer:ie_Business_3ff407a0-13b9-43a3-a26a-850bd0288d49 rdf:type owl:NamedIndividual , - aml_importer:BusinessZone ; - aml_ontology:hasIE aml_importer:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , - aml_importer:ie_Cisco1921Router_49a3e9c9-a693-4052-8084-3f2080bb0a16 , - aml_importer:ie_CiscoCatalystSwitch_754502d8-ae61-4226-b3ca-e9f30563bfba , - aml_importer:ie_CiscoFirewall_b4fd0383-bb15-4f01-b928-7113f3604980 , - aml_importer:ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b , - aml_importer:ie_LogicalNetwork_934fb791-a406-4b96-946a-e23db8c5eda9 , - aml_importer:ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b , - aml_importer:ie_PhysicalNetwork_9964d0eb-7748-42d0-8fb9-317c49c11ed2 , - aml_importer:ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - rdfs:comment "InternalElement" ; - rdfs:label "Business" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CarBodyManufacturingFacility_5872b876-25d3-4b7f-9655-c4d2422e0197 -aml_importer:ie_CarBodyManufacturingFacility_5872b876-25d3-4b7f-9655-c4d2422e0197 rdf:type owl:NamedIndividual , - aml_importer:Area ; - aml_ontology:hasIE aml_importer:ie_Business_3ff407a0-13b9-43a3-a26a-850bd0288d49 , - aml_importer:ie_CarDoorProductionLine_93a4ebb4-211e-4f43-8e3b-76fe4df635c7 , - aml_importer:ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0 ; - rdfs:comment "InternalElement" ; - rdfs:label "CarBodyManufacturingFacility" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 -aml_importer:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 rdf:type owl:NamedIndividual , - aml_importer:AutomationCellZone , - aml_importer:WorkCell ; - aml_ontology:hasIE aml_importer:ie_LogicalNetwork_4f912794-d068-4f41-91cf-5359fe0e2853 , - aml_importer:ie_PhysicalNetwork_a7427a6c-aa57-4280-8286-3fb32644cd25 , - aml_importer:ie_SpotWeldingStation_AF138E59-0000-17AC-556E-B1150000319C , - aml_importer:ie_SpotWelding_05c74cf1-7813-4999-9239-2259fcf63aee , - aml_importer:ie_Weldment_e105bfe4-4fa2-48ba-ad51-345457474775 ; - rdfs:comment "InternalElement" ; - rdfs:label "CarDoorPartWelding" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CarDoorProductionLine_93a4ebb4-211e-4f43-8e3b-76fe4df635c7 -aml_importer:ie_CarDoorProductionLine_93a4ebb4-211e-4f43-8e3b-76fe4df635c7 rdf:type owl:NamedIndividual , - aml_importer:ProductionLine ; - aml_ontology:hasIE aml_importer:ie_ControlAndProcess_fbbb181c-e0a5-4891-a96e-8ff7dba97afe , - aml_importer:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 , - aml_importer:ie_SCADA_e3f0537e-2d70-4bb2-a538-e31e2c74d8e7 ; - rdfs:comment "InternalElement" ; - rdfs:label "CarDoorProductionLine" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CarManufacturer_f1884dd8-79fe-483b-bbcd-3429d6e8b0e6 -aml_importer:ie_CarManufacturer_f1884dd8-79fe-483b-bbcd-3429d6e8b0e6 rdf:type owl:NamedIndividual , - aml_importer:Enterprise ; - aml_ontology:hasIE aml_importer:ie_Vienna_c831cade-e8b3-4698-a545-8834422d3364 ; - rdfs:comment "InternalElement" ; - rdfs:label "CarManufacturer" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Cisco1921Router_49a3e9c9-a693-4052-8084-3f2080bb0a16 -aml_importer:ie_Cisco1921Router_49a3e9c9-a693-4052-8084-3f2080bb0a16 rdf:type owl:NamedIndividual , - aml_importer:Router ; - aml_ontology:hasIE aml_importer:ie_Portlist_d6aa692a-55a6-46ed-8d0d-610e43b40ecd ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "1921_integrated_services_router" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Cisco1921Router_571cf030-3f40-4866-a3b8-0a1fa0cdfe37 -aml_importer:ie_Cisco1921Router_571cf030-3f40-4866-a3b8-0a1fa0cdfe37 rdf:type owl:NamedIndividual , - aml_importer:Router ; - aml_ontology:hasIE aml_importer:ie_Portlist_c5d58e92-b6d1-4239-afac-68cfeab5cf18 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "1921_integrated_services_router" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Cisco1921Router_73e8aa8c-6117-476e-8b67-83a1970fc969 -aml_importer:ie_Cisco1921Router_73e8aa8c-6117-476e-8b67-83a1970fc969 rdf:type owl:NamedIndividual , - aml_importer:Router ; - aml_ontology:hasIE aml_importer:ie_Portlist_cb19cccd-fafb-4b38-b812-773906e1dd49 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "1921_integrated_services_router" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Cisco1921Router_f63c0f61-7317-4a01-85f1-17cf3c457962 -aml_importer:ie_Cisco1921Router_f63c0f61-7317-4a01-85f1-17cf3c457962 rdf:type owl:NamedIndividual , - aml_importer:Router ; - aml_ontology:hasIE aml_importer:ie_Portlist_21b67549-def3-4a21-9db2-6e1c17daa0fc ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "1921_integrated_services_router" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Cisco1921Router_ff30129c-f56a-4593-9e06-0228c9bd14b9 -aml_importer:ie_Cisco1921Router_ff30129c-f56a-4593-9e06-0228c9bd14b9 rdf:type owl:NamedIndividual , - aml_importer:Router ; - aml_ontology:hasIE aml_importer:ie_Portlist_cdeea2dd-6a3e-42a3-9a70-cdaa513dcdc4 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "1921_integrated_services_router" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CiscoCatalystSwitch_34fd9397-ef4d-4ece-86dc-9fad7d8da70b -aml_importer:ie_CiscoCatalystSwitch_34fd9397-ef4d-4ece-86dc-9fad7d8da70b rdf:type owl:NamedIndividual , - aml_importer:Switch ; - aml_ontology:hasIE aml_importer:ie_Portlist_54a6baf3-2f81-4466-b196-76764b661550 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "catalyst_3000" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoCatalystSwitch" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CiscoCatalystSwitch_754502d8-ae61-4226-b3ca-e9f30563bfba -aml_importer:ie_CiscoCatalystSwitch_754502d8-ae61-4226-b3ca-e9f30563bfba rdf:type owl:NamedIndividual , - aml_importer:Switch ; - aml_ontology:hasIE aml_importer:ie_Portlist_05aab978-bf3d-467f-b16f-a60ff74a5837 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "catalyst_2820" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoCatalystSwitch" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 -aml_importer:ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 rdf:type owl:NamedIndividual , - aml_importer:Switch ; - aml_ontology:hasIE aml_importer:ie_Portlist_0b8ac3a0-75c0-4c6e-9591-bff8c66ce87c ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "catalyst_2900" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoCatalystSwitch" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CiscoCatalystSwitch_afcb7be1-18d8-4789-804c-fb80a97a29c2 -aml_importer:ie_CiscoCatalystSwitch_afcb7be1-18d8-4789-804c-fb80a97a29c2 rdf:type owl:NamedIndividual , - aml_importer:Switch ; - aml_ontology:hasIE aml_importer:ie_Portlist_5ae73d3b-44fd-4f42-bc1a-5c3b217ee997 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "catalyst_4500" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoCatalystSwitch" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CiscoFirewall_37f6480c-4cb7-4e6a-9c30-55150ba533ce -aml_importer:ie_CiscoFirewall_37f6480c-4cb7-4e6a-9c30-55150ba533ce rdf:type owl:NamedIndividual , - aml_importer:Firewall ; - aml_ontology:hasIE aml_importer:ie_Portlist_73aea3b9-26f1-43ef-adb4-2c78292ee5f5 ; - aml_importer:hasCpePart "o" ; - aml_importer:hasCpeProduct "adaptive_security_appliance_software" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "9.0.4.40" ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoFirewall" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CiscoFirewall_7a5e9be8-2e95-49e7-bdc5-1cd6b7ef3187 -aml_importer:ie_CiscoFirewall_7a5e9be8-2e95-49e7-bdc5-1cd6b7ef3187 rdf:type owl:NamedIndividual , - aml_importer:Firewall ; - aml_ontology:hasIE aml_importer:ie_Portlist_e11f7457-d2f9-4350-8445-c626b1316a97 ; - aml_importer:hasCpePart "o" ; - aml_importer:hasCpeProduct "adaptive_security_appliance_software" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "9.6.1.10" ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoFirewall" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CiscoFirewall_a3925fe5-0ac1-487b-b18f-7cfb705ce575 -aml_importer:ie_CiscoFirewall_a3925fe5-0ac1-487b-b18f-7cfb705ce575 rdf:type owl:NamedIndividual , - aml_importer:Firewall ; - aml_ontology:hasIE aml_importer:ie_Portlist_871222d1-7d4d-412d-9c10-aeef833e4b4b ; - aml_importer:hasCpePart "o" ; - aml_importer:hasCpeProduct "adaptive_security_appliance_software" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "9.1.5.10" ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoFirewall" . - - -### http://www.ipr.kit.edu/aml_importer#ie_CiscoFirewall_b4fd0383-bb15-4f01-b928-7113f3604980 -aml_importer:ie_CiscoFirewall_b4fd0383-bb15-4f01-b928-7113f3604980 rdf:type owl:NamedIndividual , - aml_importer:Firewall ; - aml_ontology:hasIE aml_importer:ie_Portlist_75c30c18-a573-40f4-af44-7c50445b4dc4 ; - aml_importer:hasCpePart "o" ; - aml_importer:hasCpeProduct "adaptive_security_appliance_software" ; - aml_importer:hasCpeVendor "cisco" ; - aml_importer:hasCpeVersion "9.1.1.4" ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoFirewall" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ControlAndProcess_fbbb181c-e0a5-4891-a96e-8ff7dba97afe -aml_importer:ie_ControlAndProcess_fbbb181c-e0a5-4891-a96e-8ff7dba97afe rdf:type owl:NamedIndividual , - aml_importer:ControlZone , - aml_importer:ProcessZone ; - aml_ontology:hasIE aml_importer:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 ; - rdfs:comment "InternalElement" ; - rdfs:label "ControlAndProcess" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ControlCabinet_76059c32-6ce6-405d-a4d0-d53172324967 -aml_importer:ie_ControlCabinet_76059c32-6ce6-405d-a4d0-d53172324967 rdf:type owl:NamedIndividual , - aml_importer:ControlCabinet ; - aml_ontology:hasIE aml_importer:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , - aml_importer:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , - aml_importer:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , - aml_importer:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - rdfs:comment "InternalElement" ; - rdfs:label "ControlCabinet" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Dummy_SPS_AF138E59-0000-17AC-556E-BC4800003337 -aml_importer:ie_Dummy_SPS_AF138E59-0000-17AC-556E-BC4800003337 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_5A399DBE-E9CA-4D22-9B00-86E93A5B9CD8 ; - aml_ontology:hasIE aml_importer:ie_Tuer_re.1_AF138E59-0000-17AC-556E-BC490000333C ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.421466"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.995599"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Dummy_SPS" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EKW_BR212_Kappenwechsler.1_AF138E59-0000-17AC-556E-B8B6000032A0 -aml_importer:ie_EKW_BR212_Kappenwechsler.1_AF138E59-0000-17AC-556E-B8B6000032A0 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_FB34922C-06B9-452B-B951-CFAF2B5B40A4 ; - rdfs:comment "InternalElement" ; - rdfs:label "EKW_BR212_Kappenwechsler.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 -aml_importer:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 rdf:type owl:NamedIndividual , - aml_importer:ERP ; - aml_ontology:hasIE aml_importer:ie_Portlist_8fe56bfd-ee80-4917-bf13-c150f58abf8d ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "netweaver" ; - aml_importer:hasCpeVendor "sap" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "ERP1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Einzelpfosten.1_AF138E59-0000-17AC-556E-BC4B00003352 -aml_importer:ie_Einzelpfosten.1_AF138E59-0000-17AC-556E-BC4B00003352 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003353 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.6"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Einzelpfosten.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Einzelpfosten.2_AF138E59-0000-17AC-556E-BC4C00003369 -aml_importer:ie_Einzelpfosten.2_AF138E59-0000-17AC-556E-BC4C00003369 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336A ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-10.675"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.575"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Einzelpfosten.2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Einzelpfosten.3_AF138E59-0000-17AC-556E-BC4C00003380 -aml_importer:ie_Einzelpfosten.3_AF138E59-0000-17AC-556E-BC4C00003380 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003381 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-11.2"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Einzelpfosten.3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EnterpriseDMZ_abdd9c9b-7894-451a-b192-a2e7a6bd24c6 -aml_importer:ie_EnterpriseDMZ_abdd9c9b-7894-451a-b192-a2e7a6bd24c6 rdf:type owl:NamedIndividual , - aml_importer:EnterpriseDmzZone ; - aml_ontology:hasIE aml_importer:ie_Cisco1921Router_73e8aa8c-6117-476e-8b67-83a1970fc969 , - aml_importer:ie_CiscoCatalystSwitch_afcb7be1-18d8-4789-804c-fb80a97a29c2 , - aml_importer:ie_CiscoFirewall_37f6480c-4cb7-4e6a-9c30-55150ba533ce , - aml_importer:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , - aml_importer:ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 , - aml_importer:ie_LogicalNetwork_9690ed3a-50d1-4c23-af4f-53e0a9e4b9ca , - aml_importer:ie_PhysicalNetwork_f6b49dd9-aaee-4be0-baab-97b1cf4d87e0 , - aml_importer:ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - rdfs:comment "InternalElement" ; - rdfs:label "EnterpriseDMZ" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Enterprise_ead68db0-74a6-4253-8e98-6b289de4cbf2 -aml_importer:ie_Enterprise_ead68db0-74a6-4253-8e98-6b289de4cbf2 rdf:type owl:NamedIndividual , - aml_importer:EnterpriseZone ; - aml_ontology:hasIE aml_importer:ie_Cisco1921Router_f63c0f61-7317-4a01-85f1-17cf3c457962 , - aml_importer:ie_LogicalNetwork_d42e7daa-0610-4c16-a9b5-1ed176ea36f8 , - aml_importer:ie_PhysicalNetwork_5e71c71d-ade4-4d68-a3b0-755081652f71 ; - rdfs:comment "InternalElement" ; - rdfs:label "Enterprise" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire10_77bdf526-dfa3-4b54-af3e-3cd95da74176 -aml_importer:ie_EthernetWire10_77bdf526-dfa3-4b54-af3e-3cd95da74176 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_c0f21b27-bf5a-4459-befb-23b245900980 , - aml_importer:ei_EthernetPlug2_b7c90d56-3709-4acc-8562-d7116bd549d1 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire10" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire11_76e8842d-07b5-42d7-9799-0afc9c9482a3 -aml_importer:ie_EthernetWire11_76e8842d-07b5-42d7-9799-0afc9c9482a3 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_f7c9ed9e-7700-4469-a7de-163190ee5eb1 , - aml_importer:ei_EthernetPlug2_f577cb67-8d22-43b5-9012-8b85b548bf81 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire11" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire12_7e8a0540-0b2a-4134-9104-cd90225839e7 -aml_importer:ie_EthernetWire12_7e8a0540-0b2a-4134-9104-cd90225839e7 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_fc9888b3-6263-465f-b6e8-59a408c705f3 , - aml_importer:ei_EthernetPlug2_a53e525a-9249-4c78-a32a-c3c10bd40034 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire12" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire13_e95adefc-5e9c-4f02-b984-26206ca96785 -aml_importer:ie_EthernetWire13_e95adefc-5e9c-4f02-b984-26206ca96785 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_037d7f93-efa5-4f61-b40a-107192afb27b , - aml_importer:ei_EthernetPlug2_eb5f8cab-ad6b-4fa0-87a1-d8d54fc229d7 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire13" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire14_21929f93-1f05-4f5d-bd82-e6365bfae17e -aml_importer:ie_EthernetWire14_21929f93-1f05-4f5d-bd82-e6365bfae17e rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_3ce929fc-cb81-4ddd-90c4-566a8dc9d524 , - aml_importer:ei_EthernetPlug2_ffed756f-eda3-490d-9730-f61888d28b0d ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire14" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire1_8b9f6562-a0ed-41a4-b347-db86249b8b6c -aml_importer:ie_EthernetWire1_8b9f6562-a0ed-41a4-b347-db86249b8b6c rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_b6584936-fa1a-491b-b25e-667326c59ae4 , - aml_importer:ei_EthernetPlug2_050f4374-4ade-4e74-910a-456afc883474 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire1_90593190-f713-49cc-8bf8-5c74c9450d0f -aml_importer:ie_EthernetWire1_90593190-f713-49cc-8bf8-5c74c9450d0f rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_b9ff7173-3281-4b88-92a1-b38f5215cab9 , - aml_importer:ei_EthernetPlug2_315a8dee-4000-417c-bd0c-007f8c1e7e3e ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire1_9975183e-3914-4352-9170-32ee457e7671 -aml_importer:ie_EthernetWire1_9975183e-3914-4352-9170-32ee457e7671 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_5aebb503-e90c-4b74-9607-8531a6743be6 , - aml_importer:ei_EthernetPlug2_3ecaf821-1a98-45a6-8578-d10894d44973 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire1_ba567ab4-68bf-4961-8c68-999ee70644f4 -aml_importer:ie_EthernetWire1_ba567ab4-68bf-4961-8c68-999ee70644f4 rdf:type owl:NamedIndividual , - aml_importer:Conduit , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_dbdcbb3f-00e1-4c8d-a548-3dc25891facb , - aml_importer:ei_EthernetPlug2_ab091654-77cb-4680-bfd9-3a1651eaf59c ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire1_c2af52c8-e16d-40f9-9b36-e00abb2f9d70 -aml_importer:ie_EthernetWire1_c2af52c8-e16d-40f9-9b36-e00abb2f9d70 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_b8ca4279-9c8f-496f-8536-ea084e697182 , - aml_importer:ei_EthernetPlug2_1614d03b-de78-4762-93d1-7ad27cf07fa6 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire2Safety_f425474b-89ee-4930-b84f-ecd5b6df88ad -aml_importer:ie_EthernetWire2Safety_f425474b-89ee-4930-b84f-ecd5b6df88ad rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_76e82eca-3004-4e04-9eee-abc322b491d1 , - aml_importer:ei_EthernetPlug2_e84fe43d-40c6-4132-a8fb-f9c49fb24553 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2Safety" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire2_3704e8f7-3e0d-4486-9ea5-dd16d0d54018 -aml_importer:ie_EthernetWire2_3704e8f7-3e0d-4486-9ea5-dd16d0d54018 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_5147fe00-748d-4b23-940f-95bfb75eb1c9 , - aml_importer:ei_EthernetPlug2_efd46995-ca03-4bf4-9491-086d617a3f0f ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire2_90ce1e2f-7908-4ad9-b3c4-eedc114221d2 -aml_importer:ie_EthernetWire2_90ce1e2f-7908-4ad9-b3c4-eedc114221d2 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_8ebc5cee-11a4-4417-99a7-6f0b757282e8 , - aml_importer:ei_EthernetPlug2_0004adea-700d-434a-a21f-b71884abe932 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire2_a232a64a-dd48-48a6-824e-b641e7a2dc2a -aml_importer:ie_EthernetWire2_a232a64a-dd48-48a6-824e-b641e7a2dc2a rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_30ab7cca-fd5b-4f17-92c3-b13af6a203f1 , - aml_importer:ei_EthernetPlug2_0c1866a0-8d5f-45ca-9d40-0ddfc0002a22 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire2_e71d3e18-31a4-4133-9455-e4a54c36efe9 -aml_importer:ie_EthernetWire2_e71d3e18-31a4-4133-9455-e4a54c36efe9 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_e74852e8-e491-4945-91d7-8f8d4f9863cf , - aml_importer:ei_EthernetPlug2_2ec69119-66c8-457e-8423-4ec33f099b20 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire2_f3573406-3d87-405f-96f7-fc824f8855c1 -aml_importer:ie_EthernetWire2_f3573406-3d87-405f-96f7-fc824f8855c1 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_61884fe6-00de-4e36-b9b0-ad4d74f455e0 , - aml_importer:ei_EthernetPlug2_2a58752f-b177-4678-ae1d-fe781e8e155e ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire3Safety_ce3bb8ef-6b08-4891-9251-a122f3fae37e -aml_importer:ie_EthernetWire3Safety_ce3bb8ef-6b08-4891-9251-a122f3fae37e rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_527adc4b-3795-4165-83fc-dd38cafc1971 , - aml_importer:ei_EthernetPlug2_bb270613-e7f8-4c44-83a0-090b1003040d ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3Safety" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire3_09746539-4300-43bd-ab98-d837d06720ba -aml_importer:ie_EthernetWire3_09746539-4300-43bd-ab98-d837d06720ba rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_a611ffbd-b94a-466a-a224-cb2ffdd51793 , - aml_importer:ei_EthernetPlug2_8f5bb8d6-2553-4b91-98c5-f05b624b2f65 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire3_661e424f-f88b-4502-b8b7-adc16bce1058 -aml_importer:ie_EthernetWire3_661e424f-f88b-4502-b8b7-adc16bce1058 rdf:type owl:NamedIndividual , - aml_importer:Conduit , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_9d8f0b1c-1839-48c7-ad79-e29f222bf27e , - aml_importer:ei_EthernetPlug2_d6388a7b-6006-4e47-936e-a3da211e0f5b ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire3_7e567996-bba2-43c4-b020-2912c02221dd -aml_importer:ie_EthernetWire3_7e567996-bba2-43c4-b020-2912c02221dd rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_272ee7e2-353b-41fc-a03e-38168d7b4a7f , - aml_importer:ei_EthernetPlug2_30cee2f3-26c5-496b-ae7c-b8caf2aa0353 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire3_91cef007-9a7a-4a5c-86e0-4e793f13fb27 -aml_importer:ie_EthernetWire3_91cef007-9a7a-4a5c-86e0-4e793f13fb27 rdf:type owl:NamedIndividual , - aml_importer:Conduit , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_e20e313c-f472-4a6a-9727-4982e028474f , - aml_importer:ei_EthernetPlug2_cde479a9-1cfc-4908-86f5-0d02683c4935 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 -aml_importer:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_c2d51637-661b-4bdd-87e4-5511903613ab , - aml_importer:ei_EthernetPlug2_2a3b0c7c-db96-420b-9280-49ac1764428d ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire4Safety_c6ac886e-b060-40f0-b786-29a99b3ba30d -aml_importer:ie_EthernetWire4Safety_c6ac886e-b060-40f0-b786-29a99b3ba30d rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_dee3d6c3-fd3b-45e8-91d0-72e1c6586630 , - aml_importer:ei_EthernetPlug2_3341c300-495b-4800-a419-7786fb539101 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4Safety" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire4_3fc70458-d951-487d-8723-6f7523425134 -aml_importer:ie_EthernetWire4_3fc70458-d951-487d-8723-6f7523425134 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_7b4c288c-c4a0-434b-b92e-2376421a1813 , - aml_importer:ei_EthernetPlug2_a332c210-a79b-42b7-a537-9776d2139ab0 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire4_597fb1b4-e011-4f3f-9f1b-b6636e27d231 -aml_importer:ie_EthernetWire4_597fb1b4-e011-4f3f-9f1b-b6636e27d231 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_c8e94303-b2d2-40e0-90f7-949eee3d885c , - aml_importer:ei_EthernetPlug2_87ef45da-2057-4860-974b-26d64f8d5f9d ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire4_75212180-e95c-412f-b10b-55cdc2da17fe -aml_importer:ie_EthernetWire4_75212180-e95c-412f-b10b-55cdc2da17fe rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_d820150e-51ac-4d9b-af41-7a8397b05d13 , - aml_importer:ei_EthernetPlug2_d1271e4c-b1b8-49b5-8fdd-504f6596f0da ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire4_ac03b247-0077-4dd9-9c1a-457733e5d2f1 -aml_importer:ie_EthernetWire4_ac03b247-0077-4dd9-9c1a-457733e5d2f1 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_cc5fabd2-7cde-485b-8843-0f082201c50d , - aml_importer:ei_EthernetPlug2_0378e1b8-e417-41d0-8e5e-6ebb9e8a816b ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire4_b7f4cd6a-cb4a-4e47-9eb3-289d1e96adfe -aml_importer:ie_EthernetWire4_b7f4cd6a-cb4a-4e47-9eb3-289d1e96adfe rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_0b97ffa8-eb93-417f-858e-a4add57b022a , - aml_importer:ei_EthernetPlug2_cb71bfd9-e012-4a10-86f0-c4c606e1e495 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire5Safety_bc0a7c8c-4372-4e43-9eef-9696da643bfb -aml_importer:ie_EthernetWire5Safety_bc0a7c8c-4372-4e43-9eef-9696da643bfb rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_4df91bcd-c9cc-4e47-b28c-d78e2c9b870f , - aml_importer:ei_EthernetPlug2_9b8d99fd-42f3-44c1-956e-da53204c151b ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5Safety" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire5_29fc14aa-a2e5-41bd-b367-30ad18d54ba6 -aml_importer:ie_EthernetWire5_29fc14aa-a2e5-41bd-b367-30ad18d54ba6 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_19f6da58-3759-4fa3-a5e4-b3dc3b49e58b , - aml_importer:ei_EthernetPlug2_0018de50-0c3f-4125-8dd5-3c964380196a ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire5_2eef1c1c-b20e-44eb-883e-3d73bfe36aab -aml_importer:ie_EthernetWire5_2eef1c1c-b20e-44eb-883e-3d73bfe36aab rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_d4e83dfa-6e8a-4b50-b492-2b16780577d6 , - aml_importer:ei_EthernetPlug2_9411fd4d-e3f0-4b82-9726-cc007318a8bf ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire5_3aba703a-de49-465f-9d41-180e2609db47 -aml_importer:ie_EthernetWire5_3aba703a-de49-465f-9d41-180e2609db47 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_9501027d-fbb2-47dd-8c06-ceb068d39fb2 , - aml_importer:ei_EthernetPlug2_d0199789-9c02-44fa-9f62-dfddb1d1a47d ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire5_4d27d192-979a-4dac-8b97-b6cee0bbeff2 -aml_importer:ie_EthernetWire5_4d27d192-979a-4dac-8b97-b6cee0bbeff2 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_9c17b165-9777-4fd3-b401-6dd4dc887c0c , - aml_importer:ei_EthernetPlug2_7024d245-4621-4b60-b25c-d0b72e30892e ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire5_d388eaf4-4b57-4bf5-9428-356dd41e5dfc -aml_importer:ie_EthernetWire5_d388eaf4-4b57-4bf5-9428-356dd41e5dfc rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_6e384bf9-7850-484b-8649-78acf992f8d5 , - aml_importer:ei_EthernetPlug2_3d19d82e-0b7d-4586-92a1-2ab4d563ab0a ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire5_d67ce17b-cfab-45b6-b824-f86f63316e39 -aml_importer:ie_EthernetWire5_d67ce17b-cfab-45b6-b824-f86f63316e39 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_479ada71-c9a1-4dc7-b139-ebdcffc5e1b8 , - aml_importer:ei_EthernetPlug2_d2968eb1-85a0-4898-bbd3-3497cdde065d ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire6_386cd97d-0556-4d99-b26f-9f656fc33e9e -aml_importer:ie_EthernetWire6_386cd97d-0556-4d99-b26f-9f656fc33e9e rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_10541cca-9d69-4f11-a2a3-b486db56df6d , - aml_importer:ei_EthernetPlug2_8750445b-c4d5-4c3e-a96a-903af449bee7 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire6_6a0aee9d-551a-4a18-b85b-ba2ed4d8fd37 -aml_importer:ie_EthernetWire6_6a0aee9d-551a-4a18-b85b-ba2ed4d8fd37 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_f6b9c06d-b470-4aef-ba06-09edc891e6fc , - aml_importer:ei_EthernetPlug2_40cd00a0-391c-4620-9527-d78c5d3b20a2 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire6_98aed8ca-f5d8-49b8-b56e-e5ee1403465d -aml_importer:ie_EthernetWire6_98aed8ca-f5d8-49b8-b56e-e5ee1403465d rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_d873bdde-d3f8-4655-b20f-11287be393e1 , - aml_importer:ei_EthernetPlug2_de1a769d-17aa-4add-a68a-b41e728abac1 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire6_f4d40a3c-1ba0-4591-b356-8a1705e9c8cb -aml_importer:ie_EthernetWire6_f4d40a3c-1ba0-4591-b356-8a1705e9c8cb rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_14548e38-9b8c-4bb9-95bd-fa0bfa038371 , - aml_importer:ei_EthernetPlug2_4eb6dc2f-dff1-4bac-a865-492f1023404b ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire6_fb01531a-025e-49e4-8f4b-a5eaaf032d76 -aml_importer:ie_EthernetWire6_fb01531a-025e-49e4-8f4b-a5eaaf032d76 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_92abd253-9f0a-45cc-a4c5-9820592a1c40 , - aml_importer:ei_EthernetPlug2_3a0cd779-4358-4a4e-9e1d-760d88d9e968 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire6_fb7b3ad5-3da4-46f1-8bae-fa74fa6b1432 -aml_importer:ie_EthernetWire6_fb7b3ad5-3da4-46f1-8bae-fa74fa6b1432 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_b5d14e27-a73d-475b-a565-2ed93c409c6a , - aml_importer:ei_EthernetPlug2_04e43dbe-c305-4ce7-9a37-6966bd003a17 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire7_0514090c-642e-4641-8d27-88259f14c373 -aml_importer:ie_EthernetWire7_0514090c-642e-4641-8d27-88259f14c373 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_558636dd-7408-4de4-8e3b-14464da10877 , - aml_importer:ei_EthernetPlug2_2a70d441-04eb-4780-a125-a1f913f715f7 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire7" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire7_78a23eb7-42df-4fb3-99b1-6e755cd22659 -aml_importer:ie_EthernetWire7_78a23eb7-42df-4fb3-99b1-6e755cd22659 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_9ac7da67-a7ec-4547-86fa-c7970ffc8cb9 , - aml_importer:ei_EthernetPlug2_046841d8-4a43-4d61-b003-35769f7e3992 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire7" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire7_9d589b04-4912-4f7a-873a-0747ff392c67 -aml_importer:ie_EthernetWire7_9d589b04-4912-4f7a-873a-0747ff392c67 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_44569ec8-9862-4ac2-baf2-96a40bbd168b , - aml_importer:ei_EthernetPlug2_0cba49f1-5272-4e65-88a2-172997506511 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire7" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire8_e1486d13-09f8-4f73-8ec7-16c2468f4a00 -aml_importer:ie_EthernetWire8_e1486d13-09f8-4f73-8ec7-16c2468f4a00 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_0b0f750d-a2fd-4a30-94d6-55f0562317c5 , - aml_importer:ei_EthernetPlug2_2eb48f3e-95ff-459f-a252-3338bb312a91 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire8" . - - -### http://www.ipr.kit.edu/aml_importer#ie_EthernetWire9_fc136087-589c-4311-aa51-174b2178a500 -aml_importer:ie_EthernetWire9_fc136087-589c-4311-aa51-174b2178a500 rdf:type owl:NamedIndividual , - aml_importer:EthernetWire ; - aml_ontology:hasEI aml_importer:ei_EthernetPlug1_fa50852d-143d-4289-a134-18299f7896cc , - aml_importer:ei_EthernetPlug2_a0c2a075-76ac-4ba9-8431-d3f34cde2777 ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire9" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F16500000115199800458_001_458_walther.1_AF138E59-0000-17AC-556E-B85100003269 -aml_importer:ie_F16500000115199800458_001_458_walther.1_AF138E59-0000-17AC-556E-B85100003269 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_A612DA04-C947-48BC-8556-09B6A6ED73ED ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.001"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F16500000115199800458_001_458_walther.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B88800003272 -aml_importer:ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B88800003272 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_37EE8A38-509B-49B8-8250-C2A5B87C9CC1 ; - rdfs:comment "InternalElement" ; - rdfs:label "F16500000115199800459_001_459_walther.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B8A900003279 -aml_importer:ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B8A900003279 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_F74F923B-416E-4B7E-8D27-44BA0A621A05 ; - rdfs:comment "InternalElement" ; - rdfs:label "F16500000115199800459_001_459_walther.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19704000046499800797_001_bez_axis.1_AF138E59-0000-17AC-556E-B8F6000032CC -aml_importer:ie_F19704000046499800797_001_bez_axis.1_AF138E59-0000-17AC-556E-B8F6000032CC rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_2608F01B-0F93-4588-818C-4330BDCE0AAB ; - rdfs:comment "InternalElement" ; - rdfs:label "F19704000046499800797_001_bez_axis.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_AF138E59-0000-17AC-556E-B8F6000032CE -aml_importer:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_AF138E59-0000-17AC-556E-B8F6000032CE rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_5D43F4AA-F86B-423B-9A36-49228D65F08F ; - aml_ontology:hasIE aml_importer:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Base1_AF138E59-0000-17AC-556E-B95D000032CF , - aml_importer:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Tool1_AF138E59-0000-17AC-556E-B95D000032D0 ; - aml_importer:hasFrame_rx "58.317"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-65.764"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-96.331"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.932093"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.629898"^^rdfs:Literal ; - aml_importer:hasFrame_z "-0.99742"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F19704000046499800797_001_cgr_klebepistole_030rb300.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Base1_AF138E59-0000-17AC-556E-B95D000032CF -aml_importer:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Base1_AF138E59-0000-17AC-556E-B95D000032CF rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_Base1_F8739A90-E798-4779-849F-F774BB6A03B6 , - aml_importer:ei_Attachment_COLLADA_Base1_BFB699E0-894D-4B81-9320-EB0CBB28500B ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.2815"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.099"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F19704000046499800797_001_cgr_klebepistole_030rb300.1_Base1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Tool1_AF138E59-0000-17AC-556E-B95D000032D0 -aml_importer:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Tool1_AF138E59-0000-17AC-556E-B95D000032D0 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Tool1_C48383DD-D80D-41A9-BC36-3DCA3D842219 , - aml_importer:ei_Attachment_Tool1_DFF80166-206E-4E3F-B82B-8198DD9DBD56 ; - aml_importer:hasFrame_rx "-180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.082"^^rdfs:Literal ; - aml_importer:hasFrame_z "-0.415346"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F19704000046499800797_001_cgr_klebepistole_030rb300.1_Tool1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile.1_AF138E59-0000-17AC-556E-BC460000332D -aml_importer:ie_F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile.1_AF138E59-0000-17AC-556E-BC460000332D rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_07592164-A934-482B-9A0E-C03D2D5F82D3 ; - aml_ontology:hasIE aml_importer:ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_AF138E59-0000-17AC-556E-BC460000332E ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_A2136160067_AF138E59-0000-17AC-556E-BC460000332F -aml_importer:ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_A2136160067_AF138E59-0000-17AC-556E-BC460000332F rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_A2136160067_586EE305-FD65-4CD6-BB11-46E5B713178A , - aml_importer:ei_Attachment_COLLADA_A2136160067_CCE893BB-DBA0-48CB-A537-3E2074D992B1 ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063102000101_001_zb_hb_gestell_01_fa.1_A2136160067" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_AF138E59-0000-17AC-556E-BC460000332E -aml_importer:ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_AF138E59-0000-17AC-556E-BC460000332E rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_3A0D834D-98AB-48FC-BCFF-86410CE25B87 ; - aml_ontology:hasIE aml_importer:ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_A2136160067_AF138E59-0000-17AC-556E-BC460000332F ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.365"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "-1.795"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063102000101_001_zb_hb_gestell_01_fa.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F197210000631025121_001_zb_hb_zangenstaender_21.1_AF138E59-0000-17AC-556E-BC030000331C -aml_importer:ie_F197210000631025121_001_zb_hb_zangenstaender_21.1_AF138E59-0000-17AC-556E-BC030000331C rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_C5A8BFF3-71E0-47B7-BC63-138E818CD550 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "105"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.976361"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.922783"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F197210000631025121_001_zb_hb_zangenstaender_21.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B8B400003290 -aml_importer:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B8B400003290 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_9FD125EE-ED2C-4F38-80C3-D52078B53D48 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "45"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063199800000_001_kr210_1000mm.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B95D000032D3 -aml_importer:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B95D000032D3 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_B0784176-AC01-4D65-B993-9A04D8244BCC ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "45"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063199800000_001_kr210_1000mm.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-BC0300003319 -aml_importer:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-BC0300003319 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_BA700FEB-B272-4A2F-905A-68509906E8FB ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "45"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063199800000_001_kr210_1000mm.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19721000063203000100_001_zb_hb_ablage_001_071106.1_AF138E59-0000-17AC-556E-BC4600003334 -aml_importer:ie_F19721000063203000100_001_zb_hb_ablage_001_071106.1_AF138E59-0000-17AC-556E-BC4600003334 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_3586C6BD-7D09-484A-9545-269973500836 ; - aml_importer:hasFrame_rx "-180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.225"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.13"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.37"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063203000100_001_zb_hb_ablage_001_071106.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19732000122019015600_001_zb_gestell_fa.1_AF138E59-0000-17AC-556E-B961000032D7 -aml_importer:ie_F19732000122019015600_001_zb_gestell_fa.1_AF138E59-0000-17AC-556E-B961000032D7 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_E91B6FE9-D465-46DA-956F-59ABD2603DA9 ; - rdfs:comment "InternalElement" ; - rdfs:label "F19732000122019015600_001_zb_gestell_fa.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F36529100530800000000_staender_schlauchpaket_L2300_A950_H575.1_AF138E59-0000-17AC-556E-B95D000032D5 -aml_importer:ie_F36529100530800000000_staender_schlauchpaket_L2300_A950_H575.1_AF138E59-0000-17AC-556E-B95D000032D5 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_365E06DA-69EA-4069-AB40-2999ABEAC961 ; - rdfs:comment "InternalElement" ; - rdfs:label "F36529100530800000000_staender_schlauchpaket_L2300_A950_H575.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 -aml_importer:ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 rdf:type owl:NamedIndividual , - aml_importer:Fileserver ; - aml_ontology:hasIE aml_importer:ie_Portlist_1c18bca1-5045-4fc9-abd9-8e4acc8f71f2 ; - rdfs:comment "InternalElement" ; - rdfs:label "FileSvr1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b -aml_importer:ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b rdf:type owl:NamedIndividual , - aml_importer:Fileserver ; - aml_ontology:hasIE aml_importer:ie_Portlist_deedce45-802a-4e57-9535-4cee2506156e ; - rdfs:comment "InternalElement" ; - rdfs:label "FileSvr2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Foerdertechnik_Stoerkontur_A_AF138E59-0000-17AC-556E-BC4900003340 -aml_importer:ie_Foerdertechnik_Stoerkontur_A_AF138E59-0000-17AC-556E-BC4900003340 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_D5A3A3BB-07C6-404F-9281-AA2781DBE9AF ; - rdfs:comment "InternalElement" ; - rdfs:label "Foerdertechnik_Stoerkontur_A" . - - -### http://www.ipr.kit.edu/aml_importer#ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 -aml_importer:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 rdf:type owl:NamedIndividual , - aml_importer:HMI ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_8195fafc-e6e3-4cc2-aebc-9b75d1c95f5d , - aml_importer:ie_Portlist_5093df14-ac72-4c01-a4fb-e946b1cda940 ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "intelligent_platforms_proficy_hmi\\/scada_cimplicity" ; - aml_importer:hasCpeVendor "ge" ; - aml_importer:hasCpeVersion "8.2" ; - rdfs:comment "InternalElement" ; - rdfs:label "GECimplicity1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_HB51_A_Allgemein_AF138E59-0000-17AC-556E-BC4800003335 -aml_importer:ie_HB51_A_Allgemein_AF138E59-0000-17AC-556E-BC4800003335 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Foerdertechnik_Stoerkontur_A_AF138E59-0000-17AC-556E-BC4900003340 , - aml_importer:ie_Materialbereitstellung_A_AF138E59-0000-17AC-556E-BC4900003341 , - aml_importer:ie_Peripherie_A_AF138E59-0000-17AC-556E-BC490000333F , - aml_importer:ie_Schaltschraenke_A_AF138E59-0000-17AC-556E-BC4800003336 , - aml_importer:ie_Tore_A_AF138E59-0000-17AC-556E-BC4900003342 , - aml_importer:ie_benachbarte_Zellen_A_AF138E59-0000-17AC-556E-BC490000333E ; - rdfs:comment "InternalElement" ; - rdfs:label "HB51_A_Allgemein" . - - -### http://www.ipr.kit.edu/aml_importer#ie_HB51_Allgemein_AF138E59-0000-17AC-556E-BC4900003343 -aml_importer:ie_HB51_Allgemein_AF138E59-0000-17AC-556E-BC4900003343 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Schutzzaun_AF138E59-0000-17AC-556E-BC4900003344 ; - rdfs:comment "InternalElement" ; - rdfs:label "HB51_Allgemein" . - - -### http://www.ipr.kit.edu/aml_importer#ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0 -aml_importer:ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0 rdf:type owl:NamedIndividual , - aml_importer:DmzZone ; - aml_ontology:hasIE aml_importer:ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154 , - aml_importer:ie_Cisco1921Router_571cf030-3f40-4866-a3b8-0a1fa0cdfe37 , - aml_importer:ie_CiscoCatalystSwitch_34fd9397-ef4d-4ece-86dc-9fad7d8da70b , - aml_importer:ie_CiscoFirewall_7a5e9be8-2e95-49e7-bdc5-1cd6b7ef3187 , - aml_importer:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , - aml_importer:ie_LogicalNetwork_62b16a82-071a-415d-991a-a42e5536d530 , - aml_importer:ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66 , - aml_importer:ie_PhysicalNetwork_5229fef2-bdc3-4258-8255-01e888c5a482 ; - rdfs:comment "InternalElement" ; - rdfs:label "IndustrialDMZ" . - - -### http://www.ipr.kit.edu/aml_importer#ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 -aml_importer:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 rdf:type owl:NamedIndividual , - aml_importer:JumpServer ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_19918ced-34c6-4a99-9e35-b4b517a94461 , - aml_importer:ie_Portlist_a786feca-89da-4e6e-8661-4d0c3d32b922 ; - rdfs:comment "InternalElement" ; - rdfs:label "JumpSvr1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 -aml_importer:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 rdf:type owl:NamedIndividual , - aml_importer:PLC ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_e8ef64ac-6ce8-415a-a5e2-3ee11ba88396 , - aml_importer:ie_Portlist_875cb0fa-93d7-4082-b96a-eff064220be5 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "rc4" ; - aml_importer:hasCpeVendor "kuka" ; - rdfs:comment "InternalElement" ; - rdfs:label "KRC4_1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 -aml_importer:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 rdf:type owl:NamedIndividual , - aml_importer:PLC ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_b4c2a174-58a1-45bc-a8bd-49af4e933461 , - aml_importer:ie_Portlist_3ac714dc-9e0c-4520-b8a6-77ef55c18b46 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "rc4" ; - aml_importer:hasCpeVendor "kuka" ; - rdfs:comment "InternalElement" ; - rdfs:label "KRC4_2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 -aml_importer:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 rdf:type owl:NamedIndividual , - aml_importer:PLC ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_c3ce6da1-7bfc-4793-bf1e-503a4845e1b3 , - aml_importer:ie_Portlist_64d1dea7-30d1-4f8e-a41e-e09b1c689f9b ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "rc4" ; - aml_importer:hasCpeVendor "kuka" ; - rdfs:comment "InternalElement" ; - rdfs:label "KRC4_3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 -aml_importer:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 rdf:type owl:NamedIndividual , - aml_importer:PLC ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_446494df-86e8-4750-b847-7c68782aef9a , - aml_importer:ie_Portlist_016a33c7-29a6-414b-a3f2-18e2472815e3 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "rc4" ; - aml_importer:hasCpeVendor "kuka" ; - rdfs:comment "InternalElement" ; - rdfs:label "KRC4_4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_010GRF141_AF138E59-0000-17AC-556E-B155000031D1 -aml_importer:ie_KRxxxRultra.6.1_010GRF141_AF138E59-0000-17AC-556E-B155000031D1 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_010GRF141_757D522F-C309-4297-AA3B-96641AE6DBA5 , - aml_importer:ei_Attachment_COLLADA_010GRF141_F3D025B8-22D8-460D-ABC6-2AEAB3FD010B ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_010GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_020GRF141_AF138E59-0000-17AC-556E-B5B00000321D -aml_importer:ie_KRxxxRultra.6.1_020GRF141_AF138E59-0000-17AC-556E-B5B00000321D rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_020GRF141_A18D9CBE-9454-4CA9-8D2E-3DCD3B9E7D44 , - aml_importer:ei_Attachment_COLLADA_020GRF141_24903B78-3EAC-4666-9C3D-46C0E34F4264 ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_020GRF141" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_030DS_251_AF138E59-0000-17AC-556E-B8F4000032BE -aml_importer:ie_KRxxxRultra.6.1_030DS_251_AF138E59-0000-17AC-556E-B8F4000032BE rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030DS_251_1CF069D2-8A94-4875-858E-495058E1D1DD , - aml_importer:ei_Attachment_COLLADA_030DS_251_39FC9ECC-844B-4A96-A434-E19D8C64BBF7 ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_030DS_251" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_030GRF341_AF138E59-0000-17AC-556E-B99B000032F7 -aml_importer:ie_KRxxxRultra.6.1_030GRF341_AF138E59-0000-17AC-556E-B99B000032F7 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030GRF341_6A8D3042-7201-49F5-AB08-41CF66605261 , - aml_importer:ei_Attachment_COLLADA_030GRF341_24723857-915E-4B7C-9F83-52228D12256D ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_030GRF341" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_030WZD180_AF138E59-0000-17AC-556E-B84F0000325D -aml_importer:ie_KRxxxRultra.6.1_030WZD180_AF138E59-0000-17AC-556E-B84F0000325D rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_030WZD180_82862925-A9D8-4528-B513-67818494A71A , - aml_importer:ei_Attachment_COLLADA_030WZD180_9F9EFDD9-AE2A-4D9E-8C0A-525EB3F51B89 ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_030WZD180" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031CF -aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031CF rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_DCEE9D53-0DF2-4C1F-8C5E-0C7B2B5D5E0D ; - aml_ontology:hasIE aml_importer:ie_KRxxxRultra.6.1_010GRF141_AF138E59-0000-17AC-556E-B155000031D1 , - aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B155000031D2 , - aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D0 ; - aml_importer:hasFrame_rx "147.914"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-21.618"^^rdfs:Literal ; - aml_importer:hasFrame_rz "57.439"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.569465"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.180495"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.075897"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B00000321B -aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B00000321B rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_CF1BC4B3-2145-4EE5-9414-BDE375E84818 ; - aml_ontology:hasIE aml_importer:ie_KRxxxRultra.6.1_020GRF141_AF138E59-0000-17AC-556E-B5B00000321D , - aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B5B00000321E , - aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B00000321C ; - aml_importer:hasFrame_rx "-74.904"^^rdfs:Literal ; - aml_importer:hasFrame_ry "30.227"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-72.471"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.051131"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.161884"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.689111"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F0000325B -aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F0000325B rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_96ECB4B5-6064-49F8-BA98-8E3D316FBA92 ; - aml_ontology:hasIE aml_importer:ie_KRxxxRultra.6.1_030WZD180_AF138E59-0000-17AC-556E-B84F0000325D , - aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B84F0000325E , - aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F0000325C ; - aml_importer:hasFrame_rx "94.499"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.033828"^^rdfs:Literal ; - aml_importer:hasFrame_y "-1.220507"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.783415"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032BC -aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032BC rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_27DCE7F2-DE82-4750-92D9-EE11D2C5E865 ; - aml_ontology:hasIE aml_importer:ie_KRxxxRultra.6.1_030DS_251_AF138E59-0000-17AC-556E-B8F4000032BE , - aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B8F4000032BF , - aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032BD ; - aml_importer:hasFrame_rx "17.654"^^rdfs:Literal ; - aml_importer:hasFrame_ry "4.514"^^rdfs:Literal ; - aml_importer:hasFrame_rz "1.435"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.249814"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.024038"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.571961"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032F5 -aml_importer:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032F5 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_32B26A25-D8D2-48B0-B82D-B7A4F58BAEF2 ; - aml_ontology:hasIE aml_importer:ie_KRxxxRultra.6.1_030GRF341_AF138E59-0000-17AC-556E-B99B000032F7 , - aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B99B000032F8 , - aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032F6 ; - aml_importer:hasFrame_rx "-172.84"^^rdfs:Literal ; - aml_importer:hasFrame_ry "26.036"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-1.383"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.054813"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.001324"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.706696"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B155000031D2 -aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B155000031D2 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_ToolMountPoint_1E24DD3E-F122-4580-9B81-9AC02620DEEE , - aml_importer:ei_Attachment_ToolMountPoint_F8DA049F-2302-4F79-8518-ADBA2E42A7CF ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.24"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B5B00000321E -aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B5B00000321E rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_ToolMountPoint_DD6BF46F-DA09-4C35-BAE1-BB1EF0790387 , - aml_importer:ei_Attachment_ToolMountPoint_86312CDD-28DE-4047-B7D9-63FF3A9946F5 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.24"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B84F0000325E -aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B84F0000325E rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_ToolMountPoint_AB206F11-B326-46BD-8B6D-0354EAEE9069 , - aml_importer:ei_Attachment_ToolMountPoint_0CB06EF6-7AF0-47C8-A867-415241BC9748 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.24"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B8F4000032BF -aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B8F4000032BF rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_ToolMountPoint_AAA676AB-FE9F-4559-82E8-DDF7244E9661 , - aml_importer:ei_Attachment_ToolMountPoint_98E347B5-C72C-403D-8ABF-6C554CE1AF1D ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.24"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B99B000032F8 -aml_importer:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B99B000032F8 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_ToolMountPoint_985645AC-ED86-46F0-846E-1A7D4E8CFCB5 , - aml_importer:ei_Attachment_ToolMountPoint_ABBA360A-8455-4F60-818A-CB3D094EF3F6 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "90"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.24"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D0 -aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D0 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_97FE712D-73F0-4ED5-BF25-582430D8045C , - aml_importer:ei_Attachment_saferobotparts_Tool1_1_D92A35BF-273E-4B89-A2D0-4D2ED14E6F53 ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B00000321C -aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B00000321C rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_539FEDEE-1804-41A1-A512-7CA535BB99C3 , - aml_importer:ei_Attachment_saferobotparts_Tool1_1_859C2934-4B56-462E-A182-2D7E076ABCE7 ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F0000325C -aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F0000325C rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_1A3598C7-38F2-421D-89F5-2C4B5AEB6A3C , - aml_importer:ei_Attachment_saferobotparts_Tool1_1_4211FF36-1735-492B-A9B6-9827AB70D367 ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032BD -aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032BD rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_A19D63AA-D0B0-459B-B1FB-1266C75C9DCA , - aml_importer:ei_Attachment_saferobotparts_Tool1_1_DC9E93B8-98CF-4A22-927B-ED9753DEB48A ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032F6 -aml_importer:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032F6 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_saferobotparts-Tool1.1_DC9884DE-BD71-41D8-88D3-8B7FBB367265 , - aml_importer:ei_Attachment_saferobotparts_Tool1_1_5EC2AB6D-9DDD-4DBB-88AF-424D6D5DFFCA ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc -aml_importer:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc rdf:type owl:NamedIndividual , - aml_importer:RemoteManagementSystem ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_b390e821-e358-4552-b858-b6175a0299f6 , - aml_importer:ie_Portlist_db884b3c-cf71-41ee-836e-c135f82af4b0 ; - rdfs:comment "InternalElement" ; - rdfs:label "KUKAConnBox1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KukaDataWireX21-1_f9bcd338-ea1c-4aa3-903a-a70a9cbea780 -aml_importer:ie_KukaDataWireX21-1_f9bcd338-ea1c-4aa3-903a-a70a9cbea780 rdf:type owl:NamedIndividual , - aml_importer:DataWire ; - aml_ontology:hasEI aml_importer:ei_DataPlug1_cf26e9b9-546f-4642-993b-59d4f504f25c , - aml_importer:ei_DataPlug2_4ef8a268-644b-423c-9777-7e8d839f5dd1 ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaDataWireX21-1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KukaDataWireX21-2_aa40d1e4-f5d3-4838-93f7-a7c9a7595290 -aml_importer:ie_KukaDataWireX21-2_aa40d1e4-f5d3-4838-93f7-a7c9a7595290 rdf:type owl:NamedIndividual , - aml_importer:DataWire ; - aml_ontology:hasEI aml_importer:ei_DataPlug1_f9ce0072-4c30-4b19-ad58-13d874db959e , - aml_importer:ei_DataPlug2_9ac880a6-992f-4a72-93c8-697f7184b4a8 ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaDataWireX21-2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KukaDataWireX21-3_7abaf367-74a7-42bf-970c-3033504ba368 -aml_importer:ie_KukaDataWireX21-3_7abaf367-74a7-42bf-970c-3033504ba368 rdf:type owl:NamedIndividual , - aml_importer:DataWire ; - aml_ontology:hasEI aml_importer:ei_DataPlug1_a7bcea0f-8293-4838-870d-b1cc839f1b34 , - aml_importer:ei_DataPlug2_f58826ef-44b9-4605-bb45-2b82cd5afb04 ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaDataWireX21-3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KukaDataWireX21-4_398ef23d-1260-4184-9c1c-765b3ce74470 -aml_importer:ie_KukaDataWireX21-4_398ef23d-1260-4184-9c1c-765b3ce74470 rdf:type owl:NamedIndividual , - aml_importer:DataWire ; - aml_ontology:hasEI aml_importer:ei_DataPlug1_9a404f47-0a3c-4ac6-a661-f24926d8101d , - aml_importer:ei_DataPlug2_ec75d2b6-d66e-422a-b6a4-b8fd93fc5597 ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaDataWireX21-4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KukaMotorWire1_43ab2c52-0f69-4f39-8301-50471289f968 -aml_importer:ie_KukaMotorWire1_43ab2c52-0f69-4f39-8301-50471289f968 rdf:type owl:NamedIndividual , - aml_importer:MotorWire ; - aml_ontology:hasEI aml_importer:ei_MotorPlug1_cfbea44c-35e9-4230-81f9-3d799b5a87db , - aml_importer:ei_MotorPlug2_462600ad-7698-4968-9f3b-7f38052a6fc5 ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaMotorWire1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KukaMotorWire2_76a56bb1-787b-456b-8733-b0788033a8f9 -aml_importer:ie_KukaMotorWire2_76a56bb1-787b-456b-8733-b0788033a8f9 rdf:type owl:NamedIndividual , - aml_importer:MotorWire ; - aml_ontology:hasEI aml_importer:ei_MotorPlug1_3cfc448e-1c96-4379-8139-03adb5ef4bb8 , - aml_importer:ei_MotorPlug2_64b94804-57fa-46bf-88dc-c1707dcf5f3b ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaMotorWire2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KukaMotorWire3_6bdf004d-2d07-4b5b-aedb-2dae69ef17a4 -aml_importer:ie_KukaMotorWire3_6bdf004d-2d07-4b5b-aedb-2dae69ef17a4 rdf:type owl:NamedIndividual , - aml_importer:MotorWire ; - aml_ontology:hasEI aml_importer:ei_MotorPlug1_3d417e2d-9b3b-4025-90c0-225d2f12ae17 , - aml_importer:ei_MotorPlug2_d1668324-4fcd-4002-9acb-5b6215fce49d ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaMotorWire3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_KukaMotorWire4_77b68f44-01a4-46fd-806f-94287e36d9c0 -aml_importer:ie_KukaMotorWire4_77b68f44-01a4-46fd-806f-94287e36d9c0 rdf:type owl:NamedIndividual , - aml_importer:MotorWire ; - aml_ontology:hasEI aml_importer:ei_MotorPlug1_78aef019-703a-4d0e-a682-17955c9bb45c , - aml_importer:ei_MotorPlug2_77af8496-b3af-4e27-86b0-0fdf30cc9e0f ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaMotorWire4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 -aml_importer:ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 rdf:type owl:NamedIndividual , - aml_importer:HTTP , - aml_importer:LogicalConnection ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointHTTP-1_b4d46f14-64ef-466b-86c3-3ab92e1d12eb , - aml_importer:ei_LogicalEndpointHTTP-2_ede3a8fd-21f5-4d63-978e-50cd5b01e756 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalHTTPConnection1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 -aml_importer:ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 rdf:type owl:NamedIndividual , - aml_importer:HTTP , - aml_importer:LogicalConnection ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointHTTP-1_db5d1336-2a10-439c-9961-6450ecc7a047 , - aml_importer:ei_LogicalEndpointHTTP-2_927ed061-fa2b-47b1-b48c-bca7a559d854 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalHTTPConnection1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalNetwork_4f912794-d068-4f41-91cf-5359fe0e2853 -aml_importer:ie_LogicalNetwork_4f912794-d068-4f41-91cf-5359fe0e2853 rdf:type owl:NamedIndividual , - aml_importer:LogicalNetwork ; - aml_ontology:hasIE aml_importer:ie_LogicalOPCConnection1_d8bf6b53-42b3-49c5-b7af-fb9cd1421b7e , - aml_importer:ie_LogicalOPCConnection2_29b6c100-4d64-4fe1-bcb2-9931b8507340 , - aml_importer:ie_LogicalOPCConnection3_589a1171-805e-4e15-8306-df9b2ed5eba2 , - aml_importer:ie_LogicalOPCConnection4_a8913465-7d73-4954-8f16-179ecab519ca , - aml_importer:ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 , - aml_importer:ie_LogicalPROFIsafeConnection1_87d514a1-25b5-4ba4-9908-d9c000631b75 , - aml_importer:ie_LogicalPROFIsafeConnection2_3cb44b24-52c4-44a8-9be6-f33770e5a0ba , - aml_importer:ie_LogicalPROFIsafeConnection3_006ef612-4c52-453d-b7e1-aec4495f466d , - aml_importer:ie_LogicalPROFIsafeConnection4_5b372b58-cbf9-4654-b2ac-9355d4ffd47a , - aml_importer:ie_LogicalProfinetConnection1_80352a47-7bae-44f1-ac8a-85d45a6d6944 , - aml_importer:ie_LogicalProfinetConnection2_927b3231-91ab-4cb2-835f-f6bc3cb638aa , - aml_importer:ie_LogicalProfinetConnection3_c5f12a8c-b961-4964-bbce-af3e03554cdb , - aml_importer:ie_LogicalProfinetConnection4_25615c2d-21e4-4624-9ee6-ac04a596e3e1 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalNetwork_51a7d9fa-5805-4038-87d3-9d7158e486d0 -aml_importer:ie_LogicalNetwork_51a7d9fa-5805-4038-87d3-9d7158e486d0 rdf:type owl:NamedIndividual , - aml_importer:LogicalNetwork ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalNetwork_62b16a82-071a-415d-991a-a42e5536d530 -aml_importer:ie_LogicalNetwork_62b16a82-071a-415d-991a-a42e5536d530 rdf:type owl:NamedIndividual , - aml_importer:LogicalNetwork ; - aml_ontology:hasIE aml_importer:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalNetwork_934fb791-a406-4b96-946a-e23db8c5eda9 -aml_importer:ie_LogicalNetwork_934fb791-a406-4b96-946a-e23db8c5eda9 rdf:type owl:NamedIndividual , - aml_importer:LogicalNetwork ; - aml_ontology:hasIE aml_importer:ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalNetwork_9690ed3a-50d1-4c23-af4f-53e0a9e4b9ca -aml_importer:ie_LogicalNetwork_9690ed3a-50d1-4c23-af4f-53e0a9e4b9ca rdf:type owl:NamedIndividual , - aml_importer:LogicalNetwork ; - aml_ontology:hasIE aml_importer:ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalNetwork_ab3bc082-0a9e-4692-9a43-7ed3263bfe6f -aml_importer:ie_LogicalNetwork_ab3bc082-0a9e-4692-9a43-7ed3263bfe6f rdf:type owl:NamedIndividual , - aml_importer:LogicalNetwork ; - aml_ontology:hasIE aml_importer:ie_LogicalOPC-UAConnection_67214374-10d5-414f-b42c-2859f1fbf4c2 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalNetwork_d42e7daa-0610-4c16-a9b5-1ed176ea36f8 -aml_importer:ie_LogicalNetwork_d42e7daa-0610-4c16-a9b5-1ed176ea36f8 rdf:type owl:NamedIndividual , - aml_importer:LogicalNetwork ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a -aml_importer:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:OPC-UA ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC-UA-1_6397e1c3-f31f-49a4-a1f0-1ebb1028c4ea , - aml_importer:ei_LogicalEndpointOPC-UA-2_823520ec-9659-47e5-ad5d-1c466e824b11 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPC-UAConnection1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalOPC-UAConnection_67214374-10d5-414f-b42c-2859f1fbf4c2 -aml_importer:ie_LogicalOPC-UAConnection_67214374-10d5-414f-b42c-2859f1fbf4c2 rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:OPC-UA ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC-UA-1_2f5fab35-8e99-45ff-ae56-4ac00b7144ea , - aml_importer:ei_LogicalEndpointOPC-UA-2_25f02e01-a974-4880-bd72-bf584af8624d ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPC-UAConnection" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalOPCConnection1_d8bf6b53-42b3-49c5-b7af-fb9cd1421b7e -aml_importer:ie_LogicalOPCConnection1_d8bf6b53-42b3-49c5-b7af-fb9cd1421b7e rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:OPC ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC1_3af21c9e-cc80-4889-87b5-10255ec1f52f , - aml_importer:ei_LogicalEndpointOPC2_73557256-bbd1-4dcf-8856-777db2b92c3d ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalOPCConnection2_29b6c100-4d64-4fe1-bcb2-9931b8507340 -aml_importer:ie_LogicalOPCConnection2_29b6c100-4d64-4fe1-bcb2-9931b8507340 rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:OPC ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC1_c8dda586-0a8d-4aed-b41b-1070f0e56e4a , - aml_importer:ei_LogicalEndpointOPC2_1a018044-4ba2-4210-8099-68e6c28aff4f ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalOPCConnection3_589a1171-805e-4e15-8306-df9b2ed5eba2 -aml_importer:ie_LogicalOPCConnection3_589a1171-805e-4e15-8306-df9b2ed5eba2 rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:OPC ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC1_9ff435fc-52d0-4204-a2f3-4d8323e7f1fd , - aml_importer:ei_LogicalEndpointOPC2_4f4277fd-d47e-4e24-b7dd-afabc94cbe9c ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalOPCConnection4_a8913465-7d73-4954-8f16-179ecab519ca -aml_importer:ie_LogicalOPCConnection4_a8913465-7d73-4954-8f16-179ecab519ca rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:OPC ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC1_5c88241e-d581-45e0-990e-4ac58c6de838 , - aml_importer:ei_LogicalEndpointOPC2_12c24e84-be9a-4e36-b7a9-7b2ad751cfe6 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 -aml_importer:ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:OPC ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC1_98472cc7-8ab4-4c62-b4cf-c28f0d4ea391 , - aml_importer:ei_LogicalEndpointOPC2_448bc6ba-609c-4d66-87bf-f01b86c53b63 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection5" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPROFIsafeConnection1_87d514a1-25b5-4ba4-9908-d9c000631b75 -aml_importer:ie_LogicalPROFIsafeConnection1_87d514a1-25b5-4ba4-9908-d9c000631b75 rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:PROFIsafe ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointPROFIsafe1_e5384131-e6eb-48e8-8b90-9ead55a16971 , - aml_importer:ei_LogicalEndpointPROFIsafe2_08eb5c10-0f82-401f-b6b5-720988f25910 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPROFIsafeConnection1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPROFIsafeConnection2_3cb44b24-52c4-44a8-9be6-f33770e5a0ba -aml_importer:ie_LogicalPROFIsafeConnection2_3cb44b24-52c4-44a8-9be6-f33770e5a0ba rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:PROFIsafe ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointPROFIsafe1_f03aad7a-9c5a-4f63-8261-c0d0d388e18a , - aml_importer:ei_LogicalEndpointPROFIsafe2_eda94389-af6a-4f80-9526-294676019256 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPROFIsafeConnection2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPROFIsafeConnection3_006ef612-4c52-453d-b7e1-aec4495f466d -aml_importer:ie_LogicalPROFIsafeConnection3_006ef612-4c52-453d-b7e1-aec4495f466d rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:PROFIsafe ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointPROFIsafe1_a175d785-e4e9-4858-b4c2-1807437c1f63 , - aml_importer:ei_LogicalEndpointPROFIsafe2_7d57b69d-8413-4f16-8d00-339083413b5f ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPROFIsafeConnection3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPROFIsafeConnection4_5b372b58-cbf9-4654-b2ac-9355d4ffd47a -aml_importer:ie_LogicalPROFIsafeConnection4_5b372b58-cbf9-4654-b2ac-9355d4ffd47a rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:PROFIsafe ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointPROFIsafe1_eafdfbba-1d80-48a8-b74b-3b27aaf71c8b , - aml_importer:ei_LogicalEndpointPROFIsafe2_2a1403ac-30d9-43de-9f26-2f7cbe82c75c ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPROFIsafeConnection4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_17feba5e-563a-40f5-88df-22bf61dbdfe5 -aml_importer:ie_LogicalPortList_17feba5e-563a-40f5-88df-22bf61dbdfe5 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointHTTP-1_27371c00-7ffc-4820-b129-c971d5e6a739 , - aml_importer:ei_LogicalEndpointHTTP-2_bcd4438c-0472-4144-b5b3-3e05ed6bb1d2 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_19918ced-34c6-4a99-9e35-b4b517a94461 -aml_importer:ie_LogicalPortList_19918ced-34c6-4a99-9e35-b4b517a94461 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointHTTP_263fcd54-6a0e-4fbe-a02b-49e390e00943 , - aml_importer:ei_LogicalEndpointOPC-UA_105f4f40-54fe-4d8f-90d2-bcdfd30c0031 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_1f20ccd2-7dfc-43e0-beed-89d1f51a90eb -aml_importer:ie_LogicalPortList_1f20ccd2-7dfc-43e0-beed-89d1f51a90eb rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointPROFIsafe_a2bd3329-93c3-4b76-9689-38069e140904 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_38cabac8-567f-45fa-bee9-a993bf9b5cd5 -aml_importer:ie_LogicalPortList_38cabac8-567f-45fa-bee9-a993bf9b5cd5 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointPROFIsafe_ae854efb-9d6b-4b00-a4da-247eaf736f6f ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_446494df-86e8-4750-b847-7c68782aef9a -aml_importer:ie_LogicalPortList_446494df-86e8-4750-b847-7c68782aef9a rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC_871d320f-b7a9-4fa2-9b23-c975da0cc485 , - aml_importer:ei_LogicalEndpointPROFIsafe_429d1ee7-4e79-4657-a6d7-dd469a9b4a87 , - aml_importer:ei_LogicalEndpointProfinet_67a0e8e3-f5f9-4a69-bf63-cc6e05f9a6b3 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_4bcbb4c2-5036-4cbc-b06e-ad542cdbb92e -aml_importer:ie_LogicalPortList_4bcbb4c2-5036-4cbc-b06e-ad542cdbb92e rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointProfinet_433a17eb-fc4a-4d65-85cc-311e1ff00019 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_540da1cc-3d89-430b-9d7d-5763104d6c24 -aml_importer:ie_LogicalPortList_540da1cc-3d89-430b-9d7d-5763104d6c24 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointProfinet_4f19c87a-fc28-4fc3-a41f-4a1089481412 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_58dd080a-5aac-41ce-b119-aef565a368ba -aml_importer:ie_LogicalPortList_58dd080a-5aac-41ce-b119-aef565a368ba rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointModbus_81b74a1f-b305-470b-8c8c-d6bad9103441 , - aml_importer:ei_LogicalEndpointOPC-UA_83524b62-a19a-4f1b-8038-23027d20c93c , - aml_importer:ei_LogicalEndpointOPC_8910bbbb-0cda-46c5-8a5e-550068c82931 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_6a59f1f7-e73b-40ed-9f5b-1d74bff7e60c -aml_importer:ie_LogicalPortList_6a59f1f7-e73b-40ed-9f5b-1d74bff7e60c rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointHTTP_2d9365fd-7a4f-46ec-aa7b-075c9969efc2 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_7119dc28-da6c-40bd-b2e5-0eaf1f545f4a -aml_importer:ie_LogicalPortList_7119dc28-da6c-40bd-b2e5-0eaf1f545f4a rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC-UA-1_a04436ec-db07-4dc1-a5a1-4a0e469e2c1d , - aml_importer:ei_LogicalEndpointOPC-UA-2_cfe19784-1636-4a08-a64c-930bde597f15 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_8195fafc-e6e3-4cc2-aebc-9b75d1c95f5d -aml_importer:ie_LogicalPortList_8195fafc-e6e3-4cc2-aebc-9b75d1c95f5d rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC1_48993549-d4d0-4931-90b2-416e913174d0 , - aml_importer:ei_LogicalEndpointOPC2_02e7b935-8067-4293-8748-0449c1144807 , - aml_importer:ei_LogicalEndpointOPC3_372ad0ad-1e08-45ea-899c-19d4009158e2 , - aml_importer:ei_LogicalEndpointOPC4_9a5396fa-80d9-438e-9700-75f3a7950fe1 , - aml_importer:ei_LogicalEndpointOPC5_8e747187-913d-4635-bd1b-d64e683a0a21 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_90c47391-c2fd-40b9-9dc0-1ab2f2524e08 -aml_importer:ie_LogicalPortList_90c47391-c2fd-40b9-9dc0-1ab2f2524e08 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointProfinet_7e7fba22-6784-4256-a18e-9699fe75df70 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_b390e821-e358-4552-b858-b6175a0299f6 -aml_importer:ie_LogicalPortList_b390e821-e358-4552-b858-b6175a0299f6 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalRemoteEndpoint_ceca8b8d-7308-4242-868f-abc070544477 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_b4c2a174-58a1-45bc-a8bd-49af4e933461 -aml_importer:ie_LogicalPortList_b4c2a174-58a1-45bc-a8bd-49af4e933461 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC_4a38d310-5447-4ac6-88a7-74bfc25172ec , - aml_importer:ei_LogicalEndpointPROFIsafe_f3545173-695e-4c8e-b02e-4a3ed53a15ba , - aml_importer:ei_LogicalEndpointProfinet_9512f6d4-17f5-42fe-8d41-7049e4c0a1b9 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_bbc6d915-4d60-4b47-978e-5307bf4de171 -aml_importer:ie_LogicalPortList_bbc6d915-4d60-4b47-978e-5307bf4de171 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointPROFIsafe_f8375d35-7820-469d-9aaa-5ab3c8bb2eef ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_c3ce6da1-7bfc-4793-bf1e-503a4845e1b3 -aml_importer:ie_LogicalPortList_c3ce6da1-7bfc-4793-bf1e-503a4845e1b3 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC_4d43bded-d2e8-4c1f-a357-05760b746cbb , - aml_importer:ei_LogicalEndpointPROFIsafe_57cb22a2-920a-4de4-9f02-52a8267b744d , - aml_importer:ei_LogicalEndpointProfinet_2d99c617-b230-4b96-be81-8108865806cc ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_c4d32fb7-0a28-4099-a8fa-0db23d405d51 -aml_importer:ie_LogicalPortList_c4d32fb7-0a28-4099-a8fa-0db23d405d51 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointProfinet_5e889b68-e366-4560-b3ee-318c59c8aea5 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_c64bca0b-7201-4a6f-a196-d21ec4e9dcf0 -aml_importer:ie_LogicalPortList_c64bca0b-7201-4a6f-a196-d21ec4e9dcf0 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointPROFIsafe_c0f1cf30-00cd-459b-aa62-2b9578daa128 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalPortList_e8ef64ac-6ce8-415a-a5e2-3ee11ba88396 -aml_importer:ie_LogicalPortList_e8ef64ac-6ce8-415a-a5e2-3ee11ba88396 rdf:type owl:NamedIndividual , - aml_importer:LogicalPortList ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointOPC_7f4077c1-4536-45d4-af0c-f516b817d3a7 , - aml_importer:ei_LogicalEndpointPROFIsafe_59fa5a98-b9c5-443e-a743-df56b026d9f3 , - aml_importer:ei_LogicalEndpointProfinet_915ff2e6-3d5d-4681-b6e0-dbb30417dae4 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalProfinetConnection1_80352a47-7bae-44f1-ac8a-85d45a6d6944 -aml_importer:ie_LogicalProfinetConnection1_80352a47-7bae-44f1-ac8a-85d45a6d6944 rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:Profinet ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointProfinet1_72ed1588-3b9b-4dfe-a89a-9346bfc01530 , - aml_importer:ei_LogicalEndpointProfinet2_7df3b19b-64c8-419f-8dba-82cd2b56aa15 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalProfinetConnection1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalProfinetConnection2_927b3231-91ab-4cb2-835f-f6bc3cb638aa -aml_importer:ie_LogicalProfinetConnection2_927b3231-91ab-4cb2-835f-f6bc3cb638aa rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:Profinet ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointProfinet1_9de6bd05-5336-4dd6-83d7-6eb3fdbc6c9d , - aml_importer:ei_LogicalEndpointProfinet2_302e1abe-af1d-4e16-b0ab-43d7eeac5082 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalProfinetConnection2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalProfinetConnection3_c5f12a8c-b961-4964-bbce-af3e03554cdb -aml_importer:ie_LogicalProfinetConnection3_c5f12a8c-b961-4964-bbce-af3e03554cdb rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:Profinet ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointProfinet1_01e828d3-97b1-4667-ab52-12b568cea9da , - aml_importer:ei_LogicalEndpointProfinet2_2fc773b5-2686-4d82-bc98-5f6dc599daad ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalProfinetConnection3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_LogicalProfinetConnection4_25615c2d-21e4-4624-9ee6-ac04a596e3e1 -aml_importer:ie_LogicalProfinetConnection4_25615c2d-21e4-4624-9ee6-ac04a596e3e1 rdf:type owl:NamedIndividual , - aml_importer:LogicalConnection , - aml_importer:Profinet ; - aml_ontology:hasEI aml_importer:ei_LogicalEndpointProfinet1_47666355-7eb2-485b-83b6-b7a83ae24175 , - aml_importer:ei_LogicalEndpointProfinet2_04af5cee-6f9d-4f44-afe9-de3393fc7bf4 ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalProfinetConnection4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 -aml_importer:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 rdf:type owl:NamedIndividual , - aml_importer:MES ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_7119dc28-da6c-40bd-b2e5-0eaf1f545f4a , - aml_importer:ie_PortList_00db77a4-7602-4c98-b9c4-219895e316ee , - aml_importer:ie_SimaticIT_ce9c09d1-f671-4eb0-9d22-c0106e731b6f ; - rdfs:comment "InternalElement" ; - rdfs:label "MES1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b -aml_importer:ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b rdf:type owl:NamedIndividual , - aml_importer:MailServer ; - aml_ontology:hasIE aml_importer:ie_Portlist_02a2e31f-4f8d-4b5c-8bcd-eba77d11f062 ; - rdfs:comment "InternalElement" ; - rdfs:label "MailSvr1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Materialbereitstellung_A_AF138E59-0000-17AC-556E-BC4900003341 -aml_importer:ie_Materialbereitstellung_A_AF138E59-0000-17AC-556E-BC4900003341 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_6B6F83ED-EFBC-4EDA-9261-3A447B94DF5C ; - rdfs:comment "InternalElement" ; - rdfs:label "Materialbereitstellung_A" . - - -### http://www.ipr.kit.edu/aml_importer#ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a -aml_importer:ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a rdf:type owl:NamedIndividual ; - aml_importer:hasCpeEdition "x64" ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "sql_server" ; - aml_importer:hasCpeUpdate "sp2" ; - aml_importer:hasCpeVendor "microsoft" ; - aml_importer:hasCpeVersion "2008" ; - rdfs:comment "InternalElement" ; - rdfs:label "MicrosoftSQLServer" . - - -### http://www.ipr.kit.edu/aml_importer#ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 -aml_importer:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 rdf:type owl:NamedIndividual , - aml_importer:OperationsSupportZone ; - aml_ontology:hasIE aml_importer:ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321 , - aml_importer:ie_Cisco1921Router_ff30129c-f56a-4593-9e06-0228c9bd14b9 , - aml_importer:ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 , - aml_importer:ie_CiscoFirewall_a3925fe5-0ac1-487b-b18f-7cfb705ce575 , - aml_importer:ie_LogicalNetwork_ab3bc082-0a9e-4692-9a43-7ed3263bfe6f , - aml_importer:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , - aml_importer:ie_PhysicalNetwork_dd92139f-42d7-4312-8a80-4dc636ae0d2c , - aml_importer:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a ; - rdfs:comment "InternalElement" ; - rdfs:label "OperationsSupport" . - - -### http://www.ipr.kit.edu/aml_importer#ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66 -aml_importer:ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66 rdf:type owl:NamedIndividual , - aml_importer:PatchManagementServer ; - aml_ontology:hasIE aml_importer:ie_Portlist_5a5e5376-5105-4d5b-bae4-0e21a9f428ce ; - rdfs:comment "InternalElement" ; - rdfs:label "PatchSvr1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Peripherie_A_AF138E59-0000-17AC-556E-BC490000333F -aml_importer:ie_Peripherie_A_AF138E59-0000-17AC-556E-BC490000333F rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_827A12D9-F83E-4276-8741-58ED0E848D0E ; - rdfs:comment "InternalElement" ; - rdfs:label "Peripherie_A" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4900003347 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4900003347 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_2F7473F2-CB41-493A-BB44-5FEA23ABA32E ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334A -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334A rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_E9017613-E22F-479F-857C-845BEBC4DB41 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334D -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334D rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_74228306-7229-4E67-B3A7-66FA39D6BC9D ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003350 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003350 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_773AC0AC-DCD8-4BEA-B7D0-AB748A336E92 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003353 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003353 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_42DCF521-EC77-44FA-8A81-B0CCA35E956C ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003355 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003355 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_F54AAF7A-DC11-4E0B-BEA0-A764532134B3 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003358 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003358 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_4085F647-5ECB-4C97-B26F-AA543878A0A8 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335B -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335B rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_2DF9DCC6-90F3-41CC-A729-7B75064E6738 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335F -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335F rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_300739F5-E2E8-4E0E-AB2A-BA27221C4BFB ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003361 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003361 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_6F680005-56C9-4A1A-B001-659DACC930CE ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003365 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003365 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_4ED6E31F-5195-4D55-995B-925FEE990FBA ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003367 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003367 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_3A80B19A-A9AE-489C-89CC-4BF9407FC760 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336A -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336A rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_D9DF7FC1-FACB-44E1-8C20-72948C52CC73 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336C -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336C rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_276A0F61-743E-4E2F-AE66-694592F17EF1 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336F -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336F rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_2E041E3E-ED0A-486D-95E7-07514A3449E9 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003373 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003373 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_2E1271DE-F7D1-4D88-BD9D-619D9550B886 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003375 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003375 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_C8C9A85D-2494-493A-AD56-54509CB9A40A ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003378 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003378 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_62B4B848-BFDC-4495-8680-8FC6872659F3 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337B -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337B rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_2143DD72-C0EB-4D66-A177-85E964AC33EB ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337E -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337E rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_B65169F0-9765-40BE-904A-4B9F60B3C413 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003381 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003381 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_5F0ADF50-9691-4241-89E0-E1EDA0354705 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003384 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003384 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_4983A3A2-9A99-476E-A259-DCC1CEDDDF55 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003387 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003387 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_E064A3CA-9FCC-4C17-B5B4-0623F1E24608 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338A -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338A rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_6F3AEA34-D348-41A8-BA72-89D80B77D729 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338D -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338D rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_90269BD9-D7F6-4C26-B852-5F4A9B5D4ECD ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003390 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003390 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_658227F1-A512-4781-8046-1B78EAF14360 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC4F0000339B -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4F0000339B rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_B85D2454-3205-4346-B4E5-E27451049CCA ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC500000339E -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC500000339E rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_CE825AD5-1C99-47E2-B0F9-5F12D304C94C ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033AC -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033AC rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_BFDB1D5A-AB22-4C79-923C-36E447FC9198 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033B9 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033B9 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_569A7F6B-2B90-433C-B5CD-FD8CDD8C568B ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033BC -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033BC rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_A7E06243-E977-4994-93A5-E2B638F47BAB ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033C0 -aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033C0 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_A6B2E11C-BBFD-4248-88A8-A606164886B2 ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_PhysicalNetwork_5229fef2-bdc3-4258-8255-01e888c5a482 -aml_importer:ie_PhysicalNetwork_5229fef2-bdc3-4258-8255-01e888c5a482 rdf:type owl:NamedIndividual , - aml_importer:PhysicalNetwork ; - aml_ontology:hasIE aml_importer:ie_EthernetWire1_c2af52c8-e16d-40f9-9b36-e00abb2f9d70 , - aml_importer:ie_EthernetWire2_f3573406-3d87-405f-96f7-fc824f8855c1 , - aml_importer:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 , - aml_importer:ie_EthernetWire4_ac03b247-0077-4dd9-9c1a-457733e5d2f1 , - aml_importer:ie_EthernetWire5_4d27d192-979a-4dac-8b97-b6cee0bbeff2 , - aml_importer:ie_EthernetWire6_fb7b3ad5-3da4-46f1-8bae-fa74fa6b1432 ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_PhysicalNetwork_5d714a90-b712-4c6e-89c1-1df53350637a -aml_importer:ie_PhysicalNetwork_5d714a90-b712-4c6e-89c1-1df53350637a rdf:type owl:NamedIndividual , - aml_importer:PhysicalNetwork ; - aml_ontology:hasIE aml_importer:ie_EthernetWire5_2eef1c1c-b20e-44eb-883e-3d73bfe36aab , - aml_importer:ie_EthernetWire6_fb01531a-025e-49e4-8f4b-a5eaaf032d76 ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_PhysicalNetwork_5e71c71d-ade4-4d68-a3b0-755081652f71 -aml_importer:ie_PhysicalNetwork_5e71c71d-ade4-4d68-a3b0-755081652f71 rdf:type owl:NamedIndividual , - aml_importer:PhysicalNetwork ; - aml_ontology:hasIE aml_importer:ie_EthernetWire1_ba567ab4-68bf-4961-8c68-999ee70644f4 ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_PhysicalNetwork_9964d0eb-7748-42d0-8fb9-317c49c11ed2 -aml_importer:ie_PhysicalNetwork_9964d0eb-7748-42d0-8fb9-317c49c11ed2 rdf:type owl:NamedIndividual , - aml_importer:PhysicalNetwork ; - aml_ontology:hasIE aml_importer:ie_EthernetWire1_9975183e-3914-4352-9170-32ee457e7671 , - aml_importer:ie_EthernetWire2_a232a64a-dd48-48a6-824e-b641e7a2dc2a , - aml_importer:ie_EthernetWire3_661e424f-f88b-4502-b8b7-adc16bce1058 , - aml_importer:ie_EthernetWire4_3fc70458-d951-487d-8723-6f7523425134 , - aml_importer:ie_EthernetWire5_d67ce17b-cfab-45b6-b824-f86f63316e39 , - aml_importer:ie_EthernetWire6_6a0aee9d-551a-4a18-b85b-ba2ed4d8fd37 , - aml_importer:ie_EthernetWire7_0514090c-642e-4641-8d27-88259f14c373 ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_PhysicalNetwork_a7427a6c-aa57-4280-8286-3fb32644cd25 -aml_importer:ie_PhysicalNetwork_a7427a6c-aa57-4280-8286-3fb32644cd25 rdf:type owl:NamedIndividual , - aml_importer:PhysicalNetwork ; - aml_ontology:hasIE aml_importer:ie_EthernetWire10_77bdf526-dfa3-4b54-af3e-3cd95da74176 , - aml_importer:ie_EthernetWire11_76e8842d-07b5-42d7-9799-0afc9c9482a3 , - aml_importer:ie_EthernetWire12_7e8a0540-0b2a-4134-9104-cd90225839e7 , - aml_importer:ie_EthernetWire13_e95adefc-5e9c-4f02-b984-26206ca96785 , - aml_importer:ie_EthernetWire14_21929f93-1f05-4f5d-bd82-e6365bfae17e , - aml_importer:ie_EthernetWire2Safety_f425474b-89ee-4930-b84f-ecd5b6df88ad , - aml_importer:ie_EthernetWire2_3704e8f7-3e0d-4486-9ea5-dd16d0d54018 , - aml_importer:ie_EthernetWire3Safety_ce3bb8ef-6b08-4891-9251-a122f3fae37e , - aml_importer:ie_EthernetWire3_09746539-4300-43bd-ab98-d837d06720ba , - aml_importer:ie_EthernetWire4Safety_c6ac886e-b060-40f0-b786-29a99b3ba30d , - aml_importer:ie_EthernetWire4_75212180-e95c-412f-b10b-55cdc2da17fe , - aml_importer:ie_EthernetWire5Safety_bc0a7c8c-4372-4e43-9eef-9696da643bfb , - aml_importer:ie_EthernetWire5_29fc14aa-a2e5-41bd-b367-30ad18d54ba6 , - aml_importer:ie_EthernetWire6_98aed8ca-f5d8-49b8-b56e-e5ee1403465d , - aml_importer:ie_EthernetWire7_9d589b04-4912-4f7a-873a-0747ff392c67 , - aml_importer:ie_EthernetWire8_e1486d13-09f8-4f73-8ec7-16c2468f4a00 , - aml_importer:ie_EthernetWire9_fc136087-589c-4311-aa51-174b2178a500 , - aml_importer:ie_KukaDataWireX21-1_f9bcd338-ea1c-4aa3-903a-a70a9cbea780 , - aml_importer:ie_KukaDataWireX21-2_aa40d1e4-f5d3-4838-93f7-a7c9a7595290 , - aml_importer:ie_KukaDataWireX21-3_7abaf367-74a7-42bf-970c-3033504ba368 , - aml_importer:ie_KukaDataWireX21-4_398ef23d-1260-4184-9c1c-765b3ce74470 , - aml_importer:ie_KukaMotorWire1_43ab2c52-0f69-4f39-8301-50471289f968 , - aml_importer:ie_KukaMotorWire2_76a56bb1-787b-456b-8733-b0788033a8f9 , - aml_importer:ie_KukaMotorWire3_6bdf004d-2d07-4b5b-aedb-2dae69ef17a4 , - aml_importer:ie_KukaMotorWire4_77b68f44-01a4-46fd-806f-94287e36d9c0 , - aml_importer:ie_WirelessConnection1_2b31412f-f823-404d-9a4f-f93197181293 , - aml_importer:ie_WirelessConnection2_51229621-463f-4525-94d5-84f953a9f332 , - aml_importer:ie_WirelessConnection3_bc94cef8-7f3d-4288-97b8-ccccd9417c35 ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_PhysicalNetwork_dd92139f-42d7-4312-8a80-4dc636ae0d2c -aml_importer:ie_PhysicalNetwork_dd92139f-42d7-4312-8a80-4dc636ae0d2c rdf:type owl:NamedIndividual , - aml_importer:PhysicalNetwork ; - aml_ontology:hasIE aml_importer:ie_EthernetWire1_8b9f6562-a0ed-41a4-b347-db86249b8b6c , - aml_importer:ie_EthernetWire2_e71d3e18-31a4-4133-9455-e4a54c36efe9 , - aml_importer:ie_EthernetWire3_7e567996-bba2-43c4-b020-2912c02221dd , - aml_importer:ie_EthernetWire4_597fb1b4-e011-4f3f-9f1b-b6636e27d231 , - aml_importer:ie_EthernetWire5_3aba703a-de49-465f-9d41-180e2609db47 , - aml_importer:ie_EthernetWire6_f4d40a3c-1ba0-4591-b356-8a1705e9c8cb , - aml_importer:ie_EthernetWire7_78a23eb7-42df-4fb3-99b1-6e755cd22659 ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_PhysicalNetwork_f6b49dd9-aaee-4be0-baab-97b1cf4d87e0 -aml_importer:ie_PhysicalNetwork_f6b49dd9-aaee-4be0-baab-97b1cf4d87e0 rdf:type owl:NamedIndividual , - aml_importer:PhysicalNetwork ; - aml_ontology:hasIE aml_importer:ie_EthernetWire1_90593190-f713-49cc-8bf8-5c74c9450d0f , - aml_importer:ie_EthernetWire2_90ce1e2f-7908-4ad9-b3c4-eedc114221d2 , - aml_importer:ie_EthernetWire3_91cef007-9a7a-4a5c-86e0-4e793f13fb27 , - aml_importer:ie_EthernetWire4_b7f4cd6a-cb4a-4e47-9eb3-289d1e96adfe , - aml_importer:ie_EthernetWire5_d388eaf4-4b57-4bf5-9428-356dd41e5dfc , - aml_importer:ie_EthernetWire6_386cd97d-0556-4d99-b26f-9f656fc33e9e ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" . - - -### http://www.ipr.kit.edu/aml_importer#ie_PortList_00db77a4-7602-4c98-b9c4-219895e316ee -aml_importer:ie_PortList_00db77a4-7602-4c98-b9c4-219895e316ee rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_a45b3032-c03b-4410-80a0-8f69fe26fef2 ; - rdfs:comment "InternalElement" ; - rdfs:label "PortList" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_004a5072-7168-4f4e-a8d7-208ea75f15d7 -aml_importer:ie_Portlist_004a5072-7168-4f4e-a8d7-208ea75f15d7 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_4e373d26-b42d-4b7d-9b6b-eaf79f97a56f ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_016a33c7-29a6-414b-a3f2-18e2472815e3 -aml_importer:ie_Portlist_016a33c7-29a6-414b-a3f2-18e2472815e3 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_DataSocket_ae28eb4b-ffe8-4cb0-90ad-4b29fa94f73d , - aml_importer:ei_EthernetSocket_ebfabd7d-e0a0-425d-979f-88e726ba20cc , - aml_importer:ei_MotorSocket_06edea8e-1bd1-43f6-a847-1d0eb58f95a9 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_02a2e31f-4f8d-4b5c-8bcd-eba77d11f062 -aml_importer:ie_Portlist_02a2e31f-4f8d-4b5c-8bcd-eba77d11f062 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_e998d27c-161a-4bb7-85ac-41beae800ff0 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_05aab978-bf3d-467f-b16f-a60ff74a5837 -aml_importer:ie_Portlist_05aab978-bf3d-467f-b16f-a60ff74a5837 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_cb93258e-84a8-49b8-b7fd-63ee9eeba5b2 , - aml_importer:ei_EthernetSocket2_0df11b8c-5e02-4e67-a3e9-c4588992b1b1 , - aml_importer:ei_EthernetSocket3_b1f45de9-a7ae-4327-b537-ae7c5a0c13a5 , - aml_importer:ei_EthernetSocket4_1f3b99b8-9092-42d0-98c9-cecbf3b5a189 , - aml_importer:ei_EthernetSocket5_66987355-b53a-4fd4-af31-c78628bfbbf6 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_0b8ac3a0-75c0-4c6e-9591-bff8c66ce87c -aml_importer:ie_Portlist_0b8ac3a0-75c0-4c6e-9591-bff8c66ce87c rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_6f2435d9-f622-4749-996c-379e9d87b83d , - aml_importer:ei_EthernetSocket2_a95b5f98-b5cf-447b-8792-ed42e675f8b6 , - aml_importer:ei_EthernetSocket3_39ffd08b-5871-49bc-9e10-b1e340c12ac6 , - aml_importer:ei_EthernetSocket4_1a4b042a-eef5-46ce-b350-656ab2b6c060 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_1c18bca1-5045-4fc9-abd9-8e4acc8f71f2 -aml_importer:ie_Portlist_1c18bca1-5045-4fc9-abd9-8e4acc8f71f2 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_17d6bbc4-df3d-4f05-9548-82e7227cf8bd ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_1f911931-56ba-4bb6-8abf-53e73b46c9f7 -aml_importer:ie_Portlist_1f911931-56ba-4bb6-8abf-53e73b46c9f7 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_328efddb-d056-40cb-b177-4674361be7be ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_21b67549-def3-4a21-9db2-6e1c17daa0fc -aml_importer:ie_Portlist_21b67549-def3-4a21-9db2-6e1c17daa0fc rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_41e16462-63f1-4a2b-96d2-9bfe032838b0 , - aml_importer:ei_EthernetSocket2_f92432c7-7db5-4ee6-8f8b-96d58ab4b6b7 , - aml_importer:ei_EthernetSocket3_ad4fb3b9-a476-4ac8-b83f-f3c99bca1513 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_253d3a90-679b-4e46-8ff3-eba6e376fae2 -aml_importer:ie_Portlist_253d3a90-679b-4e46-8ff3-eba6e376fae2 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_a92c7873-0a07-4694-92eb-4e5afa8851a4 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_258962d3-f118-4c36-b219-fdf01b457dce -aml_importer:ie_Portlist_258962d3-f118-4c36-b219-fdf01b457dce rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket10_17701d76-794d-4eda-9aa1-44dfd9ee1b18 , - aml_importer:ei_EthernetSocket11_6847e2e4-aadf-4808-aacd-aeba5837517e , - aml_importer:ei_EthernetSocket12_eedd7431-8f9c-45a7-8195-d01a4c446656 , - aml_importer:ei_EthernetSocket13_0c1aaf7d-4170-4621-9edd-109072f8cd7e , - aml_importer:ei_EthernetSocket14_6fa6d0d2-2b34-4115-a14d-18c5a224e54e , - aml_importer:ei_EthernetSocket1_829e06ef-1ede-49f3-8e55-a6a18ffcdace , - aml_importer:ei_EthernetSocket2_2aba6457-9137-470a-b03c-2ea7144890d6 , - aml_importer:ei_EthernetSocket3_818fe45b-1f74-4b1e-8a8f-71330e70eba1 , - aml_importer:ei_EthernetSocket4_c1e9b84e-e655-4dff-aa82-866445a091a3 , - aml_importer:ei_EthernetSocket5_10ad4d48-9f71-4e8f-b52d-735e19c529ab , - aml_importer:ei_EthernetSocket6_c41d5604-d159-42c6-b3c6-2c034d52246b , - aml_importer:ei_EthernetSocket7_bddd02f6-f870-4457-84f6-cb18ba0b1001 , - aml_importer:ei_EthernetSocket8_393fa348-770a-4479-9dfa-a2a7786a0bda , - aml_importer:ei_EthernetSocket9_71125503-ca69-4789-8ab6-2c12a4068e8e ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_28da059b-1379-4b98-a3bf-853221859659 -aml_importer:ie_Portlist_28da059b-1379-4b98-a3bf-853221859659 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_0e28cd59-35a1-4726-b672-366db5780dd4 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_3336a3ca-fd3b-4277-b611-02b7a7a4d9af -aml_importer:ie_Portlist_3336a3ca-fd3b-4277-b611-02b7a7a4d9af rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_34fe9386-a622-4165-a63b-62fe8c8ee1d6 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_34b6e14b-c319-4671-bc49-bcb2c916f147 -aml_importer:ie_Portlist_34b6e14b-c319-4671-bc49-bcb2c916f147 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_WirelessInterface1_a288c0ef-c44e-4cb1-b9fe-53754023fff1 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_3a2cbfe7-ef3e-4701-8903-7c9134daaabb -aml_importer:ie_Portlist_3a2cbfe7-ef3e-4701-8903-7c9134daaabb rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_d833a7f9-908e-4b0d-88d2-16298bb533cf ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_3ac714dc-9e0c-4520-b8a6-77ef55c18b46 -aml_importer:ie_Portlist_3ac714dc-9e0c-4520-b8a6-77ef55c18b46 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_DataSocket_807dacba-3d37-4be1-a95d-f534dc00bca4 , - aml_importer:ei_EthernetSocket_3e5cccb8-098e-4e8c-b66d-0c17f7a536ca , - aml_importer:ei_MotorSocket_c957622e-197f-485d-bec6-29f81153fb2f ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_5093df14-ac72-4c01-a4fb-e946b1cda940 -aml_importer:ie_Portlist_5093df14-ac72-4c01-a4fb-e946b1cda940 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_a2c82022-d2be-4355-8911-c826a52fc8b2 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_540cf162-d674-4e8f-a3cd-ed9ee550ef66 -aml_importer:ie_Portlist_540cf162-d674-4e8f-a3cd-ed9ee550ef66 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_DataSocket_686ff996-1a0c-4a3a-bd0d-be67fd34cafc , - aml_importer:ei_MotorSocket_0ccfc25b-fefa-4a39-a516-300776c0a425 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_54a6baf3-2f81-4466-b196-76764b661550 -aml_importer:ie_Portlist_54a6baf3-2f81-4466-b196-76764b661550 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_53a5f197-a511-4e71-84e9-2ab523099198 , - aml_importer:ei_EthernetSocket2_341486c1-612f-40ea-81af-36f34b6681c4 , - aml_importer:ei_EthernetSocket3_28d87e93-ae2d-4f6b-afef-ff28b4c995aa , - aml_importer:ei_EthernetSocket4_1feae021-7b03-4bd6-ae49-5c2b699741a3 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_54d52d51-2455-49d0-b054-a0c1859f9f69 -aml_importer:ie_Portlist_54d52d51-2455-49d0-b054-a0c1859f9f69 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_3ff51c5f-de99-4bb4-b326-9877d03faecb ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_5a5e5376-5105-4d5b-bae4-0e21a9f428ce -aml_importer:ie_Portlist_5a5e5376-5105-4d5b-bae4-0e21a9f428ce rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_89571e9b-e0f0-4856-b72a-7897ae1cf7ad ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_5ae73d3b-44fd-4f42-bc1a-5c3b217ee997 -aml_importer:ie_Portlist_5ae73d3b-44fd-4f42-bc1a-5c3b217ee997 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_a02963d4-9d31-4dc2-98ff-239192d33803 , - aml_importer:ei_EthernetSocket2_dad4357c-c01f-4c20-833e-cdda1199d5c2 , - aml_importer:ei_EthernetSocket3_2839194e-f970-4f48-9510-c8dd9d7c78f5 , - aml_importer:ei_EthernetSocket4_5830331c-a53c-4a17-aa6d-47f99a759b32 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_61d16053-3272-4d71-a47e-3120972fde53 -aml_importer:ie_Portlist_61d16053-3272-4d71-a47e-3120972fde53 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_a7278c83-fe80-4c1d-bb62-f78d3c568af8 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_64d1dea7-30d1-4f8e-a41e-e09b1c689f9b -aml_importer:ie_Portlist_64d1dea7-30d1-4f8e-a41e-e09b1c689f9b rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_DataSocket_4af3778d-2956-4fdf-9345-d1fc5957528a , - aml_importer:ei_EthernetSocket_8186e078-1346-489f-baed-bfa4e8b524f3 , - aml_importer:ei_MotorSocket_4d895e1a-ce3b-471b-bd55-4cd328d4bb8e ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_67231c27-d1ae-4b80-af71-249d4a0e5e3e -aml_importer:ie_Portlist_67231c27-d1ae-4b80-af71-249d4a0e5e3e rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_DataSocket_846549de-aa8c-4c87-900e-543d02116fe4 , - aml_importer:ei_MotorSocket_38a06c3f-ad69-4eed-9df0-d0320219f65a ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_73aea3b9-26f1-43ef-adb4-2c78292ee5f5 -aml_importer:ie_Portlist_73aea3b9-26f1-43ef-adb4-2c78292ee5f5 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_2070bd6b-0107-425c-90e0-bfff8fd41c95 , - aml_importer:ei_EthernetSocket2_b02527e7-57d7-46d0-8ec5-5332cb3400f8 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_75c30c18-a573-40f4-af44-7c50445b4dc4 -aml_importer:ie_Portlist_75c30c18-a573-40f4-af44-7c50445b4dc4 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_3b2421f0-e997-4a03-a6c3-f6959e16a1d2 , - aml_importer:ei_EthernetSocket2_cc03190d-ad77-410a-87c6-ce5e32fe5894 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_871222d1-7d4d-412d-9c10-aeef833e4b4b -aml_importer:ie_Portlist_871222d1-7d4d-412d-9c10-aeef833e4b4b rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_cb3518ed-a657-40f9-8c13-3cfbd60ea63a , - aml_importer:ei_EthernetSocket2_c5abb676-677e-46f5-be24-18907e30b6dc ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_875cb0fa-93d7-4082-b96a-eff064220be5 -aml_importer:ie_Portlist_875cb0fa-93d7-4082-b96a-eff064220be5 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_DataSocket_7e49a15d-3674-4c83-9b3e-cb30a3ba0fe8 , - aml_importer:ei_EthernetSocket_642233fd-820b-40fc-8705-9908fd914dac , - aml_importer:ei_MotorSocket_ed3aabca-267d-46c4-b511-77d151c7846f ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_8961baa4-008f-4e8f-a746-d08c6e4bd536 -aml_importer:ie_Portlist_8961baa4-008f-4e8f-a746-d08c6e4bd536 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_WirelessInterface1_a3ff8a82-d3c1-40c8-b02c-5a622c97750c ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_8fe56bfd-ee80-4917-bf13-c150f58abf8d -aml_importer:ie_Portlist_8fe56bfd-ee80-4917-bf13-c150f58abf8d rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_4004db01-a168-4e93-b4b3-44494dc62463 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_8ffe3a53-af7b-4bec-a3ec-29d29dfbf891 -aml_importer:ie_Portlist_8ffe3a53-af7b-4bec-a3ec-29d29dfbf891 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_2d23b693-4fdd-45f5-8541-22dfd91ad4b6 , - aml_importer:ei_EthernetSocket2_a9bcea30-40e4-4439-a855-e4b088f1254f , - aml_importer:ei_EthernetSocket3_6fea490b-3e8f-4243-85b9-e6e0d8f24e18 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_950a09af-e9d7-4f21-8acb-d46771e2f634 -aml_importer:ie_Portlist_950a09af-e9d7-4f21-8acb-d46771e2f634 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_fc47c0ff-3e24-405a-a852-953b71ee65b6 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_9e0353d3-876b-443b-b1b9-93bc26113d19 -aml_importer:ie_Portlist_9e0353d3-876b-443b-b1b9-93bc26113d19 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_c80744fd-2711-491f-8aac-776e9c28c62f ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_a58da2cd-c3fd-4ea3-a5f1-8201c54f7a3c -aml_importer:ie_Portlist_a58da2cd-c3fd-4ea3-a5f1-8201c54f7a3c rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_311a9abc-3c8e-4675-a111-fd30738f2732 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_a786feca-89da-4e6e-8661-4d0c3d32b922 -aml_importer:ie_Portlist_a786feca-89da-4e6e-8661-4d0c3d32b922 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_bda9ab9d-a3e8-4753-8a32-2f460711e08c ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_bd1d02e1-de6e-43c1-8d50-d0d5d306e4af -aml_importer:ie_Portlist_bd1d02e1-de6e-43c1-8d50-d0d5d306e4af rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_DataSocket_92cbf340-ae86-4bbd-9ce9-e9995c8255ff , - aml_importer:ei_MotorSocket_8b7f2dde-0548-4459-9b33-bf7a7875e0ed ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_c4178773-3a15-4cd6-b0be-c1178808e8c6 -aml_importer:ie_Portlist_c4178773-3a15-4cd6-b0be-c1178808e8c6 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_3ec77b75-860c-4856-a6b1-638136639ac8 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_c5d58e92-b6d1-4239-afac-68cfeab5cf18 -aml_importer:ie_Portlist_c5d58e92-b6d1-4239-afac-68cfeab5cf18 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_2f28d804-7a56-424f-b7b7-27e66f84eb16 , - aml_importer:ei_EthernetSocket2_7db774dd-f913-4c9e-a710-881a4adf8731 , - aml_importer:ei_EthernetSocket3_6e7d59c5-d96e-4e5b-814f-e94c5858faea ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_c6a3f2ed-4d18-4109-bbcc-7bda96340947 -aml_importer:ie_Portlist_c6a3f2ed-4d18-4109-bbcc-7bda96340947 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_2a220313-14f5-466d-9338-1a0db0d2ffef , - aml_importer:ei_WirelessInterface1_1856e465-4f19-4308-a9fb-5b903c6addf1 , - aml_importer:ei_WirelessInterface2_68cdcef0-c91a-4abb-83cb-e95450a9429d , - aml_importer:ei_WirelessInterface3_4cd4526f-ba94-407a-8b36-8f30f39dcf28 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_cb19cccd-fafb-4b38-b812-773906e1dd49 -aml_importer:ie_Portlist_cb19cccd-fafb-4b38-b812-773906e1dd49 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_1191a78f-9c97-4b0c-bdb0-0a920a8152ff , - aml_importer:ei_EthernetSocket2_6bf6a4bd-7bef-412c-938b-4d3bde1bfa62 , - aml_importer:ei_EthernetSocket3_e4931324-995a-4f20-ab21-384fb1ffea6d ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_cdeea2dd-6a3e-42a3-9a70-cdaa513dcdc4 -aml_importer:ie_Portlist_cdeea2dd-6a3e-42a3-9a70-cdaa513dcdc4 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_aa0cfc1c-4738-4da7-9e0f-c582c808f0a9 , - aml_importer:ei_EthernetSocket2_504b0974-f88e-4a2b-9c7f-28d1b54859ce , - aml_importer:ei_EthernetSocket3_1c9c25cb-e95a-4708-a2ca-65e252b24a3f , - aml_importer:ei_EthernetSocket4_c57b5d9b-d2a1-44cf-bb7a-57a60957247a ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_d45d127c-9ade-4ea9-b503-bbfc5c80f2fe -aml_importer:ie_Portlist_d45d127c-9ade-4ea9-b503-bbfc5c80f2fe rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_693e5301-37c0-4168-8f29-0908cb40c024 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_d6aa692a-55a6-46ed-8d0d-610e43b40ecd -aml_importer:ie_Portlist_d6aa692a-55a6-46ed-8d0d-610e43b40ecd rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_83e071e7-772b-4b50-ae5a-70f263a2bddb , - aml_importer:ei_EthernetSocket2_19ba8293-31eb-4e43-a11f-7b4011957ae1 , - aml_importer:ei_EthernetSocket3_6ebaee6c-fc37-424b-b713-978397078156 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_dafd7fbd-360d-4f1e-aa61-1a4afbd5de05 -aml_importer:ie_Portlist_dafd7fbd-360d-4f1e-aa61-1a4afbd5de05 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_b25aef65-333a-4adc-9bd7-29d88a99349c ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_db884b3c-cf71-41ee-836e-c135f82af4b0 -aml_importer:ie_Portlist_db884b3c-cf71-41ee-836e-c135f82af4b0 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_34c5a701-1da9-4a1e-b1fc-5e72091da36f ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_dbc10847-03d6-44b2-92f4-4f0350ca8fe4 -aml_importer:ie_Portlist_dbc10847-03d6-44b2-92f4-4f0350ca8fe4 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_881a9b51-6752-4aa8-8471-714015644adf ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_dc967453-2785-4472-8f12-e9c4cc7c7701 -aml_importer:ie_Portlist_dc967453-2785-4472-8f12-e9c4cc7c7701 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_WirelessInterface1_a3d5bb25-f7f2-4c20-8cbc-9ce7f8115a34 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_deedce45-802a-4e57-9535-4cee2506156e -aml_importer:ie_Portlist_deedce45-802a-4e57-9535-4cee2506156e rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_e351e1b0-8e14-4fc5-b1b8-4d9a731afe5a ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_e0f59bb3-daa6-4af9-ac74-e89e33084015 -aml_importer:ie_Portlist_e0f59bb3-daa6-4af9-ac74-e89e33084015 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_DataSocket_e01de9a6-af8d-4aa5-8f5f-57080f540b6a , - aml_importer:ei_MotorSocket_4e8f851e-faac-4b92-a8db-987634653157 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_e11f7457-d2f9-4350-8445-c626b1316a97 -aml_importer:ie_Portlist_e11f7457-d2f9-4350-8445-c626b1316a97 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_d507e3e3-1a9c-4957-b399-c96b9c68c09a , - aml_importer:ei_EthernetSocket2_3ec391ca-8953-416f-85ad-0c97a1a1a501 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_e4d96340-7ee4-45a1-bdc0-7d972367ccb8 -aml_importer:ie_Portlist_e4d96340-7ee4-45a1-bdc0-7d972367ccb8 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_e3204a83-9a92-404e-99ae-decdfec06045 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_e672c177-89b1-4da0-bfb2-8bacfe18919d -aml_importer:ie_Portlist_e672c177-89b1-4da0-bfb2-8bacfe18919d rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_6f4fad76-7a6b-4156-90be-01c354d32800 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Portlist_ea23fc45-ad94-4b86-8a4c-c4d759446df2 -aml_importer:ie_Portlist_ea23fc45-ad94-4b86-8a4c-c4d759446df2 rdf:type owl:NamedIndividual , - aml_importer:PortList ; - aml_ontology:hasEI aml_importer:ei_EthernetSocket1_3af32e21-6a1c-4d22-aa93-ebd5f2174376 , - aml_importer:ei_EthernetSocket2_b8fd1fdb-5185-47da-a635-425c897b4a0e , - aml_importer:ei_EthernetSocket3_c3e33c4a-bb75-4f10-9720-c8eea6ef90c9 , - aml_importer:ei_EthernetSocket4_47f2bfca-7a36-4ae8-b955-b5aa88e734b8 , - aml_importer:ei_EthernetSocket5_7341e507-7cca-4692-90d1-7efca1a55850 ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Program_4971dccf-ad4c-4770-b809-518f1e2ea099 -aml_importer:ie_Program_4971dccf-ad4c-4770-b809-518f1e2ea099 rdf:type owl:NamedIndividual , - aml_importer:PLCProgram ; - aml_importer:hasCopyProtection "True" ; - aml_importer:hasKnowHowProtection "True" ; - rdfs:comment "InternalElement" ; - rdfs:label "Program" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Program_66b2195d-ec2d-472f-9407-558770fe8075 -aml_importer:ie_Program_66b2195d-ec2d-472f-9407-558770fe8075 rdf:type owl:NamedIndividual , - aml_importer:PLCProgram ; - aml_importer:hasCopyProtection "True" ; - aml_importer:hasKnowHowProtection "True" ; - rdfs:comment "InternalElement" ; - rdfs:label "Program" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Program_89b2c13b-7614-4964-be85-6d9d8505fecc -aml_importer:ie_Program_89b2c13b-7614-4964-be85-6d9d8505fecc rdf:type owl:NamedIndividual , - aml_importer:PLCProgram ; - aml_importer:hasKnowHowProtection "True" ; - rdfs:comment "InternalElement" ; - rdfs:label "Program" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 -aml_importer:ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 rdf:type owl:NamedIndividual , - aml_importer:PLCProgram ; - rdfs:comment "InternalElement" ; - rdfs:label "Program" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SCADA_e3f0537e-2d70-4bb2-a538-e31e2c74d8e7 -aml_importer:ie_SCADA_e3f0537e-2d70-4bb2-a538-e31e2c74d8e7 rdf:type owl:NamedIndividual , - aml_importer:SCADAZone ; - aml_ontology:hasIE aml_importer:ie_LogicalNetwork_51a7d9fa-5805-4038-87d3-9d7158e486d0 , - aml_importer:ie_PhysicalNetwork_5d714a90-b712-4c6e-89c1-1df53350637a , - aml_importer:ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 , - aml_importer:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , - aml_importer:ie_ScalanceX414-3e-1_f54529af-7587-4d9f-be29-a7c8bfdc1db4 ; - rdfs:comment "InternalElement" ; - rdfs:label "SCADA" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 -aml_importer:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 rdf:type owl:NamedIndividual , - aml_importer:HMI ; - aml_ontology:hasIE aml_importer:ie_Portlist_dbc10847-03d6-44b2-92f4-4f0350ca8fe4 ; - aml_importer:hasCpePart "o" ; - aml_importer:hasCpeProduct "xbtgh_firmware" ; - aml_importer:hasCpeVendor "schneider-electric" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "SE_XBTGT1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a -aml_importer:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a rdf:type owl:NamedIndividual , - aml_importer:MobileEngineeringWorkstation ; - aml_ontology:hasIE aml_importer:ie_Portlist_c4178773-3a15-4cd6-b0be-c1178808e8c6 ; - rdfs:comment "InternalElement" ; - rdfs:label "SIMATICFieldPGM6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 -aml_importer:ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 rdf:type owl:NamedIndividual , - aml_importer:Historian ; - aml_ontology:hasIE aml_importer:ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a , - aml_importer:ie_Portlist_d45d127c-9ade-4ea9-b503-bbfc5c80f2fe , - aml_importer:ie_SimaticProcessHistorian_438e202e-e43f-49c8-a237-a81d8e87ad40 ; - rdfs:comment "InternalElement" ; - rdfs:label "SIMATICHistorian1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 -aml_importer:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 rdf:type owl:NamedIndividual , - aml_importer:SCADASystem ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_58dd080a-5aac-41ce-b119-aef565a368ba , - aml_importer:ie_Portlist_253d3a90-679b-4e46-8ff3-eba6e376fae2 , - aml_importer:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 ; - rdfs:comment "InternalElement" ; - rdfs:label "SIMATICWinCCSvr1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ST010_AF138E59-0000-17AC-556E-B124000031B3 -aml_importer:ie_ST010_AF138E59-0000-17AC-556E-B124000031B3 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_010ABS100_AF138E59-0000-17AC-556E-B570000031F8 , - aml_importer:ie_010RB_100_AF138E59-0000-17AC-556E-B124000031B4 , - aml_importer:ie_010VRE100_AF138E59-0000-17AC-556E-B56E000031F3 ; - rdfs:comment "InternalElement" ; - rdfs:label "ST010" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ST020_AF138E59-0000-17AC-556E-B57B000031FF -aml_importer:ie_ST020_AF138E59-0000-17AC-556E-B57B000031FF rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_020RB_100_AF138E59-0000-17AC-556E-B57B00003200 ; - rdfs:comment "InternalElement" ; - rdfs:label "ST020" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ST030_AF138E59-0000-17AC-556E-B81A0000323E -aml_importer:ie_ST030_AF138E59-0000-17AC-556E-B81A0000323E rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_030GST100_AF138E59-0000-17AC-556E-BC030000331D , - aml_importer:ie_030RB_100_AF138E59-0000-17AC-556E-B81A0000323F , - aml_importer:ie_030RB_200_AF138E59-0000-17AC-556E-B8BD000032A1 , - aml_importer:ie_030RB_300_AF138E59-0000-17AC-556E-B961000032DA ; - rdfs:comment "InternalElement" ; - rdfs:label "ST030" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ST040_Uebergabe_AF138E59-0000-17AC-556E-BC4600003330 -aml_importer:ie_ST040_Uebergabe_AF138E59-0000-17AC-556E-BC4600003330 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_040ABS100_AF138E59-0000-17AC-556E-BC4600003331 ; - rdfs:comment "InternalElement" ; - rdfs:label "ST040_Uebergabe" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B155000031D3 -aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B155000031D3 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_160C2A8B-B454-4167-9405-4F182A8F2BBC ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D4 ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B5B00000321F -aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B5B00000321F rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_087655E1-F357-4975-AA12-F085961CF310 ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B000003220 ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B84F0000325F -aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B84F0000325F rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_8D49D096-625E-46F8-88E3-A2622D385CE6 ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F00003260 ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B8F4000032C0 -aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B8F4000032C0 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_A0F62C4D-A68D-4C23-9107-E7D8680DD97B ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032C1 ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B99B000032F9 -aml_importer:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B99B000032F9 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_6FE99409-18FD-4091-B0EB-26699CF84285 ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032FA ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ScalanceX414-3e-1Safety_916ee601-f2c8-4319-a5c3-cd3f99e5431c -aml_importer:ie_ScalanceX414-3e-1Safety_916ee601-f2c8-4319-a5c3-cd3f99e5431c rdf:type owl:NamedIndividual , - aml_importer:Switch ; - aml_ontology:hasIE aml_importer:ie_Portlist_ea23fc45-ad94-4b86-8a4c-c4d759446df2 ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "scalance_x414-3e_firmware" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "2.1.1" ; - rdfs:comment "InternalElement" ; - rdfs:label "ScalanceX414-3e-1Safety" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 -aml_importer:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 rdf:type owl:NamedIndividual , - aml_importer:Switch ; - aml_ontology:hasIE aml_importer:ie_Portlist_258962d3-f118-4c36-b219-fdf01b457dce ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "scalance_x414-3e_firmware" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "2.1.1" ; - rdfs:comment "InternalElement" ; - rdfs:label "ScalanceX414-3e-1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_ScalanceX414-3e-1_f54529af-7587-4d9f-be29-a7c8bfdc1db4 -aml_importer:ie_ScalanceX414-3e-1_f54529af-7587-4d9f-be29-a7c8bfdc1db4 rdf:type owl:NamedIndividual , - aml_importer:Switch ; - aml_ontology:hasIE aml_importer:ie_Portlist_8ffe3a53-af7b-4bec-a3ec-29d29dfbf891 ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "scalance_x414-3e_firmware" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "2.1.1" ; - rdfs:comment "InternalElement" ; - rdfs:label "ScalanceX414-3e-1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schaltschraenke_A_AF138E59-0000-17AC-556E-BC4800003336 -aml_importer:ie_Schaltschraenke_A_AF138E59-0000-17AC-556E-BC4800003336 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Dummy_SPS_AF138E59-0000-17AC-556E-BC4800003337 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schaltschraenke_A" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schlitten_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B159000031E2 -aml_importer:ie_Schlitten_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B159000031E2 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_010RB_100_KR240R2700prime__F70A37BF-82A5-4540-BDEB-3B9BB23BE8BC , - aml_importer:ei_Attachment_COLLADA_010RB_100_KR240R2700prime__CE0465E3-A2EA-42E2-8086-A53E69AA7988 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten_010RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schlitten_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B5B30000322E -aml_importer:ie_Schlitten_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B5B30000322E rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_020RB_100_KR240R2700prime__9E3A7778-5111-4959-8BE3-A2B2D70E4358 , - aml_importer:ei_Attachment_COLLADA_020RB_100_KR240R2700prime__85BBF595-6FC5-4013-B6F5-AB2B43CAA857 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten_020RB_100_KR240R2700prime_" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schlitten_AF138E59-0000-17AC-556E-B159000031E1 -aml_importer:ie_Schlitten_AF138E59-0000-17AC-556E-B159000031E1 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_74CF2758-C2F7-4C9C-9805-AD0BE27D4CB7 ; - aml_ontology:hasIE aml_importer:ie_Schlitten_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B159000031E2 , - aml_importer:ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B159000031E3 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.187828"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.075"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schlitten_AF138E59-0000-17AC-556E-B5B30000322D -aml_importer:ie_Schlitten_AF138E59-0000-17AC-556E-B5B30000322D rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_08C53529-F700-4251-A1C8-8221E02BA4AB ; - aml_ontology:hasIE aml_importer:ie_Schlitten_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B5B30000322E , - aml_importer:ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B5B30000322F ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.751966"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.075"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B159000031E3 -aml_importer:ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B159000031E3 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Roboterposition_Stellung_A_6BFD39F9-8C6E-4EF7-89A6-F0E409A3E0DA , - aml_importer:ei_Attachment_Roboterposition_Stellung_A_A0791535-CCB3-459B-90EA-86ED45CEC7F8 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "4.109732"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.932"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten_Roboterposition_Stellung_A" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B5B30000322F -aml_importer:ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B5B30000322F rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_Roboterposition_Stellung_A_B8E999EC-E6C7-4203-981B-45D1993E6384 , - aml_importer:ei_Attachment_Roboterposition_Stellung_A_3064499C-E3E0-4D19-BFB6-52579034DA24 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "4.109732"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.432"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten_Roboterposition_Stellung_A" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzgittertuer.1_AF138E59-0000-17AC-556E-BC4E00003393 -aml_importer:ie_Schutzgittertuer.1_AF138E59-0000-17AC-556E-BC4E00003393 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_C7BDE75A-7AFF-4649-BD28-2DDC46149F36 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.7"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzgittertuer.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzgittertuer.2_AF138E59-0000-17AC-556E-BC4F00003397 -aml_importer:ie_Schutzgittertuer.2_AF138E59-0000-17AC-556E-BC4F00003397 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_3C9EB814-E7AF-4055-A259-532B8C573B12 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-11.2"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzgittertuer.2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzgittertuer.3_AF138E59-0000-17AC-556E-BC50000033B7 -aml_importer:ie_Schutzgittertuer.3_AF138E59-0000-17AC-556E-BC50000033B7 rdf:type owl:NamedIndividual , - aml_importer:Clamp ; - aml_ontology:hasEI aml_importer:ei_Representation_E8F7757E-50FE-4AD9-89A8-30C588AE2073 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-11.675"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzgittertuer.3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4B0000335E -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4B0000335E rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_041B7419-8770-4264-A1B6-C418D01A33A7 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003364 -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003364 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_AD2FB08A-F868-4385-8A8A-E05B681DEB5E ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003372 -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003372 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_96FAB428-41F9-476D-8DCF-C66F6968183C ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003383 -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003383 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_8D671A40-A943-4D73-A015-6C29BB33F97E ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003386 -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003386 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_CBB61637-70FA-4DF6-8258-E150D9F7FC65 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003389 -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003389 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_C6CD5063-8F95-4C5B-BF50-ADCBAFDD77BB ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338C -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338C rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_C17256CA-C14D-482E-A569-C3F7573CEF98 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338F -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338F rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_9628D4AC-CF41-4793-9AD2-42CF76B38842 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4F0000339A -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4F0000339A rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_B0D18424-EDDA-4427-B8FF-5F93810A1EBD ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC50000033BF -aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC50000033BF rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_7BA2129E-5C48-4F56-A2B9-395566413D75 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.11"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.10_AF138E59-0000-17AC-556E-BC50000033A1 -aml_importer:ie_Schutzzaun_2000x1000.10_AF138E59-0000-17AC-556E-BC50000033A1 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-11.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.10" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.11_AF138E59-0000-17AC-556E-BC50000033B1 -aml_importer:ie_Schutzzaun_2000x1000.11_AF138E59-0000-17AC-556E-BC50000033B1 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-21.05"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.5"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.11" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.12_AF138E59-0000-17AC-556E-BC51000033C2 -aml_importer:ie_Schutzzaun_2000x1000.12_AF138E59-0000-17AC-556E-BC51000033C2 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-23.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.12" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC4B0000335D -aml_importer:ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC4B0000335D rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335F , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4B0000335E ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-157.5"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.325"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC50000033A5 -aml_importer:ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC50000033A5 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-13.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC4C00003363 -aml_importer:ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC4C00003363 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003365 , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003364 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "45"^^rdfs:Literal ; - aml_importer:hasFrame_x "-9.991637"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.90481"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC50000033A8 -aml_importer:ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC50000033A8 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-17.05"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.5"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC4C00003371 -aml_importer:ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC4C00003371 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003373 , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003372 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.2"^^rdfs:Literal ; - aml_importer:hasFrame_y "7.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC50000033A9 -aml_importer:ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC50000033A9 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-20.05"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.5"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4C0000338B -aml_importer:ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4C0000338B rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338D , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338C ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.7"^^rdfs:Literal ; - aml_importer:hasFrame_y "2.9"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4F00003399 -aml_importer:ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4F00003399 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4F0000339B , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4F0000339A ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-12.5"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.5_AF138E59-0000-17AC-556E-BC50000033BE -aml_importer:ie_Schutzzaun_2000x1000.5_AF138E59-0000-17AC-556E-BC50000033BE rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033C0 , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC50000033BF ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-10.5"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.5" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC4C00003382 -aml_importer:ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC4C00003382 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003384 , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003383 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "135"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.3"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC50000033AD -aml_importer:ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC50000033AD rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-17.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC4C00003385 -aml_importer:ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC4C00003385 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003387 , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003386 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-6.3"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.7" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC50000033AE -aml_importer:ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC50000033AE rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-22.05"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.5"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.7" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC4C00003388 -aml_importer:ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC4C00003388 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338A , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003389 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.7"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.8" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC50000033B0 -aml_importer:ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC50000033B0 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-25.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "4.4"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.8" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC4C0000338E -aml_importer:ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC4C0000338E rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003390 , - aml_importer:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338F ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.7"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.9" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC500000339C -aml_importer:ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC500000339C rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "45"^^rdfs:Literal ; - aml_importer:hasFrame_x "-12.35"^^rdfs:Literal ; - aml_importer:hasFrame_y "7.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.9" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.10_AF138E59-0000-17AC-556E-BC4C00003360 -aml_importer:ie_Schutzzaun_2000x2000.10_AF138E59-0000-17AC-556E-BC4C00003360 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003361 , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003362 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-8"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.9"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.10" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC4C00003366 -aml_importer:ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC4C00003366 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003367 , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003368 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-10.675"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.11" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC50000033AA -aml_importer:ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC50000033AA rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-19.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.11" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.12_AF138E59-0000-17AC-556E-BC50000033A0 -aml_importer:ie_Schutzzaun_2000x2000.12_AF138E59-0000-17AC-556E-BC50000033A0 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-13.05"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.5"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.12" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC4C0000336B -aml_importer:ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC4C0000336B rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336C , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000336D ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.325"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.13" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC50000033AB -aml_importer:ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC50000033AB rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033AC ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-12.35"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.13" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC4C0000336E -aml_importer:ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC4C0000336E rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336F , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003370 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.2"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.14" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC50000033B3 -aml_importer:ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC50000033B3 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-23.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.14" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC4C00003374 -aml_importer:ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC4C00003374 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003375 , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003376 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.2"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.15" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC50000033B4 -aml_importer:ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC50000033B4 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-25.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "6.4"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.15" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC4C00003377 -aml_importer:ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC4C00003377 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003378 , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003379 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-7.2"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.16" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC50000033B5 -aml_importer:ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC50000033B5 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-25.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.4"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.16" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC4C0000337A -aml_importer:ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC4C0000337A rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337B , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337C ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-9.2"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.17" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC50000033B6 -aml_importer:ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC50000033B6 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-25.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.5"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.17" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.18_AF138E59-0000-17AC-556E-BC4C0000337D -aml_importer:ie_Schutzzaun_2000x2000.18_AF138E59-0000-17AC-556E-BC4C0000337D rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337E , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337F ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-11.2"^^rdfs:Literal ; - aml_importer:hasFrame_y "7.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.18" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.19_AF138E59-0000-17AC-556E-BC50000033BB -aml_importer:ie_Schutzzaun_2000x2000.19_AF138E59-0000-17AC-556E-BC50000033BB rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033BC , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BD ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-10.5"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.19" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003346 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003346 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4900003347 , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003348 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-1.6"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003348 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003348 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_EA6A0D28-0713-4FC5-B4BD-8109D6117526 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334B -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334B rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_6B79A914-C147-4410-AEE8-B963A6ABA00F ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334E -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334E rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_3FE655E7-FEF8-4A71-B14C-38DB1602545B ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003351 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003351 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_A28D9B44-DF73-480E-99AD-C2CC5E704FEE ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003356 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003356 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_3A4C1DC3-1A56-4714-B7ED-5AFB7614EEF5 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003359 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003359 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_EEBE0762-5E41-4D29-A7C5-BF6F2FA3389D ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000335C -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000335C rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_91C60239-4DC6-4B63-B6A6-D4FB49CDCA2C ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003362 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003362 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_E4D4046E-398B-4730-B707-224DED4A7E66 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003368 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003368 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_1C035F95-FD10-4A4D-AF28-C5DB3927A5C2 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000336D -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000336D rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_A53433C2-43AC-4BC1-9667-491E627DAFDD ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003370 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003370 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_2A7FBD92-1BAF-484F-8BE2-CA8A767DCECA ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003376 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003376 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_B963E0D8-CD30-41A9-A720-8C7F6C246A26 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003379 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003379 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_645B6406-D0BE-4F34-BB4C-94771B578F1D ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337C -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337C rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_CFD78EB8-CA34-4CF2-B9DC-1C7F54D2520B ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337F -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337F rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_1853FF3C-F14C-4290-A773-BA13E8AFF421 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC500000339F -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC500000339F rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_B51229A6-6E99-46CE-A079-54A47478155C ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033A2 -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033A2 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-17.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BA -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BA rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_BC7066CC-91E1-4984-95C6-7ABD53814C2F ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BD -aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BD rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_56329413-4E68-4697-B325-4EB92177B090 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.21_AF138E59-0000-17AC-556E-BC50000033B8 -aml_importer:ie_Schutzzaun_2000x2000.21_AF138E59-0000-17AC-556E-BC50000033B8 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033B9 , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BA ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-10.5"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.21" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC4B00003349 -aml_importer:ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC4B00003349 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334A , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334B ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.6"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC50000033A3 -aml_importer:ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC50000033A3 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-15.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC4B0000334C -aml_importer:ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC4B0000334C rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334D , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334E ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-5.6"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC50000033A4 -aml_importer:ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC50000033A4 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-11.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC4B0000334F -aml_importer:ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC4B0000334F rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003350 , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003351 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-3.6"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC50000033AF -aml_importer:ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC50000033AF rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-24.05"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.5"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.5_AF138E59-0000-17AC-556E-BC500000339D -aml_importer:ie_Schutzzaun_2000x2000.5_AF138E59-0000-17AC-556E-BC500000339D rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC500000339E , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC500000339F ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-12.5"^^rdfs:Literal ; - aml_importer:hasFrame_y "5.8"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.5" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC4B00003354 -aml_importer:ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC4B00003354 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003355 , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003356 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.3"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC50000033B2 -aml_importer:ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC50000033B2 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "180"^^rdfs:Literal ; - aml_importer:hasFrame_x "-25.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "3.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.6" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC4B00003357 -aml_importer:ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC4B00003357 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003358 , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003359 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-2.3"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.7" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC50000033A6 -aml_importer:ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC50000033A6 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-21.8"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.55"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.7" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC4B0000335A -aml_importer:ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC4B0000335A rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335B , - aml_importer:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000335C ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-4.3"^^rdfs:Literal ; - aml_importer:hasFrame_y "1.6"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.8" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC50000033A7 -aml_importer:ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC50000033A7 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "90"^^rdfs:Literal ; - aml_importer:hasFrame_x "-15.05"^^rdfs:Literal ; - aml_importer:hasFrame_y "8.5"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.8" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_AF138E59-0000-17AC-556E-BC4900003344 -aml_importer:ie_Schutzzaun_AF138E59-0000-17AC-556E-BC4900003344 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_A_AF138E59-0000-17AC-556E-BC4900003345 , - aml_importer:ie_B_AF138E59-0000-17AC-556E-BC4F00003398 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003391 -aml_importer:ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003391 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasIE aml_importer:ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003392 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_H1500xB2885.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003392 -aml_importer:ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003392 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_E9C64C01-B228-41AE-8294-050FD9C5D649 ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_H1500xB2885.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticIT_ce9c09d1-f671-4eb0-9d22-c0106e731b6f -aml_importer:ie_SimaticIT_ce9c09d1-f671-4eb0-9d22-c0106e731b6f rdf:type owl:NamedIndividual ; - aml_ontology:hasIE aml_importer:ie_Basic128RSA15_b46c3d9c-712b-4044-aa7b-eba4e1c8200e ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "simatic_it_uadm" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticIT" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticProcessHistorian_438e202e-e43f-49c8-a237-a81d8e87ad40 -aml_importer:ie_SimaticProcessHistorian_438e202e-e43f-49c8-a237-a81d8e87ad40 rdf:type owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticProcessHistorian" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 -aml_importer:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 rdf:type owl:NamedIndividual , - aml_importer:PLC , - aml_importer:SIS ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_1f20ccd2-7dfc-43e0-beed-89d1f51a90eb , - aml_importer:ie_Portlist_004a5072-7168-4f4e-a8d7-208ea75f15d7 ; - aml_importer:hasCpePart "o" ; - aml_importer:hasCpeProduct "simatic_s7-1500_cpu_firmware" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "1.8.2" ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71510SPF1PN1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 -aml_importer:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 rdf:type owl:NamedIndividual , - aml_importer:PLC , - aml_importer:SIS ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_38cabac8-567f-45fa-bee9-a993bf9b5cd5 , - aml_importer:ie_Portlist_61d16053-3272-4d71-a47e-3120972fde53 ; - aml_importer:hasCpePart "o" ; - aml_importer:hasCpeProduct "simatic_s7-1500_cpu_firmware" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "1.8.2" ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71510SPF1PN2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 -aml_importer:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 rdf:type owl:NamedIndividual , - aml_importer:PLC , - aml_importer:SIS ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_bbc6d915-4d60-4b47-978e-5307bf4de171 , - aml_importer:ie_Portlist_dafd7fbd-360d-4f1e-aa61-1a4afbd5de05 ; - aml_importer:hasCpePart "o" ; - aml_importer:hasCpeProduct "simatic_s7-1500_cpu_firmware" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "1.8.2" ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71510SPF1PN3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 -aml_importer:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 rdf:type owl:NamedIndividual , - aml_importer:PLC , - aml_importer:SIS ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_c64bca0b-7201-4a6f-a196-d21ec4e9dcf0 , - aml_importer:ie_Portlist_54d52d51-2455-49d0-b054-a0c1859f9f69 ; - aml_importer:hasCpePart "o" ; - aml_importer:hasCpeProduct "simatic_s7-1500_cpu_firmware" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "1.8.2" ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71510SPF1PN" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f -aml_importer:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f rdf:type owl:NamedIndividual , - aml_importer:PLC ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_4bcbb4c2-5036-4cbc-b06e-ad542cdbb92e , - aml_importer:ie_Portlist_950a09af-e9d7-4f21-8acb-d46771e2f634 , - aml_importer:ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "simatic_s7-1516f-3_pn\\/dp_cpu" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71516F_1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 -aml_importer:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 rdf:type owl:NamedIndividual , - aml_importer:PLC ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_540da1cc-3d89-430b-9d7d-5763104d6c24 , - aml_importer:ie_Portlist_28da059b-1379-4b98-a3bf-853221859659 , - aml_importer:ie_Program_89b2c13b-7614-4964-be85-6d9d8505fecc ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "simatic_s7-1516f-3_pn\\/dp_cpu" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71516F_2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 -aml_importer:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 rdf:type owl:NamedIndividual , - aml_importer:PLC ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_c4d32fb7-0a28-4099-a8fa-0db23d405d51 , - aml_importer:ie_Portlist_1f911931-56ba-4bb6-8abf-53e73b46c9f7 , - aml_importer:ie_Program_4971dccf-ad4c-4770-b809-518f1e2ea099 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "simatic_s7-1516f-3_pn\\/dp_cpu" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71516F_3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f -aml_importer:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f rdf:type owl:NamedIndividual , - aml_importer:PLC ; - aml_ontology:hasIE aml_importer:ie_LogicalPortList_90c47391-c2fd-40b9-9dc0-1ab2f2524e08 , - aml_importer:ie_Portlist_3336a3ca-fd3b-4277-b611-02b7a7a4d9af , - aml_importer:ie_Program_66b2195d-ec2d-472f-9407-558770fe8075 ; - aml_importer:hasCpePart "h" ; - aml_importer:hasCpeProduct "simatic_s7-1516f-3_pn\\/dp_cpu" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "-" ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71516F_4" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SpotWeldingStation_AF138E59-0000-17AC-556E-B1150000319C -aml_importer:ie_SpotWeldingStation_AF138E59-0000-17AC-556E-B1150000319C rdf:type owl:NamedIndividual , - aml_importer:Resource , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Process_59dfad55-376c-4187-be99-f38a65f6e016 , - aml_importer:ei_Product_29421e10-831f-4fa1-85b0-81bb0687145c ; - aml_ontology:hasIE aml_importer:ie_ControlCabinet_76059c32-6ce6-405d-a4d0-d53172324967 , - aml_importer:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , - aml_importer:ie_HB51_A_Allgemein_AF138E59-0000-17AC-556E-BC4800003335 , - aml_importer:ie_HB51_Allgemein_AF138E59-0000-17AC-556E-BC4900003343 , - aml_importer:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , - aml_importer:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , - aml_importer:ie_ST010_AF138E59-0000-17AC-556E-B124000031B3 , - aml_importer:ie_ST020_AF138E59-0000-17AC-556E-B57B000031FF , - aml_importer:ie_ST030_AF138E59-0000-17AC-556E-B81A0000323E , - aml_importer:ie_ST040_Uebergabe_AF138E59-0000-17AC-556E-BC4600003330 , - aml_importer:ie_ScalanceX414-3e-1Safety_916ee601-f2c8-4319-a5c3-cd3f99e5431c , - aml_importer:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 , - aml_importer:ie_WHARTGW1_d3669fd5-544a-4b9b-a960-6b08c6aead4f , - aml_importer:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , - aml_importer:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , - aml_importer:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - rdfs:comment "InternalElement" ; - rdfs:label "SpotWeldingStation" . - - -### http://www.ipr.kit.edu/aml_importer#ie_SpotWelding_05c74cf1-7813-4999-9239-2259fcf63aee -aml_importer:ie_SpotWelding_05c74cf1-7813-4999-9239-2259fcf63aee rdf:type owl:NamedIndividual , - aml_importer:Process ; - aml_ontology:hasEI aml_importer:ei_LogicInterfaceActivityOnNode_89b75af1-3a02-4d85-a4e6-c491eb2dacb3 , - aml_importer:ei_LogicInterfaceGantt_1342f8d1-db6b-41e8-a387-47145362f813 , - aml_importer:ei_Product_1db172cd-14bc-4ce4-a9fe-bf99cc1598c0 , - aml_importer:ei_Resource_76e731d9-164c-4a55-9818-4dfcf9089a88 ; - rdfs:comment "InternalElement" ; - rdfs:label "SpotWelding" . - - -### http://www.ipr.kit.edu/aml_importer#ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F6 -aml_importer:ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F6 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_A2136160067_FAFD2953-C493-4F91-B269-E4ED7B1D530B , - aml_importer:ei_Attachment_COLLADA_A2136160067_31018FA2-9918-452F-9C65-0EAF670D5D6C ; - rdfs:comment "InternalElement" ; - rdfs:label "T510198_7_A2136160067" . - - -### http://www.ipr.kit.edu/aml_importer#ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F7 -aml_importer:ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F7 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_A2136160067_707CBBF0-A53F-45FC-9B77-9AA06B8167A0 , - aml_importer:ei_Attachment_COLLADA_A2136160067_4DB273D7-12ED-4A80-B6F5-8C8BE1E625A0 ; - rdfs:comment "InternalElement" ; - rdfs:label "T510198_7_A2136160067" . - - -### http://www.ipr.kit.edu/aml_importer#ie_T510198_7_AF138E59-0000-17AC-556E-B56E000031F5 -aml_importer:ie_T510198_7_AF138E59-0000-17AC-556E-B56E000031F5 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_7D3F9BC8-12C1-47CF-988E-CB99906F0A1B ; - aml_ontology:hasIE aml_importer:ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F6 , - aml_importer:ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F7 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.168859"^^rdfs:Literal ; - aml_importer:hasFrame_y "-4.851487"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "T510198_7" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Tore_A_AF138E59-0000-17AC-556E-BC4900003342 -aml_importer:ie_Tore_A_AF138E59-0000-17AC-556E-BC4900003342 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_569A87C7-5BFB-438C-9C96-8B080C3C6569 ; - rdfs:comment "InternalElement" ; - rdfs:label "Tore_A" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Tuer_re.1_AF138E59-0000-17AC-556E-BC490000333C -aml_importer:ie_Tuer_re.1_AF138E59-0000-17AC-556E-BC490000333C rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_CB398B71-D498-4994-B0EA-51B6F3D39F71 ; - aml_ontology:hasIE aml_importer:ie_Tuer_re.1_ToolMountPoint_AF138E59-0000-17AC-556E-BC490000333D ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "45"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.345614"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.845599"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Tuer_re.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Tuer_re.1_ToolMountPoint_AF138E59-0000-17AC-556E-BC490000333D -aml_importer:ie_Tuer_re.1_ToolMountPoint_AF138E59-0000-17AC-556E-BC490000333D rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_ToolMountPoint_06A4CCB6-5171-4A64-B5A8-2C0B12D6A2B1 , - aml_importer:ei_Attachment_ToolMountPoint_13C44878-2FB3-4BAA-BCBE-994C3E02CCA1 ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-90"^^rdfs:Literal ; - aml_importer:hasFrame_x "1.193536"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.005607"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.99"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "Tuer_re.1_ToolMountPoint" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Vienna_c831cade-e8b3-4698-a545-8834422d3364 -aml_importer:ie_Vienna_c831cade-e8b3-4698-a545-8834422d3364 rdf:type owl:NamedIndividual , - aml_importer:Site ; - aml_ontology:hasIE aml_importer:ie_CarBodyManufacturingFacility_5872b876-25d3-4b7f-9655-c4d2422e0197 , - aml_importer:ie_EnterpriseDMZ_abdd9c9b-7894-451a-b192-a2e7a6bd24c6 , - aml_importer:ie_Enterprise_ead68db0-74a6-4253-8e98-6b289de4cbf2 ; - rdfs:comment "InternalElement" ; - rdfs:label "Vienna" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WHARTGW1_d3669fd5-544a-4b9b-a960-6b08c6aead4f -aml_importer:ie_WHARTGW1_d3669fd5-544a-4b9b-a960-6b08c6aead4f rdf:type owl:NamedIndividual , - aml_importer:WirelessHARTGateway ; - aml_ontology:hasIE aml_importer:ie_Portlist_c6a3f2ed-4d18-4109-bbcc-7bda96340947 ; - rdfs:comment "InternalElement" ; - rdfs:label "WHARTGW1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 -aml_importer:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 rdf:type owl:NamedIndividual , - aml_importer:WirelessHARTSensor ; - aml_ontology:hasIE aml_importer:ie_Portlist_8961baa4-008f-4e8f-a746-d08c6e4bd536 ; - rdfs:comment "InternalElement" ; - rdfs:label "WHARTSensor1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 -aml_importer:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 rdf:type owl:NamedIndividual , - aml_importer:WirelessHARTSensor ; - aml_ontology:hasIE aml_importer:ie_Portlist_dc967453-2785-4472-8f12-e9c4cc7c7701 ; - rdfs:comment "InternalElement" ; - rdfs:label "WHARTSensor2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 -aml_importer:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 rdf:type owl:NamedIndividual , - aml_importer:WirelessHARTSensor ; - aml_ontology:hasIE aml_importer:ie_Portlist_34b6e14b-c319-4671-bc49-bcb2c916f147 ; - rdfs:comment "InternalElement" ; - rdfs:label "WHARTSensor3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 -aml_importer:ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 rdf:type owl:NamedIndividual , - aml_importer:Webserver ; - aml_ontology:hasIE aml_importer:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 , - aml_importer:ie_LogicalPortList_6a59f1f7-e73b-40ed-9f5b-1d74bff7e60c , - aml_importer:ie_Portlist_a58da2cd-c3fd-4ea3-a5f1-8201c54f7a3c ; - rdfs:comment "InternalElement" ; - rdfs:label "WebSvr1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db -aml_importer:ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db rdf:type owl:NamedIndividual , - aml_importer:Webserver ; - aml_ontology:hasIE aml_importer:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , - aml_importer:ie_Portlist_e672c177-89b1-4da0-bfb2-8bacfe18919d ; - rdfs:comment "InternalElement" ; - rdfs:label "WebSvr2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Weldment_e105bfe4-4fa2-48ba-ad51-345457474775 -aml_importer:ie_Weldment_e105bfe4-4fa2-48ba-ad51-345457474775 rdf:type owl:NamedIndividual , - aml_importer:Product ; - aml_ontology:hasEI aml_importer:ei_Process_c07c3906-8d6a-4bf5-b727-2dee27caeec2 , - aml_importer:ei_Resource_b660c4ab-0b21-4a62-b0bb-e5b8ae843e35 ; - rdfs:comment "InternalElement" ; - rdfs:label "Weldment" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 -aml_importer:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 rdf:type owl:NamedIndividual ; - aml_importer:hasCpePart "a" ; - aml_importer:hasCpeProduct "wincc" ; - aml_importer:hasCpeVendor "siemens" ; - aml_importer:hasCpeVersion "7.0" ; - rdfs:comment "InternalElement" ; - rdfs:label "WinCC" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WirelessConnection1_2b31412f-f823-404d-9a4f-f93197181293 -aml_importer:ie_WirelessConnection1_2b31412f-f823-404d-9a4f-f93197181293 rdf:type owl:NamedIndividual , - aml_importer:WirelessConnection ; - aml_ontology:hasEI aml_importer:ei_WirelessPlug1_97f811e1-694e-4b03-9f0b-4a0308462c02 , - aml_importer:ei_WirelessPlug2_911e7a2c-6199-4496-b4dd-a431ae2ab086 ; - rdfs:comment "InternalElement" ; - rdfs:label "WirelessConnection1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WirelessConnection2_51229621-463f-4525-94d5-84f953a9f332 -aml_importer:ie_WirelessConnection2_51229621-463f-4525-94d5-84f953a9f332 rdf:type owl:NamedIndividual , - aml_importer:WirelessConnection ; - aml_ontology:hasEI aml_importer:ei_WirelessPlug1_3e07cf2a-89c0-4000-97fd-ff6fd3b3ba7a , - aml_importer:ei_WirelessPlug2_a2d38962-e093-4d87-9399-5affac4a8bef ; - rdfs:comment "InternalElement" ; - rdfs:label "WirelessConnection2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_WirelessConnection3_bc94cef8-7f3d-4288-97b8-ccccd9417c35 -aml_importer:ie_WirelessConnection3_bc94cef8-7f3d-4288-97b8-ccccd9417c35 rdf:type owl:NamedIndividual , - aml_importer:WirelessConnection ; - aml_ontology:hasEI aml_importer:ei_WirelessPlug1_11a45cd3-d809-43a3-b4bb-082cfdb23fa7 , - aml_importer:ei_WirelessPlug2_1138b241-22e0-4fa1-b6ff-b3ae35dbe7da ; - rdfs:comment "InternalElement" ; - rdfs:label "WirelessConnection3" . - - -### http://www.ipr.kit.edu/aml_importer#ie_Zaunelement_775mm.1_AF138E59-0000-17AC-556E-BC50000033C1 -aml_importer:ie_Zaunelement_775mm.1_AF138E59-0000-17AC-556E-BC50000033C1 rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_0BF1708F-EE3C-4E4E-8BC3-13B2334D5AE2 ; - rdfs:comment "InternalElement" ; - rdfs:label "Zaunelement_775mm.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_benachbarte_Zellen_A_AF138E59-0000-17AC-556E-BC490000333E -aml_importer:ie_benachbarte_Zellen_A_AF138E59-0000-17AC-556E-BC490000333E rdf:type owl:NamedIndividual , - aml_importer:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "benachbarte_Zellen_A" . - - -### http://www.ipr.kit.edu/aml_importer#ie_drehen_fraeser_horizontal_AF138E59-0000-17AC-556E-B8B600003299 -aml_importer:ie_drehen_fraeser_horizontal_AF138E59-0000-17AC-556E-B8B600003299 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_7ADA36A4-C4F9-48EE-8EFF-AD7AB1365BB5 ; - aml_ontology:hasIE aml_importer:ie_drehen_fraeser_horizontal_rot_fraes_horizontal2_AF138E59-0000-17AC-556E-B8B60000329A ; - aml_importer:hasFrame_rx "0"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "0"^^rdfs:Literal ; - aml_importer:hasFrame_y "0"^^rdfs:Literal ; - aml_importer:hasFrame_z "0"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "drehen_fraeser_horizontal" . - - -### http://www.ipr.kit.edu/aml_importer#ie_drehen_fraeser_horizontal_rot_fraes_horizontal2_AF138E59-0000-17AC-556E-B8B60000329A -aml_importer:ie_drehen_fraeser_horizontal_rot_fraes_horizontal2_AF138E59-0000-17AC-556E-B8B60000329A rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_rot_fraes_horizontal2_C22C35F3-FD61-4CA2-B420-B8383C863507 , - aml_importer:ei_Attachment_rot_fraes_horizontal2_CF73BB31-727D-4B97-9116-F3343744B35A ; - aml_importer:hasFrame_rx "-90"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "0"^^rdfs:Literal ; - aml_importer:hasFrame_x "-0.177"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.89"^^rdfs:Literal ; - aml_importer:hasFrame_z "0.085"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "drehen_fraeser_horizontal_rot_fraes_horizontal2" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D4 -aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D4 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_2AB076C7-7A08-4678-8656-10F75F03EF19 ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031D5 ; - aml_importer:hasFrame_rx "53.275"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-51.967"^^rdfs:Literal ; - aml_importer:hasFrame_rz "177.879"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.689546"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.007554"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.164318"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B000003220 -aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B000003220 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_734AD298-632E-4E34-823D-399224D207A7 ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B000003221 ; - aml_importer:hasFrame_rx "-121.11"^^rdfs:Literal ; - aml_importer:hasFrame_ry "13.004"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-170.204"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.113588"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.359624"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.568288"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F00003260 -aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F00003260 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_8D4DE416-D829-48EB-BE69-C8455E4952DB ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F00003261 ; - aml_importer:hasFrame_rx "180"^^rdfs:Literal ; - aml_importer:hasFrame_ry "0"^^rdfs:Literal ; - aml_importer:hasFrame_rz "85.501"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.033828"^^rdfs:Literal ; - aml_importer:hasFrame_y "-1.220507"^^rdfs:Literal ; - aml_importer:hasFrame_z "1.543415"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032C1 -aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032C1 rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_51F0CD67-7EE3-486D-8C73-5CF1D641B117 ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032C2 ; - aml_importer:hasFrame_rx "104.592"^^rdfs:Literal ; - aml_importer:hasFrame_ry "71.796"^^rdfs:Literal ; - aml_importer:hasFrame_rz "105.325"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.488995"^^rdfs:Literal ; - aml_importer:hasFrame_y "0.030029"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.553073"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032FA -aml_importer:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032FA rdf:type owl:NamedIndividual , - aml_importer:Structure ; - aml_ontology:hasEI aml_importer:ei_Representation_59FC8794-015E-47D5-B088-E91FE5B7042D ; - aml_ontology:hasIE aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032FB ; - aml_importer:hasFrame_rx "-165.687"^^rdfs:Literal ; - aml_importer:hasFrame_ry "-63.064"^^rdfs:Literal ; - aml_importer:hasFrame_rz "-17.354"^^rdfs:Literal ; - aml_importer:hasFrame_x "0.270394"^^rdfs:Literal ; - aml_importer:hasFrame_y "-0.00653"^^rdfs:Literal ; - aml_importer:hasFrame_z "2.601352"^^rdfs:Literal ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031D5 -aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031D5 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_3C27E082-EEA7-440A-BCFE-FDBC12C3177C , - aml_importer:ei_Attachment_KRxxxRultra_6_1_8741F297-D5B0-4F95-8B64-3D25989CCF92 ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B000003221 -aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B000003221 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_C977F4BF-ED1A-428D-B4F8-48BC890ACB10 , - aml_importer:ei_Attachment_KRxxxRultra_6_1_2BFE0407-0969-4A29-BD06-A8BAC2C28D62 ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F00003261 -aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F00003261 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_B5686DD3-ED41-45E2-BD34-08DCE24276FC , - aml_importer:ei_Attachment_KRxxxRultra_6_1_72B783F2-A060-496E-812B-BF685CDDB765 ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032C2 -aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032C2 rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_AFC183EC-AC69-49F7-B1A4-3F84C7EE8E2B , - aml_importer:ei_Attachment_KRxxxRultra_6_1_4CF9835D-E98F-47F9-8C09-9FB44C70405A ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032FB -aml_importer:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032FB rdf:type owl:NamedIndividual , - aml_importer:Frame ; - aml_ontology:hasEI aml_importer:ei_Attachment_COLLADA_KRxxxRultra.6.1_5A55ABE0-BD31-4E1F-9E07-E06618B9274A , - aml_importer:ei_Attachment_KRxxxRultra_6_1_96B9C12E-D951-4BCF-908B-077CA5F64A77 ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" . - - -### http://www.ipr.kit.edu/aml_importer#InternalLink%20Process%20-%20Product - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Product_1db172cd-14bc-4ce4-a9fe-bf99cc1598c0 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Process_c07c3906-8d6a-4bf5-b727-2dee27caeec2 ; - rdfs:comment "InternalLink" ; - rdfs:label "InternalLink Process - Product" . - - -### http://www.ipr.kit.edu/aml_importer#InternalLink%20Resource%20-%20Process - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Process_59dfad55-376c-4187-be99-f38a65f6e016 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Resource_76e731d9-164c-4a55-9818-4dfcf9089a88 ; - rdfs:comment "InternalLink" ; - rdfs:label "InternalLink Resource - Process" . - - -### http://www.ipr.kit.edu/aml_importer#InternalLink%20Resource%20-%20Product - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_Product_29421e10-831f-4fa1-85b0-81bb0687145c ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_Resource_b660c4ab-0b21-4a62-b0bb-e5b8ae843e35 ; - rdfs:comment "InternalLink" ; - rdfs:label "InternalLink Resource - Product" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire1%20EthernetPlug1%20-%20Business%20CiscoFirewall%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_5aebb503-e90c-4b74-9607-8531a6743be6 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_cc03190d-ad77-410a-87c6-ce5e32fe5894 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire1 EthernetPlug1 - Business CiscoFirewall EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire1%20EthernetPlug2%20-%20Business%20Cisco1921Router%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_3ecaf821-1a98-45a6-8578-d10894d44973 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_83e071e7-772b-4b50-ae5a-70f263a2bddb ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire1 EthernetPlug2 - Business Cisco1921Router EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire2%20EthernetPlug1%20-%20Business%20Cisco1921Router%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_30ab7cca-fd5b-4f17-92c3-b13af6a203f1 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_19ba8293-31eb-4e43-a11f-7b4011957ae1 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire2 EthernetPlug1 - Business Cisco1921Router EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire2%20EthernetPlug2%20-%20Business%20CiscoCatalystSwitch%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_0c1866a0-8d5f-45ca-9d40-0ddfc0002a22 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_cb93258e-84a8-49b8-b7fd-63ee9eeba5b2 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire2 EthernetPlug2 - Business CiscoCatalystSwitch EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire3%20EthernetPlug1%20-%20Business%20Cisco1921Router%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_9d8f0b1c-1839-48c7-ad79-e29f222bf27e ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_6ebaee6c-fc37-424b-b713-978397078156 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire3 EthernetPlug1 - Business Cisco1921Router EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire3%20EthernetPlug2%20-%20DMZ%20CiscoFirewall%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_d6388a7b-6006-4e47-936e-a3da211e0f5b ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_d507e3e3-1a9c-4957-b399-c96b9c68c09a ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire3 EthernetPlug2 - DMZ CiscoFirewall EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire4%20EthernetPlug1%20-%20Business%20CiscoCatalystSwitch%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_7b4c288c-c4a0-434b-b92e-2376421a1813 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_0df11b8c-5e02-4e67-a3e9-c4588992b1b1 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire4 EthernetPlug1 - Business CiscoCatalystSwitch EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire4%20EthernetPlug2%20-%20Business%20BusinessWebserver1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_a332c210-a79b-42b7-a537-9776d2139ab0 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_6f4fad76-7a6b-4156-90be-01c354d32800 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire4 EthernetPlug2 - Business BusinessWebserver1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire5%20EthernetPlug1%20-%20Business%20CiscoCatalystSwitch%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_479ada71-c9a1-4dc7-b139-ebdcffc5e1b8 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_b1f45de9-a7ae-4327-b537-ae7c5a0c13a5 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire5 EthernetPlug1 - Business CiscoCatalystSwitch EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire5%20EthernetPlug2%20-%20Business%20BusinessFileserver1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_d2968eb1-85a0-4898-bbd3-3497cdde065d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_e351e1b0-8e14-4fc5-b1b8-4d9a731afe5a ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire5 EthernetPlug2 - Business BusinessFileserver1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire6%20EthernetPlug1%20-%20Business%20CiscoCatalystSwitch%20EthernetSocket4 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_f6b9c06d-b470-4aef-ba06-09edc891e6fc ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket4_1f3b99b8-9092-42d0-98c9-cecbf3b5a189 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire6 EthernetPlug1 - Business CiscoCatalystSwitch EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire6%20EthernetPlug2%20-%20Business%20BusinessAppServer1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_40cd00a0-391c-4620-9527-d78c5d3b20a2 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_d833a7f9-908e-4b0d-88d2-16298bb533cf ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire6 EthernetPlug2 - Business BusinessAppServer1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire7%20EthernetPlug1%20-%20Business%20CiscoCatalystSwitch%20EthernetSocket5 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_558636dd-7408-4de4-8e3b-14464da10877 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket5_66987355-b53a-4fd4-af31-c78628bfbbf6 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire7 EthernetPlug1 - Business CiscoCatalystSwitch EthernetSocket5" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20EthernetWire7%20EthernetPlug2%20-%20Business%20BusinessMailServer1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_2a70d441-04eb-4780-a125-a1f913f715f7 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_e998d27c-161a-4bb7-85ac-41beae800ff0 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire7 EthernetPlug2 - Business BusinessMailServer1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Business%20LogicalNetwork%20LogicalEndpointHTTPConnection1%20LogicalEndpointHTTP-1%20-%20Business%20BusinessAppServer1%20LogicalPortList%20LogicalEndpointHTTP-2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointHTTP-1_db5d1336-2a10-439c-9961-6450ecc7a047 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointHTTP-2_bcd4438c-0472-4144-b5b3-3e05ed6bb1d2 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business LogicalNetwork LogicalEndpointHTTPConnection1 LogicalEndpointHTTP-1 - Business BusinessAppServer1 LogicalPortList LogicalEndpointHTTP-2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20CarBodyManufacturingFacility%20Business%20LogicalNetwork%20LogicalHTTPConnection1%20LogicalEndpointHTTP-2%20-%20CarBodyManufacturingFacility%20IndustrialDMZ%20Jump1%20LogicalPortList%20LogicalEndpointHTTP%20 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointHTTP-2_927ed061-fa2b-47b1-b48c-bca7a559d854 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointHTTP_263fcd54-6a0e-4fbe-a02b-49e390e00943 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility Business LogicalNetwork LogicalHTTPConnection1 LogicalEndpointHTTP-2 - CarBodyManufacturingFacility IndustrialDMZ Jump1 LogicalPortList LogicalEndpointHTTP " . - - -### http://www.ipr.kit.edu/aml_importer#Link%20CarBodyManufacturingFacility%20CarDoorProductionLine%20IndustrialDMZ%20LogicalNetwork%20LogicalOPC-UAConnection1%20LogicalEndpointOPC-UA-1%20-%20CarBodyManufacturingFacility%20CarDoorProductionLine%20IndustrialDMZ%20Jump1%20LogicalPortList%20LogicalEndpointOPC-UA - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC-UA-1_6397e1c3-f31f-49a4-a1f0-1ebb1028c4ea ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC-UA_105f4f40-54fe-4d8f-90d2-bcdfd30c0031 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility CarDoorProductionLine IndustrialDMZ LogicalNetwork LogicalOPC-UAConnection1 LogicalEndpointOPC-UA-1 - CarBodyManufacturingFacility CarDoorProductionLine IndustrialDMZ Jump1 LogicalPortList LogicalEndpointOPC-UA" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20CarBodyManufacturingFacility%20CarDoorProductionLine%20IndustrialDMZ%20LogicalNetwork%20LogicalOPC-UAConnection1%20LogicalEndpointOPC-UA-2%20-%20CarBodyManufacturingFacility%20CarDoorProductionLine%20OperationsSupport%20MES1%20SimaticIT%20LogicalPortList%20LogicalEndpointOPC-UA-2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC-UA-2_823520ec-9659-47e5-ad5d-1c466e824b11 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC-UA-2_cfe19784-1636-4a08-a64c-930bde597f15 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility CarDoorProductionLine IndustrialDMZ LogicalNetwork LogicalOPC-UAConnection1 LogicalEndpointOPC-UA-2 - CarBodyManufacturingFacility CarDoorProductionLine OperationsSupport MES1 SimaticIT LogicalPortList LogicalEndpointOPC-UA-2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20CarBodyManufacturingFacility%20CarDoorProductionLine%20OperationsSupport%20LogicalNetwork%20LogicalOPC-UAConnection%20LogicalEndpointOPC-UA-1%20-%20CarBodyManufacturingFacility%20CarDoorProductionLine%20OperationsSupport%20MES1%20SimaticIT%20LogicalPortList%20LogicalEndpointOPC-UA-1%20 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC-UA-1_2f5fab35-8e99-45ff-ae56-4ac00b7144ea ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC-UA-1_a04436ec-db07-4dc1-a5a1-4a0e469e2c1d ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility CarDoorProductionLine OperationsSupport LogicalNetwork LogicalOPC-UAConnection LogicalEndpointOPC-UA-1 - CarBodyManufacturingFacility CarDoorProductionLine OperationsSupport MES1 SimaticIT LogicalPortList LogicalEndpointOPC-UA-1 " . - - -### http://www.ipr.kit.edu/aml_importer#Link%20CarBodyManufacturingFacility%20CarDoorProductionLine%20OperationsSupport%20LogicalNetwork%20LogicalOPC-UAConnection%20LogicalEndpointOPC-UA-2%20-%20CarBodyManufacturingFacility%20CarDoorProductionLine%20SCADA%20SimaticWinCCServer%20WinCC%20LogicalPortList%20LogicalEndpointOPC-UA%20 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC-UA-2_25f02e01-a974-4880-bd72-bf584af8624d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC-UA_83524b62-a19a-4f1b-8038-23027d20c93c ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility CarDoorProductionLine OperationsSupport LogicalNetwork LogicalOPC-UAConnection LogicalEndpointOPC-UA-2 - CarBodyManufacturingFacility CarDoorProductionLine SCADA SimaticWinCCServer WinCC LogicalPortList LogicalEndpointOPC-UA " . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire10%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket10 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_c0f21b27-bf5a-4459-befb-23b245900980 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket10_17701d76-794d-4eda-9aa1-44dfd9ee1b18 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire10 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket10" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire11%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket11 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_f7c9ed9e-7700-4469-a7de-163190ee5eb1 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket11_6847e2e4-aadf-4808-aacd-aeba5837517e ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire11 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket11" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire11%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20WirelessHARTGW1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_f577cb67-8d22-43b5-9012-8b85b548bf81 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_2a220313-14f5-466d-9338-1a0db0d2ffef ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire11 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTGW1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire12%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket12 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_fc9888b3-6263-465f-b6e8-59a408c705f3 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket12_eedd7431-8f9c-45a7-8195-d01a4c446656 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire12 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket12" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire12%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20SchneiderElectricXBTGT%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_a53e525a-9249-4c78-a32a-c3c10bd40034 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_881a9b51-6752-4aa8-8471-714015644adf ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire12 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation SchneiderElectricXBTGT EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire13%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket13 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_037d7f93-efa5-4f61-b40a-107192afb27b ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket13_0c1aaf7d-4170-4621-9edd-109072f8cd7e ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire13 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket13" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire13%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20OpcClientHmi1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_eb5f8cab-ad6b-4fa0-87a1-d8d54fc229d7 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_a2c82022-d2be-4355-8911-c826a52fc8b2 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire13 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire14%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket14 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_3ce929fc-cb81-4ddd-90c4-566a8dc9d524 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket14_6fa6d0d2-2b34-4115-a14d-18c5a224e54e ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire14 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket14" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire14%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20KUKAConnectivityBox1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_ffed756f-eda3-490d-9730-f61888d28b0d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_34c5a701-1da9-4a1e-b1fc-5e72091da36f ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire14 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation KUKAConnectivityBox1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire2%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_5147fe00-748d-4b23-940f-95bfb75eb1c9 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_2aba6457-9137-470a-b03c-2ea7144890d6 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire2 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire2%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1Safety%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_efd46995-ca03-4bf4-9491-086d617a3f0f ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_3af32e21-6a1c-4d22-aa93-ebd5f2174376 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire2 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1Safety EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire3%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_100%20KRC4%20EthernetSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_a611ffbd-b94a-466a-a224-cb2ffdd51793 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket_642233fd-820b-40fc-8705-9908fd914dac ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire3 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 KRC4 EthernetSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire3%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_8f5bb8d6-2553-4b91-98c5-f05b624b2f65 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_818fe45b-1f74-4b1e-8a8f-71330e70eba1 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire3 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire4%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket4 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_d820150e-51ac-4d9b-af41-7a8397b05d13 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket4_c1e9b84e-e655-4dff-aa82-866445a091a3 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire4 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire4%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_100%20SimaticS71516F%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_d1271e4c-b1b8-49b5-8fdd-504f6596f0da ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_fc47c0ff-3e24-405a-a852-953b71ee65b6 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire4 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 SimaticS71516F EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire4%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_200%20SimaticS71516F%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_b7c90d56-3709-4acc-8562-d7116bd549d1 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_328efddb-d056-40cb-b177-4674361be7be ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire4 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 SimaticS71516F EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire5%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20KRC4%20EthernetSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_19f6da58-3759-4fa3-a5e4-b3dc3b49e58b ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket_ebfabd7d-e0a0-425d-979f-88e726ba20cc ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire5 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 EthernetSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire5%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket5 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_0018de50-0c3f-4125-8dd5-3c964380196a ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket5_10ad4d48-9f71-4e8f-b52d-735e19c529ab ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire5 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket5" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire6%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket6 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_d873bdde-d3f8-4655-b20f-11287be393e1 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket6_c41d5604-d159-42c6-b3c6-2c034d52246b ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire6 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket6" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire6%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20SimaticS71516F%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_de1a769d-17aa-4add-a68a-b41e728abac1 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_34fe9386-a622-4165-a63b-62fe8c8ee1d6 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire6 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 SimaticS71516F EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire7%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_200%20KRC4%20EthernetSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_44569ec8-9862-4ac2-baf2-96a40bbd168b ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket_3e5cccb8-098e-4e8c-b66d-0c17f7a536ca ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire7 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 KRC4 EthernetSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire7%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_0cba49f1-5272-4e65-88a2-172997506511 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket7_bddd02f6-f870-4457-84f6-cb18ba0b1001 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire7 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire8%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket8 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_0b0f750d-a2fd-4a30-94d6-55f0562317c5 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket8_393fa348-770a-4479-9dfa-a2a7786a0bda ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire8 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket8" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire8%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_200%20SimaticS71516F%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_2eb48f3e-95ff-459f-a252-3338bb312a91 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_0e28cd59-35a1-4726-b672-366db5780dd4 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire8 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 SimaticS71516F EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire9%20EthernetPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_300%20KRC4%20EthernetSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_fa50852d-143d-4289-a134-18299f7896cc ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket_8186e078-1346-489f-baed-bfa4e8b524f3 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire9 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_300 KRC4 EthernetSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20EthernetWire9%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket9 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_a0c2a075-76ac-4ba9-8431-d3f34cde2777 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket9_71125503-ca69-4789-8ab6-2c12a4068e8e ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire9 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket9" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaDataWireX21-1%20DataPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_100%20030RB_100_KR240R2700prime_%20DataSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_DataPlug1_cf26e9b9-546f-4642-993b-59d4f504f25c ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_DataSocket_92cbf340-ae86-4bbd-9ce9-e9995c8255ff ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-1 DataPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 030RB_100_KR240R2700prime_ DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaDataWireX21-1%20DataPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_100%20KRC4%20DataSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_DataPlug2_4ef8a268-644b-423c-9777-7e8d839f5dd1 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_DataSocket_7e49a15d-3674-4c83-9b3e-cb30a3ba0fe8 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-1 DataPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 KRC4 DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaDataWireX21-2%20DataPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20010RB_100_KR240R2700prime_%20DataSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_DataPlug1_f9ce0072-4c30-4b19-ad58-13d874db959e ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_DataSocket_ae28eb4b-ffe8-4cb0-90ad-4b29fa94f73d ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-2 DataPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 010RB_100_KR240R2700prime_ DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaDataWireX21-2%20DataPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20KRC4%20DataSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_DataPlug2_9ac880a6-992f-4a72-93c8-697f7184b4a8 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_DataSocket_e01de9a6-af8d-4aa5-8f5f-57080f540b6a ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-2 DataPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaDataWireX21-3%20DataPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_200%20030RB_100_KR240R2700prime_%20DataSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_DataPlug1_a7bcea0f-8293-4838-870d-b1cc839f1b34 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_DataSocket_846549de-aa8c-4c87-900e-543d02116fe4 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-3 DataPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 030RB_100_KR240R2700prime_ DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaDataWireX21-3%20DataPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_200%20KRC4%20DataSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_DataPlug2_f58826ef-44b9-4605-bb45-2b82cd5afb04 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_DataSocket_807dacba-3d37-4be1-a95d-f534dc00bca4 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-3 DataPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 KRC4 DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaDataWireX21-4%20DataPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_200%20030RB_300%20030RB_100_KR240R2700prime_%20DataSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_DataPlug1_9a404f47-0a3c-4ac6-a661-f24926d8101d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_DataSocket_686ff996-1a0c-4a3a-bd0d-be67fd34cafc ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-4 DataPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_300 030RB_100_KR240R2700prime_ DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaDataWireX21-4%20DataPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_300%20KRC4%20DataSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_DataPlug2_ec75d2b6-d66e-422a-b6a4-b8fd93fc5597 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_DataSocket_4af3778d-2956-4fdf-9345-d1fc5957528a ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-4 DataPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_300 KRC4 DataSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaMotorWire1%20MotorPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_100%20KRC4%20MotorSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_MotorPlug1_cfbea44c-35e9-4230-81f9-3d799b5a87db ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_MotorSocket_8b7f2dde-0548-4459-9b33-bf7a7875e0ed ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire1 MotorPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 KRC4 MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaMotorWire1%20MotorPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_100%20030RB_100_KR240R2700prime_%20MotorSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_MotorPlug2_462600ad-7698-4968-9f3b-7f38052a6fc5 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_MotorSocket_ed3aabca-267d-46c4-b511-77d151c7846f ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire1 MotorPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 030RB_100_KR240R2700prime_ MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaMotorWire1%20MotorPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_200%20030RB_200_KR240R2700prime_%20MotorSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_MotorPlug2_d1668324-4fcd-4002-9acb-5b6215fce49d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_MotorSocket_38a06c3f-ad69-4eed-9df0-d0320219f65a ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire1 MotorPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 030RB_200_KR240R2700prime_ MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaMotorWire2%20MotorPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20010RB_100_KR240R2700prime_%20MotorSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_MotorPlug1_3cfc448e-1c96-4379-8139-03adb5ef4bb8 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_MotorSocket_4e8f851e-faac-4b92-a8db-987634653157 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire2 MotorPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 010RB_100_KR240R2700prime_ MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaMotorWire2%20MotorPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20KRC4%20MotorSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_MotorPlug2_64b94804-57fa-46bf-88dc-c1707dcf5f3b ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_MotorSocket_06edea8e-1bd1-43f6-a847-1d0eb58f95a9 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire2 MotorPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaMotorWire3%20MotorPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_200%20KRC4%20MotorSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_MotorPlug1_3d417e2d-9b3b-4025-90c0-225d2f12ae17 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_MotorSocket_c957622e-197f-485d-bec6-29f81153fb2f ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire3 MotorPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 KRC4 MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaMotorWire4%20MotorPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_300%20KRC4%20MotorSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_MotorPlug1_78aef019-703a-4d0e-a682-17955c9bb45c ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_MotorSocket_4d895e1a-ce3b-471b-bd55-4cd328d4bb8e ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire4 MotorPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_300 KRC4 MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20KukaMotorWire4%20MotorPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_300%20030RB_200_KR240R2700prime_%20MotorSocket - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_MotorPlug2_77af8496-b3af-4e27-86b0-0fdf30cc9e0f ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_MotorSocket_0ccfc25b-fefa-4a39-a516-300776c0a425 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire4 MotorPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_300 030RB_200_KR240R2700prime_ MotorSocket" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection1%20LogicalEndpointOPC1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20030RB_100%20030RB_100_KR240R2700prime_%20LogicalEndpointOPC - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC1_3af21c9e-cc80-4889-87b5-10255ec1f52f ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC_7f4077c1-4536-45d4-af0c-f516b817d3a7 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection1 LogicalEndpointOPC1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 030RB_100_KR240R2700prime_ LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection1%20LogicalEndpointOPC1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_200%20030RB_200%20030RB_200_KR240R2700prime_%20LogicalEndpointOPC - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC1_9ff435fc-52d0-4204-a2f3-4d8323e7f1fd ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC_4a38d310-5447-4ac6-88a7-74bfc25172ec ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection1 LogicalEndpointOPC1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_200 030RB_200_KR240R2700prime_ LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection1%20LogicalEndpointOPC2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20pcClientHmi1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC2_73557256-bbd1-4dcf-8856-777db2b92c3d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC1_48993549-d4d0-4931-90b2-416e913174d0 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection1 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation pcClientHmi1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection2%20LogicalEndpointOPC1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20010RB_100_KR240R2700prime_%20LogicalEndpointOPC - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC1_c8dda586-0a8d-4aed-b41b-1070f0e56e4a ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC_871d320f-b7a9-4fa2-9b23-c975da0cc485 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection2 LogicalEndpointOPC1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 010RB_100_KR240R2700prime_ LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection2%20LogicalEndpointOPC2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20OpcClientHmi1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC2_1a018044-4ba2-4210-8099-68e6c28aff4f ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC3_372ad0ad-1e08-45ea-899c-19d4009158e2 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection2 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection3%20LogicalEndpointOPC2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20OpcClientHmi1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC2_4f4277fd-d47e-4e24-b7dd-afabc94cbe9c ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC4_9a5396fa-80d9-438e-9700-75f3a7950fe1 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection3 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection4%20LogicalEndpointOPC1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_300%20030RB_300%20030RB_300_KR240R2700prime_%20LogicalEndpointOPC - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC1_5c88241e-d581-45e0-990e-4ac58c6de838 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC_4d43bded-d2e8-4c1f-a357-05760b746cbb ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection4 LogicalEndpointOPC1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_300 030RB_300 030RB_300_KR240R2700prime_ LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection4%20LogicalEndpointOPC2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20OpcClientHmi1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC2_12c24e84-be9a-4e36-b7a9-7b2ad751cfe6 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC5_8e747187-913d-4635-bd1b-d64e683a0a21 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection4 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection5%20LogicalEndpointOPC1%20-%20CarDoorProductionLine%20SCADA%20SimaticWinCCServer%20WinCC%20LogicalPortList%20LogicalEndpointOPC - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC1_98472cc7-8ab4-4c62-b4cf-c28f0d4ea391 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC_8910bbbb-0cda-46c5-8a5e-550068c82931 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection5 LogicalEndpointOPC1 - CarDoorProductionLine SCADA SimaticWinCCServer WinCC LogicalPortList LogicalEndpointOPC" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalOPCConnection5%20LogicalEndpointOPC2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20OpcClientHmi1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointOPC2_448bc6ba-609c-4d66-87bf-f01b86c53b63 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointOPC2_02e7b935-8067-4293-8748-0449c1144807 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection5 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalPROFIsafeConnection1%20LogicalEndpointPROFIsafe1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20KRC4%20LogicalEndpointPROFIsafe - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointPROFIsafe1_e5384131-e6eb-48e8-8b90-9ead55a16971 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointPROFIsafe_59fa5a98-b9c5-443e-a743-df56b026d9f3 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection1 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 KRC4 LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalPROFIsafeConnection1%20LogicalEndpointPROFIsafe1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ControlCabinet%20SimaticS71510SPF1PN%20LogicalEndpointPROFIsafe - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointPROFIsafe2_08eb5c10-0f82-401f-b6b5-720988f25910 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointPROFIsafe_c0f1cf30-00cd-459b-aa62-2b9578daa128 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection1 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalPROFIsafeConnection2%20LogicalEndpointPROFIsafe1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_200%20030RB_200%20%20KRC4%20LogicalEndpointPROFIsafe - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointPROFIsafe1_f03aad7a-9c5a-4f63-8261-c0d0d388e18a ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointPROFIsafe_f3545173-695e-4c8e-b02e-4a3ed53a15ba ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection2 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_200 KRC4 LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalPROFIsafeConnection2%20LogicalEndpointPROFIsafe1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ControlCabinet%20SimaticS71510SPF1PN1%20LogicalEndpointPROFIsafe - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointPROFIsafe2_eda94389-af6a-4f80-9526-294676019256 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointPROFIsafe_a2bd3329-93c3-4b76-9689-38069e140904 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection2 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN1 LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalPROFIsafeConnection3%20LogicalEndpointPROFIsafe1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_300%20030RB_300%20%20KRC4%20LogicalEndpointPROFIsafe - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointPROFIsafe1_a175d785-e4e9-4858-b4c2-1807437c1f63 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointPROFIsafe_57cb22a2-920a-4de4-9f02-52a8267b744d ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection3 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_300 030RB_300 KRC4 LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalPROFIsafeConnection3%20LogicalEndpointPROFIsafe1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ControlCabinet%20SimaticS71510SPF1PN2%20LogicalEndpointPROFIsafe - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointPROFIsafe2_7d57b69d-8413-4f16-8d00-339083413b5f ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointPROFIsafe_ae854efb-9d6b-4b00-a4da-247eaf736f6f ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection3 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN2 LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalPROFIsafeConnection4%20LogicalEndpointPROFIsafe1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20%20KRC4%20LogicalEndpointPROFIsafe - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointPROFIsafe1_eafdfbba-1d80-48a8-b74b-3b27aaf71c8b ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointPROFIsafe_429d1ee7-4e79-4657-a6d7-dd469a9b4a87 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection4 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalPROFIsafeConnection4%20LogicalEndpointPROFIsafe1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ControlCabinet%20SimaticS71510SPF1PN3%20LogicalEndpointPROFIsafe - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointPROFIsafe2_2a1403ac-30d9-43de-9f26-2f7cbe82c75c ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointPROFIsafe_f8375d35-7820-469d-9aaa-5ab3c8bb2eef ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection4 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN3 LogicalEndpointPROFIsafe" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalProfinetConnection1%20LogicalEndpointProfinet1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20KRC4%20LogicalEndpointProfinet - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointProfinet1_72ed1588-3b9b-4dfe-a89a-9346bfc01530 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointProfinet_915ff2e6-3d5d-4681-b6e0-dbb30417dae4 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection1 LogicalEndpointProfinet1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 KRC4 LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalProfinetConnection1%20LogicalEndpointProfinet2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_100%20SimaticS71516F%20LogicalEndpointProfinet - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointProfinet2_7df3b19b-64c8-419f-8dba-82cd2b56aa15 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointProfinet_433a17eb-fc4a-4d65-85cc-311e1ff00019 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection1 LogicalEndpointProfinet2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 SimaticS71516F LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalProfinetConnection2%20LogicalEndpointProfinet1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_200%20030RB_200%20KRC4%20LogicalEndpointProfinet - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointProfinet1_9de6bd05-5336-4dd6-83d7-6eb3fdbc6c9d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointProfinet_9512f6d4-17f5-42fe-8d41-7049e4c0a1b9 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection2 LogicalEndpointProfinet1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_200 KRC4 LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalProfinetConnection2%20LogicalEndpointProfinet2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_200%20030RB_200%20SimaticS71516F%20LogicalEndpointProfinet - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointProfinet2_302e1abe-af1d-4e16-b0ab-43d7eeac5082 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointProfinet_4f19c87a-fc28-4fc3-a41f-4a1089481412 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection2 LogicalEndpointProfinet2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_200 SimaticS71516F LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalProfinetConnection3%20LogicalEndpointProfinet1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20KRC4%20LogicalEndpointProfinet - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointProfinet1_01e828d3-97b1-4667-ab52-12b568cea9da ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointProfinet_67a0e8e3-f5f9-4a69-bf63-cc6e05f9a6b3 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection3 LogicalEndpointProfinet1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalProfinetConnection3%20LogicalEndpointProfinet1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_300%20030RB_300%20KRC4%20LogicalEndpointProfinet - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointProfinet1_47666355-7eb2-485b-83b6-b7a83ae24175 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointProfinet_2d99c617-b230-4b96-be81-8108865806cc ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection3 LogicalEndpointProfinet1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_300 030RB_300 KRC4 LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalProfinetConnection3%20LogicalEndpointProfinet2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST010%20010RB_100%20010RB_100%20ControlCabinet%20SimaticS71516F%20LogicalEndpointProfinet - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointProfinet2_2fc773b5-2686-4d82-bc98-5f6dc599daad ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointProfinet_7e7fba22-6784-4256-a18e-9699fe75df70 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection3 LogicalEndpointProfinet2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 ControlCabinet SimaticS71516F LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20LogicalNetwork%20LogicalProfinetConnection3%20LogicalEndpointProfinet2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ST030%20030RB_300%20030RB_300%20ControlCabinet%20SimaticS71516F%20LogicalEndpointProfinet - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointProfinet2_04af5cee-6f9d-4f44-afe9-de3393fc7bf4 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointProfinet_5e889b68-e366-4560-b3ee-318c59c8aea5 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection3 LogicalEndpointProfinet2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_300 030RB_300 ControlCabinet SimaticS71516F LogicalEndpointProfinet" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20EthernetWire2%20EthernetPlug1%20-%20Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ScalanceX414-3e-1%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_76e82eca-3004-4e04-9eee-abc322b491d1 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_b8fd1fdb-5185-47da-a635-425c897b4a0e ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire2 EthernetPlug1 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ScalanceX414-3e-1 EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20EthernetWire2%20EthernetPlug2%20-%20Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ControlCabinet%20SimaticS71510SPF1PN%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_e84fe43d-40c6-4132-a8fb-f9c49fb24553 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_3ff51c5f-de99-4bb4-b326-9877d03faecb ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire2 EthernetPlug2 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20EthernetWire3%20EthernetPlug1%20-%20Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ScalanceX414-3e-1%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_527adc4b-3795-4165-83fc-dd38cafc1971 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_c3e33c4a-bb75-4f10-9720-c8eea6ef90c9 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire3 EthernetPlug1 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ScalanceX414-3e-1 EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20EthernetWire3%20EthernetPlug2%20-%20Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ControlCabinet%20SimaticS71510SPF1PN%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_bb270613-e7f8-4c44-83a0-090b1003040d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_4e373d26-b42d-4b7d-9b6b-eaf79f97a56f ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire3 EthernetPlug2 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20EthernetWire4%20EthernetPlug1%20-%20Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ScalanceX414-3e-1%20EthernetSocket4 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_dee3d6c3-fd3b-45e8-91d0-72e1c6586630 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket4_47f2bfca-7a36-4ae8-b955-b5aa88e734b8 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire4 EthernetPlug1 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ScalanceX414-3e-1 EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20EthernetWire4%20EthernetPlug2%20-%20Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ControlCabinet%20SimaticS71510SPF1PN2%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_3341c300-495b-4800-a419-7786fb539101 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_a7278c83-fe80-4c1d-bb62-f78d3c568af8 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire4 EthernetPlug2 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN2 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20EthernetWire5%20EthernetPlug1%20-%20Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ScalanceX414-3e-1%20EthernetSocket5 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_4df91bcd-c9cc-4e47-b28c-d78e2c9b870f ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket5_7341e507-7cca-4692-90d1-7efca1a55850 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire5 EthernetPlug1 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ScalanceX414-3e-1 EthernetSocket5" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20EthernetWire5%20EthernetPlug2%20-%20Link%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20Safety%20ControlCabinet%20SimaticS71510SPF1PN3%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_9b8d99fd-42f3-44c1-956e-da53204c151b ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_b25aef65-333a-4adc-9bd7-29d88a99349c ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire5 EthernetPlug2 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN3 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20WirelessConnection1%20WirelessPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20WirelessHARTGW1%20WirelessInterface1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_WirelessPlug1_97f811e1-694e-4b03-9f0b-4a0308462c02 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_WirelessInterface1_1856e465-4f19-4308-a9fb-5b903c6addf1 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection1 WirelessPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTGW1 WirelessInterface1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20WirelessConnection1%20WirelessPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20WirelessHARTSensor1%20WirelessInterface1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_WirelessPlug2_911e7a2c-6199-4496-b4dd-a431ae2ab086 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_WirelessInterface1_a3ff8a82-d3c1-40c8-b02c-5a622c97750c ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection1 WirelessPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTSensor1 WirelessInterface1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20WirelessConnection2%20WirelessPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20WirelessHARTGW1%20WirelessInterface2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_WirelessPlug1_3e07cf2a-89c0-4000-97fd-ff6fd3b3ba7a ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_WirelessInterface2_68cdcef0-c91a-4abb-83cb-e95450a9429d ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection2 WirelessPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTGW1 WirelessInterface2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20WirelessConnection2%20WirelessPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20WirelessHARTSensor2%20WirelessInterface1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_WirelessPlug2_a2d38962-e093-4d87-9399-5affac4a8bef ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_WirelessInterface1_a3d5bb25-f7f2-4c20-8cbc-9ce7f8115a34 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection2 WirelessPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTSensor2 WirelessInterface1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20WirelessConnection3%20WirelessPlug1%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20WirelessHARTGW1%20WirelessInterface3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_WirelessPlug1_11a45cd3-d809-43a3-b4bb-082cfdb23fa7 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_WirelessInterface3_4cd4526f-ba94-407a-8b36-8f30f39dcf28 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection3 WirelessPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTGW1 WirelessInterface3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20ControlAndProcess%20CarDoorPartWelding%20WirelessConnection3%20WirelessPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20WirelessHARTSensor3%20WirelessInterface1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_WirelessPlug2_1138b241-22e0-4fa1-b6ff-b3ae35dbe7da ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_WirelessInterface1_a288c0ef-c44e-4cb1-b9fe-53754023fff1 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection3 WirelessPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTSensor3 WirelessInterface1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire1%20EthernetPlug1%20-%20DMZ%20CiscoFirewall%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_b8ca4279-9c8f-496f-8536-ea084e697182 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_3ec391ca-8953-416f-85ad-0c97a1a1a501 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire1 EthernetPlug1 - DMZ CiscoFirewall EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire1%20EthernetPlug2%20-%20DMZ%20Cisco1921Router%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_1614d03b-de78-4762-93d1-7ad27cf07fa6 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_2f28d804-7a56-424f-b7b7-27e66f84eb16 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire1 EthernetPlug2 - DMZ Cisco1921Router EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire2%20EthernetPlug1%20-%20DMZ%20Cisco1921Router%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_61884fe6-00de-4e36-b9b0-ad4d74f455e0 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_7db774dd-f913-4c9e-a710-881a4adf8731 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire2 EthernetPlug1 - DMZ Cisco1921Router EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire2%20EthernetPlug2%20-%20DMZ%20CiscoCatalystSwitch%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_2a58752f-b177-4678-ae1d-fe781e8e155e ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_53a5f197-a511-4e71-84e9-2ab523099198 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire2 EthernetPlug2 - DMZ CiscoCatalystSwitch EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire3%20EthernetPlug1%20-%20DMZ%20Cisco1921Router%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_c2d51637-661b-4bdd-87e4-5511903613ab ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_6e7d59c5-d96e-4e5b-814f-e94c5858faea ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire3 EthernetPlug1 - DMZ Cisco1921Router EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire3%20EthernetPlug2%20-%20OperationsSupport%20CiscoFirewall%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_2a3b0c7c-db96-420b-9280-49ac1764428d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_cb3518ed-a657-40f9-8c13-3cfbd60ea63a ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire3 EthernetPlug2 - OperationsSupport CiscoFirewall EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire4%20EthernetPlug1%20-%20DMZ%20CiscoCatalystSwitch%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_cc5fabd2-7cde-485b-8843-0f082201c50d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_341486c1-612f-40ea-81af-36f34b6681c4 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire4 EthernetPlug1 - DMZ CiscoCatalystSwitch EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire4%20EthernetPlug2%20-%20DMZ%20Jump1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_0378e1b8-e417-41d0-8e5e-6ebb9e8a816b ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_bda9ab9d-a3e8-4753-8a32-2f460711e08c ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire4 EthernetPlug2 - DMZ Jump1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire5%20EthernetPlug1%20-%20DMZ%20CiscoCatalystSwitch%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_9c17b165-9777-4fd3-b401-6dd4dc887c0c ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_28d87e93-ae2d-4f6b-afef-ff28b4c995aa ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire5 EthernetPlug1 - DMZ CiscoCatalystSwitch EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire5%20EthernetPlug2%20-%20DMZ%20AVServer1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_7024d245-4621-4b60-b25c-d0b72e30892e ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_e3204a83-9a92-404e-99ae-decdfec06045 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire5 EthernetPlug2 - DMZ AVServer1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire5%20EthernetPlug2%20-%20DMZ%20PatchMgmt1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_04e43dbe-c305-4ce7-9a37-6966bd003a17 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_89571e9b-e0f0-4856-b72a-7897ae1cf7ad ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire5 EthernetPlug2 - DMZ PatchMgmt1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20DMZ%20EthernetWire6%20EthernetPlug1%20-%20DMZ%20CiscoCatalystSwitch%20EthernetSocket4 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_b5d14e27-a73d-475b-a565-2ed93c409c6a ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket4_1feae021-7b03-4bd6-ae49-5c2b699741a3 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire6 EthernetPlug1 - DMZ CiscoCatalystSwitch EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire1%20EthernetPlug1%20-%20EnterpiseDMZ%20CiscoFirewall%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_b9ff7173-3281-4b88-92a1-b38f5215cab9 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_b02527e7-57d7-46d0-8ec5-5332cb3400f8 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire1 EthernetPlug1 - EnterpiseDMZ CiscoFirewall EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire2%20EthernetPlug1%20-%20EnterpiseDMZ%20Cisco1921Router%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_8ebc5cee-11a4-4417-99a7-6f0b757282e8 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_6bf6a4bd-7bef-412c-938b-4d3bde1bfa62 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire2 EthernetPlug1 - EnterpiseDMZ Cisco1921Router EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire2%20EthernetPlug2%20-%20EnterpiseDMZ%20CiscoCatalystSwitch%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_0004adea-700d-434a-a21f-b71884abe932 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_a02963d4-9d31-4dc2-98ff-239192d33803 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire2 EthernetPlug2 - EnterpiseDMZ CiscoCatalystSwitch EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire3%20EthernetPlug1%20-%20EnterpiseDMZ%20Cisco1921Router%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_e20e313c-f472-4a6a-9727-4982e028474f ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_e4931324-995a-4f20-ab21-384fb1ffea6d ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire3 EthernetPlug1 - EnterpiseDMZ Cisco1921Router EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire3%20EthernetPlug2%20-%20Business%20CiscoFirewall%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_cde479a9-1cfc-4908-86f5-0d02683c4935 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_3b2421f0-e997-4a03-a6c3-f6959e16a1d2 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire3 EthernetPlug2 - Business CiscoFirewall EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire4%20EthernetPlug1%20-%20EnterpiseDMZ%20CiscoCatalystSwitch%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_0b97ffa8-eb93-417f-858e-a4add57b022a ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_dad4357c-c01f-4c20-833e-cdda1199d5c2 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire4 EthernetPlug1 - EnterpiseDMZ CiscoCatalystSwitch EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire4%20EthernetPlug2%20-%20EnterpiseDMZ%20ERP1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_cb71bfd9-e012-4a10-86f0-c4c606e1e495 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_4004db01-a168-4e93-b4b3-44494dc62463 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire4 EthernetPlug2 - EnterpiseDMZ ERP1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire5%20EthernetPlug1%20-%20EnterpiseDMZ%20CiscoCatalystSwitch%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_6e384bf9-7850-484b-8649-78acf992f8d5 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_2839194e-f970-4f48-9510-c8dd9d7c78f5 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire5 EthernetPlug1 - EnterpiseDMZ CiscoCatalystSwitch EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire5%20EthernetPlug2%20-%20EnterpiseDMZ%20WebserverEnterprise%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_3d19d82e-0b7d-4586-92a1-2ab4d563ab0a ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_311a9abc-3c8e-4675-a111-fd30738f2732 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire5 EthernetPlug2 - EnterpiseDMZ WebserverEnterprise EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire6%20EthernetPlug1%20-%20EnterpiseDMZ%20CiscoCatalystSwitch%20EthernetSocket4 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_10541cca-9d69-4f11-a2a3-b486db56df6d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket4_5830331c-a53c-4a17-aa6d-47f99a759b32 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire6 EthernetPlug1 - EnterpiseDMZ CiscoCatalystSwitch EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpiseDMZ%20EthernetWire6%20EthernetPlug2%20-%20EnterpiseDMZ%20FileserverEnterprise%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_8750445b-c4d5-4c3e-a96a-903af449bee7 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_17d6bbc4-df3d-4f05-9548-82e7227cf8bd ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire6 EthernetPlug2 - EnterpiseDMZ FileserverEnterprise EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Enterprise%20EthernetWire1%20EthernetPlug1%20-%20Enterprise%20Cisco1921Router%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_dbdcbb3f-00e1-4c8d-a548-3dc25891facb ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_41e16462-63f1-4a2b-96d2-9bfe032838b0 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Enterprise EthernetWire1 EthernetPlug1 - Enterprise Cisco1921Router EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20Enterprise%20EthernetWire1%20EthernetPlug2%20-%20EnterpriseDMZ%20CiscoFirewall%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_ab091654-77cb-4680-bfd9-3a1651eaf59c ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_2070bd6b-0107-425c-90e0-bfff8fd41c95 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Enterprise EthernetWire1 EthernetPlug2 - EnterpriseDMZ CiscoFirewall EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpriseDMZ%20EthernetWire1%20EthernetPlug2%20-%20EnterpriseDMZ%20Cisco1921Router%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_315a8dee-4000-417c-bd0c-007f8c1e7e3e ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_1191a78f-9c97-4b0c-bdb0-0a920a8152ff ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpriseDMZ EthernetWire1 EthernetPlug2 - EnterpriseDMZ Cisco1921Router EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpriseDMZ%20LogicalNetwork%20LogicalHTTPConnection1%20LogicalEndpointHTTP-2%20-%20Business%20BusinessAppServer1%20LogicalPortList%20LogicalEndpointHTTP-1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointHTTP-2_ede3a8fd-21f5-4d63-978e-50cd5b01e756 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointHTTP-1_27371c00-7ffc-4820-b129-c971d5e6a739 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpriseDMZ LogicalNetwork LogicalHTTPConnection1 LogicalEndpointHTTP-2 - Business BusinessAppServer1 LogicalPortList LogicalEndpointHTTP-1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20EnterpriseDMZ%20WebserverEnterprise%20LogicalEndpointHTTP%20-%20EnterpriseDMZ%20LogicalNetwork%20LogicalHTTPConnection1%20LogicalEndpointHTTP-1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_LogicalEndpointHTTP-1_b4d46f14-64ef-466b-86c3-3ab92e1d12eb ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_LogicalEndpointHTTP_2d9365fd-7a4f-46ec-aa7b-075c9969efc2 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpriseDMZ WebserverEnterprise LogicalEndpointHTTP - EnterpriseDMZ LogicalNetwork LogicalHTTPConnection1 LogicalEndpointHTTP-1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire1%20EthernetPlug1%20-%20OperationsSupport%20CiscoFirewall%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_b6584936-fa1a-491b-b25e-667326c59ae4 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_c5abb676-677e-46f5-be24-18907e30b6dc ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire1 EthernetPlug1 - OperationsSupport CiscoFirewall EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire1%20EthernetPlug2%20-%20OperationsSupport%20Cisco1921Router%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_050f4374-4ade-4e74-910a-456afc883474 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_aa0cfc1c-4738-4da7-9e0f-c582c808f0a9 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire1 EthernetPlug2 - OperationsSupport Cisco1921Router EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire2%20EthernetPlug1%20-%20OperationsSupport%20Cisco1921Router%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_e74852e8-e491-4945-91d7-8f8d4f9863cf ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_504b0974-f88e-4a2b-9c7f-28d1b54859ce ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire2 EthernetPlug1 - OperationsSupport Cisco1921Router EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire2%20EthernetPlug2%20-%20OperationsSupport%20CiscoCatalystSwitch%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_2ec69119-66c8-457e-8423-4ec33f099b20 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_6f2435d9-f622-4749-996c-379e9d87b83d ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire2 EthernetPlug2 - OperationsSupport CiscoCatalystSwitch EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire3%20EthernetPlug1%20-%20OperationsSupport%20Cisco1921Router%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_272ee7e2-353b-41fc-a03e-38168d7b4a7f ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_1c9c25cb-e95a-4708-a2ca-65e252b24a3f ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire3 EthernetPlug1 - OperationsSupport Cisco1921Router EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire3%20EthernetPlug2%20-%20SCADA%20ScalanceX414-3e-1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_30cee2f3-26c5-496b-ae7c-b8caf2aa0353 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_2d23b693-4fdd-45f5-8541-22dfd91ad4b6 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire3 EthernetPlug2 - SCADA ScalanceX414-3e-1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire4%20EthernetPlug1%20-%20OperationsSupport%20CiscoCatalystSwitch%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_c8e94303-b2d2-40e0-90f7-949eee3d885c ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_a95b5f98-b5cf-447b-8792-ed42e675f8b6 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire4 EthernetPlug1 - OperationsSupport CiscoCatalystSwitch EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire4%20EthernetPlug2%20-%20OperationsSupport%20MES1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_87ef45da-2057-4860-974b-26d64f8d5f9d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_a45b3032-c03b-4410-80a0-8f69fe26fef2 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire4 EthernetPlug2 - OperationsSupport MES1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire5%20EthernetPlug1%20-%20OperationsSupport%20CiscoCatalystSwitch%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_9501027d-fbb2-47dd-8c06-ceb068d39fb2 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_39ffd08b-5871-49bc-9e10-b1e340c12ac6 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire5 EthernetPlug1 - OperationsSupport CiscoCatalystSwitch EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire5%20EthernetPlug2%20-%20OperationsSupport%20SimaticFieldPGM6%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_d0199789-9c02-44fa-9f62-dfddb1d1a47d ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_3ec77b75-860c-4856-a6b1-638136639ac8 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire5 EthernetPlug2 - OperationsSupport SimaticFieldPGM6 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire6%20EthernetPlug1%20-%20OperationsSupport%20CiscoCatalystSwitch%20EthernetSocket4 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_14548e38-9b8c-4bb9-95bd-fa0bfa038371 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket4_1a4b042a-eef5-46ce-b350-656ab2b6c060 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire6 EthernetPlug1 - OperationsSupport CiscoCatalystSwitch EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire6%20EthernetPlug2%20-%20OperationsSupport%20AnalyticsServer1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_4eb6dc2f-dff1-4bac-a865-492f1023404b ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_c80744fd-2711-491f-8aac-776e9c28c62f ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire6 EthernetPlug2 - OperationsSupport AnalyticsServer1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire7%20EthernetPlug1%20-%20OperationsSupport%20Cisco1921Router%20EthernetSocket4 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_9ac7da67-a7ec-4547-86fa-c7970ffc8cb9 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket4_c57b5d9b-d2a1-44cf-bb7a-57a60957247a ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire7 EthernetPlug1 - OperationsSupport Cisco1921Router EthernetSocket4" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20OperationsSupport%20EthernetWire7%20EthernetPlug2%20-%20ControlAndProcess%20CarDoorPartWelding%20SpotWeldingStation%20ScalanceX414-3e-1%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_046841d8-4a43-4d61-b003-35769f7e3992 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_829e06ef-1ede-49f3-8e55-a6a18ffcdace ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire7 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20SCADA%20EthernetWire5%20EthernetPlug1%20-%20SCADA%20ScalanceX414-3e-1%20EthernetSocket2 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_d4e83dfa-6e8a-4b50-b492-2b16780577d6 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket2_a9bcea30-40e4-4439-a855-e4b088f1254f ; - rdfs:comment "InternalLink" ; - rdfs:label "Link SCADA EthernetWire5 EthernetPlug1 - SCADA ScalanceX414-3e-1 EthernetSocket2" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20SCADA%20EthernetWire5%20EthernetPlug2%20-%20SCADA%20SimaticWinCC%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_9411fd4d-e3f0-4b82-9726-cc007318a8bf ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_a92c7873-0a07-4694-92eb-4e5afa8851a4 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link SCADA EthernetWire5 EthernetPlug2 - SCADA SimaticWinCC EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20SCADA%20EthernetWire6%20EthernetPlug1%20-%20SCADA%20ScalanceX414-3e-1%20EthernetSocket3 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug1_92abd253-9f0a-45cc-a4c5-9820592a1c40 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket3_6fea490b-3e8f-4243-85b9-e6e0d8f24e18 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link SCADA EthernetWire6 EthernetPlug1 - SCADA ScalanceX414-3e-1 EthernetSocket3" . - - -### http://www.ipr.kit.edu/aml_importer#Link%20SCADA%20EthernetWire6%20EthernetPlug2%20-%20SCADA%20SimaticProcessHistorian%20EthernetSocket1 - rdf:type owl:NamedIndividual , - aml_importer:Link ; - aml_ontology:hasRefPartnerSideA aml_importer:ei_EthernetPlug2_3a0cd779-4358-4a4e-9e1d-760d88d9e968 ; - aml_ontology:hasRefPartnerSideB aml_importer:ei_EthernetSocket1_693e5301-37c0-4168-8f29-0908cb40c024 ; - rdfs:comment "InternalLink" ; - rdfs:label "Link SCADA EthernetWire6 EthernetPlug2 - SCADA SimaticProcessHistorian EthernetSocket1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19732000122019015600_001_zb_gestell_fa~1.1_AF138E59-0000-17AC-556E-B961000032D8 - rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_8F6D40ED-CA1B-42AC-BA35-763748533648 ; - rdfs:comment "InternalElement" ; - rdfs:label "F19732000122019015600_001_zb_gestell_fa~1.1" . - - -### http://www.ipr.kit.edu/aml_importer#ie_F19732000122019015600_001_zb_gestell_fa~2.1_AF138E59-0000-17AC-556E-B961000032D9 - rdf:type owl:NamedIndividual , - aml_importer:Resource ; - aml_ontology:hasEI aml_importer:ei_Representation_A5AE5EF4-AE56-428B-954D-92945F1BDAAE ; - rdfs:comment "InternalElement" ; - rdfs:label "F19732000122019015600_001_zb_gestell_fa~2.1" . - - -### Generated by the OWL API (version 4.5.6.2018-09-06T00:27:41Z) https://github.com/owlcs/owlapi diff --git a/amlsec/src/main/resources/amlsec.ttl b/amlsec/src/main/resources/amlsec.ttl deleted file mode 100644 index 2969d53..0000000 --- a/amlsec/src/main/resources/amlsec.ttl +++ /dev/null @@ -1,18474 +0,0 @@ -@prefix : . -@prefix owl: . -@prefix protege: . -@prefix swrl: . -@prefix swrlb: . -@prefix xsd: . -@prefix agOnt: . -@prefix rdfs: . -@prefix amlOnt: . -@prefix icsSecOnt: . -@prefix swrla: . -@prefix aml_ontology: . -@prefix aml_importer: . -@prefix amlImp: . -@prefix xsp: . -@prefix rdf: . -@prefix xml: . -@prefix sqwrl: . -@prefix secOnt: . -@prefix secont: . -@prefix owlapi: . - -agOnt:edge_CVE-2013-2785_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:LogicalEndpoint - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpoint" . - -agOnt:edge_CVE-2014-4684_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4684 . - -agOnt:edge_CVE-2016-2201_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2013-2785_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ie_030GRF341_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-BC0100003310 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_8A4B1B26-AB6C-4B40-B204-AA82A5307F0D , amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_B2EECEE9-623A-4B33-86AB-018EBC3873D6 . - -amlImp:ei_LogicalEndpointHTTP_2d9365fd-7a4f-46ec-aa7b-075c9969efc2 - a amlImp:LogicalEndpointHTTP , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP" . - -agOnt:edge_CVE-2017-9798_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9798 . - -aml_ontology:hasRefPartner - a owl:ObjectProperty ; - rdfs:range amlImp:Link ; - owl:inverseOf aml_ontology:hasRefPartnerSideB , aml_ontology:hasRefPartnerSideA . - -amlImp:Webserver a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Webserver" ; - rdfs:subClassOf amlImp:Host . - -agOnt:edge_UntrustedCrossZoneConnection_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ie_020GRF141_FZG0_AF138E59-0000-17AC-556E-B81A0000323B - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_FZG0" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.195001"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.015"^^rdfs:Literal ; - amlImp:hasFrame_z "0.697"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_FZG0_BCF6D05F-A0D3-4EA6-B9B6-5091CB038677 , amlImp:ei_Attachment_COLLADA_FZG0_69314A25-6306-4E29-B36C-75FCEC09F778 . - -amlImp:hasCpeUpdate a owl:DatatypeProperty ; - rdfs:range xsd:string . - -amlImp:Site a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Site" ; - rdfs:subClassOf amlImp:ResourceStructure . - -amlImp:ei_Process_59dfad55-376c-4187-be99-f38a65f6e016 - a amlImp:PPRConnector , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Process" . - -amlImp:ie_Portlist_64d1dea7-30d1-4f8e-a41e-e09b1c689f9b - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_MotorSocket_4d895e1a-ce3b-471b-bd55-4cd328d4bb8e , amlImp:ei_EthernetSocket_8186e078-1346-489f-baed-bfa4e8b524f3 , amlImp:ei_DataSocket_4af3778d-2956-4fdf-9345-d1fc5957528a . - -agOnt:edge_CVE-2012-2595_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2595 . - -amlImp:ei_EthernetPlug1_479ada71-c9a1-4dc7-b139-ebdcffc5e1b8 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ActuatingDrive - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ActuatingDrive" ; - rdfs:subClassOf amlImp:Actuator . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpriseDMZ LogicalNetwork LogicalHTTPConnection1 LogicalEndpointHTTP-2 - Business BusinessAppServer1 LogicalPortList LogicalEndpointHTTP-1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointHTTP-2_ede3a8fd-21f5-4d63-978e-50cd5b01e756 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointHTTP-1_27371c00-7ffc-4820-b129-c971d5e6a739 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2013-2823_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_2DF9DCC6-90F3-41CC-A729-7B75064E6738 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_LogicalNetwork_934fb791-a406-4b96-946a-e23db8c5eda9 - a amlImp:LogicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" ; - aml_ontology:hasIE amlImp:ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 . - -amlImp:Attachment_030RB_300_KR240R2700prime__030GES390 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030RB_300_KR240R2700prime__030GES390" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_030GES390_633BC548-00F4-4CE1-B825-BD135EF6074D ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_030RB_300_KR240R2700prime__7B0A454B-4206-4AEC-985D-7F6E9F5E4904 . - -amlImp:LogicalDevice a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalDevice" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:Gate a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Gate" ; - rdfs:subClassOf amlImp:DiscManufacturingEquipment . - -amlImp:ei_Representation_C8C9A85D-2494-493A-AD56-54509CB9A40A - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:ei_Attachment_Zentrierstift1_3BA752A4-2733-432C-B1DF-4B64B732FD80 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Zentrierstift1" . - -amlImp:ie_Schutzzaun_2000x2000.12_AF138E59-0000-17AC-556E-BC50000033A0 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.12" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-13.05"^^rdfs:Literal ; - amlImp:hasFrame_y "8.5"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -secont:CVE-2013-6821 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-6821"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -secont:CVE-2014-0751 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-0751"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_COLLADA_010RB_100_KR240R2700prime__CE0465E3-A2EA-42E2-8086-A53E69AA7988 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_010RB_100_KR240R2700prime_" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schlitten_Product.dae#Schlitten" ; - amlImp:hasTarget "./Schlitten_AttachmentPoint_010RB_100_KR240R2700prime_"^^rdfs:Literal . - -agOnt:edge_CVE-2013-2811_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ie_CarBodyManufacturingFacility_5872b876-25d3-4b7f-9655-c4d2422e0197 - a amlImp:Area , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "CarBodyManufacturingFacility" ; - aml_ontology:hasIE amlImp:ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0 , amlImp:ie_CarDoorProductionLine_93a4ebb4-211e-4f43-8e3b-76fe4df635c7 , amlImp:ie_Business_3ff407a0-13b9-43a3-a26a-850bd0288d49 . - -amlImp:ie_F16500000115199800458_001_458_walther.1_AF138E59-0000-17AC-556E-B85100003269 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F16500000115199800458_001_458_walther.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0.001"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_A612DA04-C947-48BC-8556-09B6A6ED73ED . - -amlImp:ei_Attachment_030RB_100_SWP_030R1_030_W_5898418B-3444-4BA6-92A7-F86FFB3BA9EC - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_SWP_030R1_030_W" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -agOnt:edge_CVE-2016-2201_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-3 DataPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 030RB_100_KR240R2700prime_ DataSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_DataPlug1_a7bcea0f-8293-4838-870d-b1cc839f1b34 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_DataSocket_846549de-aa8c-4c87-900e-543d02116fe4 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_ST030_AF138E59-0000-17AC-556E-B81A0000323E - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ST030" ; - aml_ontology:hasIE amlImp:ie_030RB_300_AF138E59-0000-17AC-556E-B961000032DA , amlImp:ie_030RB_200_AF138E59-0000-17AC-556E-B8BD000032A1 , amlImp:ie_030RB_100_AF138E59-0000-17AC-556E-B81A0000323F , amlImp:ie_030GST100_AF138E59-0000-17AC-556E-BC030000331D . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility CarDoorProductionLine IndustrialDMZ LogicalNetwork LogicalOPC-UAConnection1 LogicalEndpointOPC-UA-1 - CarBodyManufacturingFacility CarDoorProductionLine IndustrialDMZ Jump1 LogicalPortList LogicalEndpointOPC-UA" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC-UA-1_6397e1c3-f31f-49a4-a1f0-1ebb1028c4ea ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC-UA_105f4f40-54fe-4d8f-90d2-bcdfd30c0031 . - -amlImp:ei_EthernetPlug1_c8e94303-b2d2-40e0-90f7-949eee3d885c - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_ITOTCrossConnection_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability icsSecOnt:ITOTCrossConnection . - -amlImp:ie_030WZA180_030WZD121_BHF_AF138E59-0000-17AC-556E-B8B300003281 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_030WZD121_BHF" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030WZD121_BHF_97760CE4-1C13-4228-A0E5-10631A607847 , amlImp:ei_Attachment_030WZD121_BHF_0EE264DF-39A6-4B00-884A-1E0ABD85A222 . - -agOnt:edge_CVE-2012-2597_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2597 . - -amlImp:ie_010GRF141_Base2_AF138E59-0000-17AC-556E-B56E000031EE - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_Base2" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.1"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Base2_24EA73C7-A304-4B52-A1D7-E29406E699C5 , amlImp:ei_Attachment_COLLADA_Base2_FD397F7F-44FB-4E25-BB76-102543881756 . - -agOnt:edge_CVE-2013-6822_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6822 . - -amlImp:ei_EthernetPlug1_d873bdde-d3f8-4655-b20f-11287be393e1 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:CommunicationPackage - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "CommunicationPackage" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:vertex_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2016-2201_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-0750_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2811_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-5074_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2019-6833_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_UntrustedCrossZoneConnection_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2201_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2014-5074_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2016-2200_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2016-2201_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-0751_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedWirelessDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NoPLCProgramCopyProtection_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-2355_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_CVE-2013-2823_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2013-2785_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2200_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-5074_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_UnusedOpenPort_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NoPLCProgramCopyProtection_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:vertex_has_Weight 0.0e0 . - -amlImp:ie_F19721000063203000100_001_zb_hb_ablage_001_071106.1_AF138E59-0000-17AC-556E-BC4600003334 - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063203000100_001_zb_hb_ablage_001_071106.1" ; - amlImp:hasFrame_rx "-180"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.225"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.13"^^rdfs:Literal ; - amlImp:hasFrame_z "1.37"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_3586C6BD-7D09-484A-9545-269973500836 . - -amlImp:ie_LogicalNetwork_51a7d9fa-5805-4038-87d3-9d7158e486d0 - a amlImp:LogicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" . - -amlImp:ie_Portlist_34b6e14b-c319-4671-bc49-bcb2c916f147 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_WirelessInterface1_a288c0ef-c44e-4cb1-b9fe-53754023fff1 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2011-4707_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2011-4707 . - -amlImp:ei_LogicalEndpointProfinet1_01e828d3-97b1-4667-ab52-12b568cea9da - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet1" . - -agOnt:edge_CVE-2013-2785_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a owl:NamedIndividual , amlImp:PLC ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71516F_2" ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "simatic_s7-1516f-3_pn\\/dp_cpu" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_LogicalPortList_540da1cc-3d89-430b-9d7d-5763104d6c24 , amlImp:ie_Program_89b2c13b-7614-4964-be85-6d9d8505fecc , amlImp:ie_Portlist_28da059b-1379-4b98-a3bf-853221859659 . - -amlImp:ie_KukaDataWireX21-3_7abaf367-74a7-42bf-970c-3033504ba368 - a amlImp:DataWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaDataWireX21-3" ; - aml_ontology:hasEI amlImp:ei_DataPlug2_f58826ef-44b9-4605-bb45-2b82cd5afb04 , amlImp:ei_DataPlug1_a7bcea0f-8293-4838-870d-b1cc839f1b34 . - -agOnt:edge_CVE-2018-1283_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1283 . - -agOnt:edge_CVE-2019-10092_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10092 . - -agOnt:edge_CVE-2010-2904_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2010-2904 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_LogicalEndpointOPC_871d320f-b7a9-4fa2-9b23-c975da0cc485 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC4C0000336E - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.14" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.2"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336F , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003370 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire6 EthernetPlug2 - Business BusinessAppServer1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_40cd00a0-391c-4620-9527-d78c5d3b20a2 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_d833a7f9-908e-4b0d-88d2-16298bb533cf . - -amlImp:PropertySet a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PropertySet" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -icsSecOnt:Hazard_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2014-0751_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_Attachment_030RB_100_tool_1_decouple_sim_8D1439C3-24E4-4AC8-87C9-0272D92787B3 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_tool_1_decouple_sim" . - -amlImp:EthernetPlug a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "EthernetPlug" ; - rdfs:subClassOf amlImp:Ethernet . - -agOnt:edge_CVE-2014-0751_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_Attachment_COLLADA_030GES190_C5DC63CF-707A-4E76-BF31-7EEA8F58EB17 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GES190" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2" ; - amlImp:hasTarget "./KR240R2700prime_2_AttachmentPoint_030GES190"^^rdfs:Literal . - -secont:BusinessInterruption_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 . - -agOnt:edge_UnusedOpenPort_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:ei_Attachment_COLLADA_OKF_Dehnfuge_BB6DEC54-F99C-4501-9586-35B2A215FF7A - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_OKF_Dehnfuge" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1" ; - amlImp:hasTarget "./KL1500_3.1_FrameOfInterest_OKF_Dehnfuge"^^rdfs:Literal . - -agOnt:edge_CVE-2016-4975_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-4975 . - -amlImp:Attachment_Schlitten_020RB_100_KR240R2700prime_ - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_Schlitten_020RB_100_KR240R2700prime_" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_020RB_100_KR240R2700prime__9E3A7778-5111-4959-8BE3-A2B2D70E4358 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_Schlitten_1EA0D29E-7FB7-43A9-BB88-FD03CDDF9B42 . - -agOnt:vertex_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2010-2904_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2019-10092_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2013-6823_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2014-1964_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2015-5067_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2016-1546_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2014-1961_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2017-3167_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-8612_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2014-4003_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2017-15710_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2011-4707_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2017-7668_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2019-0211_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-8743_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2013-7364_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2017-9788_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2018-1283_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-4975_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2018-1312_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2013-6821_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2013-6822_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2016-8740_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2018-17199_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2019-10098_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-5372_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2017-3169_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2014-8587_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2018-2363_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2014-1960_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2008-3358_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2013-6816_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2017-7679_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-15715_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-9798_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_InsecureProtocolUsed_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_UntrustedCrossZoneConnection_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2015-8840_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2011-5260_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2013-6819_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:vertex_has_Weight 5.5e0 . - -agOnt:edge_CVE-2016-2200_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:Attachment_Schlitten_010RB_100_KR240R2700prime_ - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_Schlitten_010RB_100_KR240R2700prime_" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_010RB_100_KR240R2700prime__F70A37BF-82A5-4540-BDEB-3B9BB23BE8BC ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_Schlitten_FC5D79A1-AC60-478E-BCBA-D411F5E20323 . - -agOnt:vertex_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2 ; - agOnt:vertex_has_Edge agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2014-5074_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-0751_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2013-2823_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2200_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2201_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2201_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2019-6833_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_UnusedOpenPort_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_CVE-2014-5074_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2200_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2013-2811_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_UntrustedCrossZoneConnection_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2785_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2014-0750_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-5074_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2016-2201_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-5074_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-2355_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:vertex_has_Weight 0.0e0 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire4 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 SimaticS71516F EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_d1271e4c-b1b8-49b5-8fdd-504f6596f0da ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_fc47c0ff-3e24-405a-a852-953b71ee65b6 . - -agOnt:edge_UnusedOpenPort_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:ei_LogicalEndpointPROFIsafe_c0f1cf30-00cd-459b-aa62-2b9578daa128 - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2018-1312_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1312 . - -agOnt:edge_CVE-2012-2597_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2597 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_ST010_AF138E59-0000-17AC-556E-B124000031B3 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ST010" ; - aml_ontology:hasIE amlImp:ie_010VRE100_AF138E59-0000-17AC-556E-B56E000031F3 , amlImp:ie_010RB_100_AF138E59-0000-17AC-556E-B124000031B4 , amlImp:ie_010ABS100_AF138E59-0000-17AC-556E-B570000031F8 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_UntrustedCrossZoneConnection_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:PLCProgram a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PLCProgram" ; - rdfs:subClassOf amlImp:Program ; - owl:disjointWith amlImp:Wireless , amlImp:Ethernet , amlImp:PortList , amlImp:AutomationMLBaseRole , amlImp:NetworkDevice , amlImp:Wire , amlImp:LogicalEndpoint , amlImp:OPCUASecurityPolicy , amlImp:AutomationMLBaseInterface , amlImp:SecurityDevice , amlImp:Link , amlImp:Zone , amlImp:Protocol , amlImp:Motor , amlImp:LogicalPortList , amlImp:Conduit , amlImp:Data , amlImp:Host , amlImp:WirelessConnection . - -amlImp:ie_030RB_300_AF138E59-0000-17AC-556E-B961000032DA - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_300" ; - aml_ontology:hasIE amlImp:ie_030RB_300_AF138E59-0000-17AC-556E-B99B000032FC , amlImp:ie_030GES392_AF138E59-0000-17AC-556E-BC030000331A , amlImp:ie_030EKF370_AF138E59-0000-17AC-556E-BC0100003311 , amlImp:ie_030SWZ321_AF138E59-0000-17AC-556E-B99C00003300 , amlImp:ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB , amlImp:ie_030GES390_AF138E59-0000-17AC-556E-BC0300003317 , amlImp:ie_030GRF341_AF138E59-0000-17AC-556E-B99D00003303 . - -agOnt:vertex_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321 ; - agOnt:vertex_has_Edge agOnt:edge_NotSeparatedTemporarilyConnectedDevice_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a , agOnt:edge_ITOTCrossConnection_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_UntrustedCrossZoneConnection_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_CVE-2019-13929_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_InsecureAlgorithmUsed_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:vertex_has_Weight 0.0e0 . - -agOnt:edge_CVE-2013-0674_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0674 . - -amlImp:ei_Attachment_COLLADA_030RB_300_BH_030R3_030_W_20DA954A-FBD3-49B6-9E1A-D97A347A6DFE - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_300_BH_030R3_030_W" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - amlImp:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_300_BH_030R3_030_W"^^rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_C7BA8C03-B866-4C9C-9AE0-40FE849CD27A - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae" . - -amlImp:ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a - a owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "MicrosoftSQLServer" ; - amlImp:hasCpeEdition "x64" ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "sql_server" ; - amlImp:hasCpeUpdate "sp2" ; - amlImp:hasCpeVendor "microsoft" ; - amlImp:hasCpeVersion "2008" . - -agOnt:edge_CVE-2018-17199_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2018-17199 . - -amlImp:ei_Representation_9FD125EE-ED2C-4F38-80C3-D52078B53D48 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ei_Representation_A6B2E11C-BBFD-4248-88A8-A606164886B2 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire2 EthernetPlug1 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ScalanceX414-3e-1 EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_76e82eca-3004-4e04-9eee-abc322b491d1 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_b8fd1fdb-5185-47da-a635-425c897b4a0e . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire3 EthernetPlug2 - Business CiscoFirewall EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_cde479a9-1cfc-4908-86f5-0d02683c4935 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_3b2421f0-e997-4a03-a6c3-f6959e16a1d2 . - -amlImp:ie_Portlist_9e0353d3-876b-443b-b1b9-93bc26113d19 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_c80744fd-2711-491f-8aac-776e9c28c62f . - -secont:RegulatoryNonCompliance_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 - a secont:RegulatoryNonCompliance ; - secont:consequence_impacts_Asset - amlImp:ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_EthernetSocket1_3b2421f0-e997-4a03-a6c3-f6959e16a1d2 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ei_DataPlug2_ec75d2b6-d66e-422a-b6a4-b8fd93fc5597 - a amlImp:DataPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug2" . - -agOnt:edge_CVE-2016-2200_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2017-7668_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7668 . - -agOnt:edge_CVE-2019-6833_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_DataPlug1_9a404f47-0a3c-4ac6-a661-f24926d8101d - a amlImp:DataPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug1" . - -amlImp:ie_Portlist_e11f7457-d2f9-4350-8445-c626b1316a97 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket2_3ec391ca-8953-416f-85ad-0c97a1a1a501 , amlImp:ei_EthernetSocket1_d507e3e3-1a9c-4957-b399-c96b9c68c09a . - -amlImp:ei_EthernetSocket1_881a9b51-6752-4aa8-8471-714015644adf - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2014-4683_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4683 . - -amlImp:ei_EthernetSocket1_aa0cfc1c-4738-4da7-9e0f-c582c808f0a9 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire4 MotorPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_300 KRC4 MotorSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_MotorPlug1_78aef019-703a-4d0e-a682-17955c9bb45c ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_MotorSocket_4d895e1a-ce3b-471b-bd55-4cd328d4bb8e . - -agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:vertex_has_Edge agOnt:edge_InsecureProtocolUsed_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0283_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-13929_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_CVE-2019-0337_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0278_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0316_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_ITOTCrossConnection_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_CVE-2019-0282_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_UntrustedCrossZoneConnection_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_UntrustedCrossZoneConnection_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_InsecureAlgorithmUsed_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:vertex_has_Weight 0.0e0 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_Attachment_COLLADA_OKF_Dehnfuge_6231E7B7-B291-45A4-88B6-C880FB02C2E3 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_OKF_Dehnfuge" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KL1500_3_Product.dae#KL1500_3" ; - amlImp:hasTarget "./KL1500_3_FrameOfInterest_OKF_Dehnfuge"^^rdfs:Literal . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire6 EthernetPlug2 - OperationsSupport AnalyticsServer1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_4eb6dc2f-dff1-4bac-a865-492f1023404b ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_c80744fd-2711-491f-8aac-776e9c28c62f . - -agOnt:edge_CVE-2019-6833_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -amlImp:ie_Portlist_c6a3f2ed-4d18-4109-bbcc-7bda96340947 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_WirelessInterface3_4cd4526f-ba94-407a-8b36-8f30f39dcf28 , amlImp:ei_WirelessInterface2_68cdcef0-c91a-4abb-83cb-e95450a9429d , amlImp:ei_WirelessInterface1_1856e465-4f19-4308-a9fb-5b903c6addf1 , amlImp:ei_EthernetSocket1_2a220313-14f5-466d-9338-1a0db0d2ffef . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-5074_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_MotorSocket_38a06c3f-ad69-4eed-9df0-d0320219f65a - a amlImp:MotorSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2016-4975_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-4975 . - -agOnt:edge_CVE-2012-3030_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3030 . - -amlImp:ei_MotorSocket_4e8f851e-faac-4b92-a8db-987634653157 - a amlImp:MotorSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003362 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_E4D4046E-398B-4730-B707-224DED4A7E66 . - -agOnt:edge_InsecureProtocolUsed_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire5 EthernetPlug2 - DMZ AVServer1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_7024d245-4621-4b60-b25c-d0b72e30892e ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_e3204a83-9a92-404e-99ae-decdfec06045 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_EthernetSocket1_53a5f197-a511-4e71-84e9-2ab523099198 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336F - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_2E041E3E-ED0A-486D-95E7-07514A3449E9 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_saferobotparts_Tool1_1_DC9E93B8-98CF-4A22-927B-ED9753DEB48A - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - -amlImp:ei_EthernetSocket3_ad4fb3b9-a476-4ac8-b83f-f3c99bca1513 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -amlImp:ei_Attachment_COLLADA_030RB_100_KAPPENFRAESEN_44DF7F6F-DBD2-46BC-B6AF-2C165FB00B07 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_KAPPENFRAESEN" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/59230001_FIX_EF310_Product.dae#59230001_FIX_EF310" ; - amlImp:hasTarget "./59230001_FIX_EF310_AttachmentPoint_030RB_100_KAPPENFRAESEN"^^rdfs:Literal . - -amlImp:PhysicalEndpointlist - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PhysicalEndpointlist" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -amlImp:ie_EthernetWire1_ba567ab4-68bf-4961-8c68-999ee70644f4 - a amlImp:EthernetWire , amlImp:Conduit , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_ab091654-77cb-4680-bfd9-3a1651eaf59c , amlImp:ei_EthernetPlug1_dbdcbb3f-00e1-4c8d-a548-3dc25891facb . - -agOnt:edge_CVE-2018-1283_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1283 . - -agOnt:edge_InsecureProtocolUsed_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -icsSecOnt:NoPLCProgramCopyProtection - secont:vulnerability_on_Asset amlImp:ie_Program_89b2c13b-7614-4964-be85-6d9d8505fecc , amlImp:ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 . - -amlImp:OverheadConveyor - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "OverheadConveyor" ; - rdfs:subClassOf amlImp:Conveyor . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Attachment_Roboterposition_Stellung_A_3064499C-E3E0-4D19-BFB6-52579034DA24 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Roboterposition_Stellung_A" . - -agOnt:edge_CVE-2019-0278_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0278 . - -amlImp:ei_Attachment_Tool1_E1C085CF-7830-426E-B52A-D51356DA3EA1 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - -amlImp:ei_WirelessPlug1_97f811e1-694e-4b03-9f0b-4a0308462c02 - a amlImp:WirelessPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug1" . - -amlImp:ei_Resource_76e731d9-164c-4a55-9818-4dfcf9089a88 - a amlImp:PPRConnector , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Resource" . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334A - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_E9017613-E22F-479F-857C-845BEBC4DB41 . - -amlImp:ie_Schutzzaun_AF138E59-0000-17AC-556E-BC4900003344 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun" ; - aml_ontology:hasIE amlImp:ie_B_AF138E59-0000-17AC-556E-BC4F00003398 , amlImp:ie_A_AF138E59-0000-17AC-556E-BC4900003345 . - -amlImp:ie_Zaunelement_775mm.1_AF138E59-0000-17AC-556E-BC50000033C1 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Zaunelement_775mm.1" ; - aml_ontology:hasEI amlImp:ei_Representation_0BF1708F-EE3C-4E4E-8BC3-13B2334D5AE2 . - -agOnt:edge_UnusedOpenPort_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_NotSeparatedWirelessDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2013-0677_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0677 . - -amlImp:ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003392 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_H1500xB2885.1" ; - aml_ontology:hasEI amlImp:ei_Representation_E9C64C01-B228-41AE-8294-050FD9C5D649 . - -amlImp:ei_Attachment_COLLADA_020GRF141_A2136160067_SFK-HAB-010_2F622227-2AE5-4B4B-9AAD-42D549F55200 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020GRF141_A2136160067_SFK-HAB-010" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_020GRF141_A2136160067_SFK-HAB-010"^^rdfs:Literal . - -amlImp:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B95D000032D3 - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063199800000_001_kr210_1000mm.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "45"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_B0784176-AC01-4D65-B993-9A04D8244BCC . - -agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2016-2201_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2200_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2200_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-2355_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_UnusedOpenPort_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-5074_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2014-0751_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2013-2811_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-5074_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2019-6833_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_CVE-2013-2785_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2200_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2201_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_UntrustedCrossZoneConnection_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-0750_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2014-5074_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2013-2823_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:vertex_has_Weight 8.0e0 . - -secont:CVE-2012-3034 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-3034"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_EthernetWire11_76e8842d-07b5-42d7-9799-0afc9c9482a3 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire11" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_f577cb67-8d22-43b5-9012-8b85b548bf81 , amlImp:ei_EthernetPlug1_f7c9ed9e-7700-4469-a7de-163190ee5eb1 . - -amlImp:ie_Portlist_875cb0fa-93d7-4082-b96a-eff064220be5 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_MotorSocket_ed3aabca-267d-46c4-b511-77d151c7846f , amlImp:ei_EthernetSocket_642233fd-820b-40fc-8705-9908fd914dac , amlImp:ei_DataSocket_7e49a15d-3674-4c83-9b3e-cb30a3ba0fe8 . - -amlImp:Motor a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Motor" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire2 EthernetPlug1 - EnterpiseDMZ Cisco1921Router EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_8ebc5cee-11a4-4417-99a7-6f0b757282e8 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_6bf6a4bd-7bef-412c-938b-4d3bde1bfa62 . - -amlImp:ei_EthernetSocket4_c57b5d9b-d2a1-44cf-bb7a-57a60957247a - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - -amlImp:ie_PhysicalNetwork_5229fef2-bdc3-4258-8255-01e888c5a482 - a owl:NamedIndividual , amlImp:PhysicalNetwork ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" ; - aml_ontology:hasIE amlImp:ie_EthernetWire1_c2af52c8-e16d-40f9-9b36-e00abb2f9d70 , amlImp:ie_EthernetWire2_f3573406-3d87-405f-96f7-fc824f8855c1 , amlImp:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 , amlImp:ie_EthernetWire6_fb7b3ad5-3da4-46f1-8bae-fa74fa6b1432 , amlImp:ie_EthernetWire5_4d27d192-979a-4dac-8b97-b6cee0bbeff2 , amlImp:ie_EthernetWire4_ac03b247-0077-4dd9-9c1a-457733e5d2f1 . - -agOnt:edge_CVE-2014-0751_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_EthernetSocket1_fc47c0ff-3e24-405a-a852-953b71ee65b6 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:DataPlug a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "DataPlug" ; - rdfs:subClassOf amlImp:Data . - -amlImp:Router a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Router" ; - rdfs:subClassOf amlImp:NetworkDevice . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:EmbeddedDevice - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "EmbeddedDevice" ; - rdfs:subClassOf amlImp:ControlHardware . - -amlImp:ei_EthernetSocket10_17701d76-794d-4eda-9aa1-44dfd9ee1b18 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket10" . - -agOnt:edge_CVE-2016-2200_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_SpotWelding_05c74cf1-7813-4999-9239-2259fcf63aee - a amlImp:Process , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SpotWelding" ; - aml_ontology:hasEI amlImp:ei_Resource_76e731d9-164c-4a55-9818-4dfcf9089a88 , amlImp:ei_Product_1db172cd-14bc-4ce4-a9fe-bf99cc1598c0 , amlImp:ei_LogicInterfaceGantt_1342f8d1-db6b-41e8-a387-47145362f813 , amlImp:ei_LogicInterfaceActivityOnNode_89b75af1-3a02-4d85-a4e6-c491eb2dacb3 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336A - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_D9DF7FC1-FACB-44E1-8C20-72948C52CC73 . - -agOnt:edge_CVE-2014-0750_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -agOnt:edge_CVE-2016-2201_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:SafetyZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "SafetyZone" ; - rdfs:subClassOf amlImp:OTZone . - -amlImp:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Base1_AF138E59-0000-17AC-556E-B95D000032CF - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19704000046499800797_001_cgr_klebepistole_030rb300.1_Base1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.2815"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.099"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Base1_F8739A90-E798-4779-849F-F774BB6A03B6 , amlImp:ei_Attachment_COLLADA_Base1_BFB699E0-894D-4B81-9320-EB0CBB28500B . - -agOnt:edge_CVE-2017-7679_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7679 . - -amlImp:ei_Representation_8D49D096-625E-46F8-88E3-A2622D385CE6 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/SafeRobotParts_2_Product.dae#SafeRobotParts_2" . - -amlImp:ei_EthernetPlug1_30ab7cca-fd5b-4f17-92c3-b13af6a203f1 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -secont:BusinessInterruption_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 . - -amlImp:ei_MotorPlug2_77af8496-b3af-4e27-86b0-0fdf30cc9e0f - a amlImp:MotorPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug2" . - -amlImp:ei_Representation_A5AE5EF4-AE56-428B-954D-92945F1BDAAE - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19732000122019015600_001_zb_gestell_fa~2_Rep.dae" . - -amlImp:ei_Attachment_030SWZ121_D5424A35-758E-4C2F-AF2A-D59E562378E8 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030SWZ121" . - -amlImp:ei_Representation_32B26A25-D8D2-48B0-B82D-B7A4F58BAEF2 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4" . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:Attachment_030SWZ121_030WZD121 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030SWZ121_030WZD121" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_030WZD121_50F00CDD-9E68-495C-A49C-09DF1F6B7B22 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_030SWZ121_D5424A35-758E-4C2F-AF2A-D59E562378E8 . - -agOnt:edge_CVE-2014-8587_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-8587 . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_PhysicalNetwork_f6b49dd9-aaee-4be0-baab-97b1cf4d87e0 - a owl:NamedIndividual , amlImp:PhysicalNetwork ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" ; - aml_ontology:hasIE amlImp:ie_EthernetWire4_b7f4cd6a-cb4a-4e47-9eb3-289d1e96adfe , amlImp:ie_EthernetWire2_90ce1e2f-7908-4ad9-b3c4-eedc114221d2 , amlImp:ie_EthernetWire3_91cef007-9a7a-4a5c-86e0-4e793f13fb27 , amlImp:ie_EthernetWire5_d388eaf4-4b57-4bf5-9428-356dd41e5dfc , amlImp:ie_EthernetWire6_386cd97d-0556-4d99-b26f-9f656fc33e9e , amlImp:ie_EthernetWire1_90593190-f713-49cc-8bf8-5c74c9450d0f . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_LogicalProfinetConnection4_25615c2d-21e4-4624-9ee6-ac04a596e3e1 - a amlImp:Profinet , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalProfinetConnection4" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet2_04af5cee-6f9d-4f44-afe9-de3393fc7bf4 , amlImp:ei_LogicalEndpointProfinet1_47666355-7eb2-485b-83b6-b7a83ae24175 . - -amlImp:ei_LogicalEndpointOPC_4d43bded-d2e8-4c1f-a357-05760b746cbb - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - -amlImp:COLLADAInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "COLLADAInterface" ; - rdfs:subClassOf amlImp:ExternalDataConnector . - -amlImp:ie_LogicalPortList_b4c2a174-58a1-45bc-a8bd-49af4e933461 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet_9512f6d4-17f5-42fe-8d41-7049e4c0a1b9 , amlImp:ei_LogicalEndpointPROFIsafe_f3545173-695e-4c8e-b02e-4a3ed53a15ba , amlImp:ei_LogicalEndpointOPC_4a38d310-5447-4ac6-88a7-74bfc25172ec . - -agOnt:edge_CVE-2017-7679_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7679 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_UnusedOpenPort_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_CVE-2016-2201_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2014-2355_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_030WZD121_030SWZ121_AF138E59-0000-17AC-556E-B8A900003278 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD121_030SWZ121" ; - aml_ontology:hasEI amlImp:ei_Attachment_030SWZ121_D5424A35-758E-4C2F-AF2A-D59E562378E8 . - -amlImp:ei_Attachment_030RB_100_tool_1_couple_sim_E0BC059A-0904-4C70-8626-146F0D882EE7 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_tool_1_couple_sim" . - -amlImp:ie_LogicalPortList_c3ce6da1-7bfc-4793-bf1e-503a4845e1b3 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet_2d99c617-b230-4b96-be81-8108865806cc , amlImp:ei_LogicalEndpointPROFIsafe_57cb22a2-920a-4de4-9f02-52a8267b744d , amlImp:ei_LogicalEndpointOPC_4d43bded-d2e8-4c1f-a357-05760b746cbb . - -amlImp:ei_EthernetSocket1_2070bd6b-0107-425c-90e0-bfff8fd41c95 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-4061_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4061 . - -agOnt:edge_CVE-2018-1312_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1312 . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2013-3958_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-3958 . - -agOnt:edge_CVE-2016-2200_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2013-2785_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC50000033B5 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.16" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "-25.8"^^rdfs:Literal ; - amlImp:hasFrame_y "8.4"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire4 EthernetPlug1 - EnterpiseDMZ CiscoCatalystSwitch EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_0b97ffa8-eb93-417f-858e-a4add57b022a ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_dad4357c-c01f-4c20-833e-cdda1199d5c2 . - -agOnt:edge_CVE-2016-2201_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_Materialbereitstellung_A_AF138E59-0000-17AC-556E-BC4900003341 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Materialbereitstellung_A" ; - aml_ontology:hasEI amlImp:ei_Representation_6B6F83ED-EFBC-4EDA-9261-3A447B94DF5C . - -agOnt:edge_CVE-2014-5074_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_EthernetSocket3_e4931324-995a-4f20-ab21-384fb1ffea6d - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -amlImp:StorageZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "StorageZone" ; - rdfs:subClassOf amlImp:ResourceStructure . - -amlImp:ei_EthernetPlug1_c0f21b27-bf5a-4459-befb-23b245900980 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_Portlist_dafd7fbd-360d-4f1e-aa61-1a4afbd5de05 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_b25aef65-333a-4adc-9bd7-29d88a99349c . - -amlImp:ie_F36529100530800000000_staender_schlauchpaket_L2300_A950_H575.1_AF138E59-0000-17AC-556E-B95D000032D5 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F36529100530800000000_staender_schlauchpaket_L2300_A950_H575.1" ; - aml_ontology:hasEI amlImp:ei_Representation_365E06DA-69EA-4069-AB40-2999ABEAC961 . - -agOnt:edge_CVE-2014-4683_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4683 . - -amlImp:ei_Attachment_030RB_100_FG_030R1_030_W_5D446CD1-9A21-497F-A219-1052F112BBC9 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_FG_030R1_030_W" . - -agOnt:edge_CVE-2014-5074_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_EthernetSocket2_504b0974-f88e-4a2b-9c7f-28d1b54859ce - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ResourceStructure - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ResourceStructure" ; - rdfs:subClassOf amlImp:Structure . - -agOnt:edge_CVE-2016-2200_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:LogicalConnection - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalConnection" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_CVE-2016-1546_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-1546 . - -amlImp:ie_010RB_100_AF138E59-0000-17AC-556E-B155000031D6 - a amlImp:ControlCabinet , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010RB_100" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-2.272745"^^rdfs:Literal ; - amlImp:hasFrame_y "0.942511"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_4346C9F9-6E47-466C-9C60-1D07E54AEBC8 ; - aml_ontology:hasIE amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f . - -amlImp:ie_Portlist_8fe56bfd-ee80-4917-bf13-c150f58abf8d - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_4004db01-a168-4e93-b4b3-44494dc62463 . - -amlImp:LogicalEndpointHTTP - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointHTTP" ; - rdfs:subClassOf amlImp:LogicalEndpoint . - -amlImp:Profinet a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Profinet" ; - rdfs:subClassOf amlImp:Protocol . - -amlImp:ei_Representation_365E06DA-69EA-4069-AB40-2999ABEAC961 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F36529100530800000000_staender_schlauchpaket_L2300_A950_H575_Rep.dae" . - -amlImp:ie_Foerdertechnik_Stoerkontur_A_AF138E59-0000-17AC-556E-BC4900003340 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Foerdertechnik_Stoerkontur_A" ; - aml_ontology:hasEI amlImp:ei_Representation_D5A3A3BB-07C6-404F-9281-AA2781DBE9AF . - -amlImp:EnterpriseZone - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "EnterpriseZone" ; - rdfs:subClassOf amlImp:ITZone . - -secont:BusinessInterruption_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 . - -agOnt:edge_CVE-2014-2355_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ControlCabinet - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ControlCabinet" ; - rdfs:subClassOf amlImp:ControlEquipment . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -icsSecOnt:Hazard_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_Attachment_COLLADA_030GES290_9EDB471F-C9CF-4883-AAE1-17479DC5775C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GES290" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_3_Product.dae#KR240R2700prime_3" ; - amlImp:hasTarget "./KR240R2700prime_3_AttachmentPoint_030GES290"^^rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_020GRF141_Base1_AF138E59-0000-17AC-556E-B81A00003239 - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_Base1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.1"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Base1_466F8DA2-1F63-41EA-9808-DBC729F54146 , amlImp:ei_Attachment_COLLADA_Base1_8172A5D8-CB9F-4E1F-AA19-2FCF6A3E1766 . - -amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032F5 - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" ; - amlImp:hasFrame_rx "-172.84"^^rdfs:Literal ; - amlImp:hasFrame_ry "26.036"^^rdfs:Literal ; - amlImp:hasFrame_rz "-1.383"^^rdfs:Literal ; - amlImp:hasFrame_x "0.054813"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.001324"^^rdfs:Literal ; - amlImp:hasFrame_z "2.706696"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_32B26A25-D8D2-48B0-B82D-B7A4F58BAEF2 ; - aml_ontology:hasIE amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032F6 , amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B99B000032F8 , amlImp:ie_KRxxxRultra.6.1_030GRF341_AF138E59-0000-17AC-556E-B99B000032F7 . - -icsSecOnt:Hazard_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 . - -amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a amlImp:WirelessHARTSensor , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WHARTSensor2" ; - aml_ontology:hasIE amlImp:ie_Portlist_dc967453-2785-4472-8f12-e9c4cc7c7701 . - -amlImp:ie_030WZA180_030RB_100_tool_1_decouple_sim_AF138E59-0000-17AC-556E-B8B300003283 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_030RB_100_tool_1_decouple_sim" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030RB_100_tool_1_decouple_sim_5F032567-1A1B-41D8-99AC-EFDB12C13A97 , amlImp:ei_Attachment_030RB_100_tool_1_decouple_sim_8D1439C3-24E4-4AC8-87C9-0272D92787B3 . - -agOnt:edge_CVE-2014-5074_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2014-4682_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4682 . - -agOnt:edge_CVE-2019-0211_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0211 . - -amlImp:ei_Representation_42DCF521-EC77-44FA-8A81-B0CCA35E956C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:ei_Attachment_KRxxxRultra_6_1_4CF9835D-E98F-47F9-8C09-9FB44C70405A - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - -amlImp:ei_Attachment_030SWZ121_BHF_263FA9E4-E35A-4BAB-AC88-CAF74219E3F8 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030SWZ121_BHF" . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337C - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_CFD78EB8-CA34-4CF2-B9DC-1C7F54D2520B . - -agOnt:edge_CVE-2013-2785_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Representation_8D4DE416-D829-48EB-BE69-C8455E4952DB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2" . - -agOnt:edge_CVE-2014-5074_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -secont:InsecureAlgorithmUsed - secont:vulnerability_on_Asset amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 . - -amlImp:ie_030SWZ321_Base1_AF138E59-0000-17AC-556E-B99D00003301 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ321_Base1" ; - aml_ontology:hasEI amlImp:ei_Attachment_Base1_3E50FB8D-C747-402F-9761-ADBD51745232 . - -amlImp:ei_Representation_28169D3A-3C50-430D-AD23-1EB691E18F01 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae" . - -amlImp:ei_LogicalEndpointOPC_7f4077c1-4536-45d4-af0c-f516b817d3a7 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_LogicalNetwork_62b16a82-071a-415d-991a-a42e5536d530 - a amlImp:LogicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" ; - aml_ontology:hasIE amlImp:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a . - -agOnt:edge_CVE-2016-2200_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_Attachment_Tool2_D32F8756-B290-460E-A668-74370A2D9F9D - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool2" . - -amlImp:ei_Attachment_Design1_18D10496-78D6-4637-8AF5-590B4DB00E94 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Design1" . - -amlImp:ie_030EKF370_Tool1_AF138E59-0000-17AC-556E-BC0300003316 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF370_Tool1" ; - amlImp:hasFrame_rx "-19.512"^^rdfs:Literal ; - amlImp:hasFrame_ry "-41.394"^^rdfs:Literal ; - amlImp:hasFrame_rz "13.187"^^rdfs:Literal ; - amlImp:hasFrame_x "2.233052"^^rdfs:Literal ; - amlImp:hasFrame_y "1.377786"^^rdfs:Literal ; - amlImp:hasFrame_z "1.716137"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Tool1_4BCB21AF-4184-46D9-BD5E-5719AB80C0FD , amlImp:ei_Attachment_Tool1_E1C085CF-7830-426E-B52A-D51356DA3EA1 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003367 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_3A80B19A-A9AE-489C-89CC-4BF9407FC760 . - -amlImp:ei_Attachment_COLLADA_Tool2_44A353F1-8BE9-4797-AE4A-7AD13EFF28F9 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool2" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool2"^^rdfs:Literal . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:Area a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Area" ; - rdfs:subClassOf amlImp:ResourceStructure . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection3 WirelessPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTGW1 WirelessInterface3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_WirelessPlug1_11a45cd3-d809-43a3-b4bb-082cfdb23fa7 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_WirelessInterface3_4cd4526f-ba94-407a-8b36-8f30f39dcf28 . - -amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B00000321C - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_saferobotparts_Tool1_1_859C2934-4B56-462E-A182-2D7E076ABCE7 , amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_539FEDEE-1804-41A1-A512-7CA535BB99C3 . - -amlImp:ei_Representation_B51229A6-6E99-46CE-A079-54A47478155C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -agOnt:edge_CVE-2014-2355_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ei_EthernetSocket1_41e16462-63f1-4a2b-96d2-9bfe032838b0 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -secont:BusinessInterruption_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 . - -amlImp:ei_Representation_07776E94-CC26-4508-ACBF-4405ED336E6F - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_2_Product.dae" . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -icsSecOnt:Hazard_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 . - -secont:BusinessInterruption_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_CVE-2016-8740_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8740 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_EthernetPlug2_0004adea-700d-434a-a21f-b71884abe932 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2014-0751_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a amlImp:WirelessHARTSensor , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WHARTSensor3" ; - aml_ontology:hasIE amlImp:ie_Portlist_34b6e14b-c319-4671-bc49-bcb2c916f147 . - -amlImp:ei_Attachment_A2136160067_707CBBF0-A53F-45FC-9B77-9AA06B8167A0 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_A2136160067" . - -amlImp:AGV a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "AGV" ; - rdfs:subClassOf amlImp:Transport . - -amlImp:ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC4C00003366 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.11" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "-10.675"^^rdfs:Literal ; - amlImp:hasFrame_y "3.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003367 , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003368 . - -amlImp:ei_Attachment_ToolMountPoint_0CB06EF6-7AF0-47C8-A867-415241BC9748 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - -amlImp:ei_Representation_3A4C1DC3-1A56-4714-B7ED-5AFB7614EEF5 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -agOnt:edge_CVE-2014-0750_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug2_8f5bb8d6-2553-4b91-98c5-f05b624b2f65 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_EthernetWire10_77bdf526-dfa3-4b54-af3e-3cd95da74176 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire10" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_b7c90d56-3709-4acc-8562-d7116bd549d1 , amlImp:ei_EthernetPlug1_c0f21b27-bf5a-4459-befb-23b245900980 . - -amlImp:Resource a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Resource" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -amlImp:ie_Portlist_d6aa692a-55a6-46ed-8d0d-610e43b40ecd - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket3_6ebaee6c-fc37-424b-b713-978397078156 , amlImp:ei_EthernetSocket2_19ba8293-31eb-4e43-a11f-7b4011957ae1 , amlImp:ei_EthernetSocket1_83e071e7-772b-4b50-ae5a-70f263a2bddb . - -amlImp:IODevice a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "IODevice" ; - rdfs:subClassOf amlImp:ControlEquipment . - -amlImp:ei_LogicalEndpointOPC-UA-1_6397e1c3-f31f-49a4-a1f0-1ebb1028c4ea - a amlImp:LogicalEndpointOPC-UA , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-1" . - -agOnt:edge_CVE-2014-0751_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -agOnt:edge_CVE-2016-2201_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_Attachment_A2136160067_FAFD2953-C493-4F91-B269-E4ED7B1D530B - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_A2136160067" . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2014-5074_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003386 - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_CBB61637-70FA-4DF6-8258-E150D9F7FC65 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_Representation_DE5E7FC2-D648-43E0-B047-AB7E219D5453 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_Product.dae" . - -amlImp:Ethernet a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Ethernet" . - -amlImp:ei_Attachment_030GRF341_A2136160067_SFK-HAB-010_8C391539-FF6A-46E7-9A60-7677B335D3C9 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GRF341_A2136160067_SFK-HAB-010" . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_COLLADA_030GRF341_A2136160067_SFK-HAB-010_1A94740C-4F0E-4876-9FB6-9530F8FAB5CF - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GRF341_A2136160067_SFK-HAB-010" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_030GRF341_A2136160067_SFK-HAB-010"^^rdfs:Literal . - -amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 - a owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WinCC" ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "wincc" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "7.0" . - -amlImp:Attachment_KRxxxRultra.6.1_030GRF341 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_030GRF341" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_030GRF341_6A8D3042-7201-49F5-AB08-41CF66605261 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_KRxxxRultra_6_1_8A4B1B26-AB6C-4B40-B204-AA82A5307F0D . - -amlImp:ie_030WZA180_Base1_AF138E59-0000-17AC-556E-B8B30000327D - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_Base1" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Base1_28302766-3BA0-4027-8434-94686D520E36 , amlImp:ei_Attachment_Base1_4D47BAAE-7E23-491F-B0BD-1F2A7CABCF5B . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2016-2200_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_Portlist_61d16053-3272-4d71-a47e-3120972fde53 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_a7278c83-fe80-4c1d-bb62-f78d3c568af8 . - -amlImp:ei_EthernetPlug2_3341c300-495b-4800-a419-7786fb539101 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ie_ControlCabinet_76059c32-6ce6-405d-a4d0-d53172324967 - a amlImp:ControlCabinet , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ControlCabinet" ; - aml_ontology:hasIE amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 . - -amlImp:ei_Representation_F74F923B-416E-4B7E-8D27-44BA0A621A05 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae" . - -agOnt:edge_CVE-2017-7679_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7679 . - -amlImp:ie_ST020_AF138E59-0000-17AC-556E-B57B000031FF - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ST020" ; - aml_ontology:hasIE amlImp:ie_020RB_100_AF138E59-0000-17AC-556E-B57B00003200 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_Attachment_ToolMountPoint_ABBA360A-8455-4F60-818A-CB3D094EF3F6 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - -amlImp:ie_EthernetWire6_386cd97d-0556-4d99-b26f-9f656fc33e9e - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_8750445b-c4d5-4c3e-a96a-903af449bee7 , amlImp:ei_EthernetPlug1_10541cca-9d69-4f11-a2a3-b486db56df6d . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -secont:CVE-2012-2598 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-2598"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ei_EthernetSocket1_3ec77b75-860c-4856-a6b1-638136639ac8 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2016-4975_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-4975 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_Attachment_Roboterposition_Stellung_A_A0791535-CCB3-459B-90EA-86ED45CEC7F8 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Roboterposition_Stellung_A" . - -agOnt:edge_CVE-2016-2200_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003379 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_645B6406-D0BE-4F34-BB4C-94771B578F1D . - -amlImp:ie_Schlitten_AF138E59-0000-17AC-556E-B159000031E1 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.187828"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.075"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_74CF2758-C2F7-4C9C-9805-AD0BE27D4CB7 ; - aml_ontology:hasIE amlImp:ie_Schlitten_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B159000031E2 , amlImp:ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B159000031E3 . - -amlImp:ie_Portlist_004a5072-7168-4f4e-a8d7-208ea75f15d7 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_4e373d26-b42d-4b7d-9b6b-eaf79f97a56f . - -agOnt:edge_UnusedOpenPort_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:LogicalNetwork - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalNetwork" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_InsecureProtocolUsed_ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:vertex_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2013-0677_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0674_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0678_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0676_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3030_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3032_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-2596_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3003_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_UnusedOpenPort_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0679_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4685_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4683_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3034_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_InsecureProtocolUsed_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0675_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4682_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3028_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3031_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2015-2823_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-3957_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-2595_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-3959_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-2597_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-2598_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_UntrustedCrossZoneConnection_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4686_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-3958_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4684_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:vertex_has_Weight 6.25e0 . - -amlImp:ie_Weldment_e105bfe4-4fa2-48ba-ad51-345457474775 - a amlImp:Product , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Weldment" ; - aml_ontology:hasEI amlImp:ei_Resource_b660c4ab-0b21-4a62-b0bb-e5b8ae843e35 , amlImp:ei_Process_c07c3906-8d6a-4bf5-b727-2dee27caeec2 . - -amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a amlImp:MES , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "MES1" ; - secont:asset_logicallyConnectedTo_Asset - amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - aml_ontology:hasIE amlImp:ie_SimaticIT_ce9c09d1-f671-4eb0-9d22-c0106e731b6f , amlImp:ie_PortList_00db77a4-7602-4c98-b9c4-219895e316ee , amlImp:ie_LogicalPortList_7119dc28-da6c-40bd-b2e5-0eaf1f545f4a . - -amlImp:ei_LogicalEndpointOPC-UA-1_a04436ec-db07-4dc1-a5a1-4a0e469e2c1d - a amlImp:LogicalEndpointOPC-UA , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire2 EthernetPlug2 - Business CiscoCatalystSwitch EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_0c1866a0-8d5f-45ca-9d40-0ddfc0002a22 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_cb93258e-84a8-49b8-b7fd-63ee9eeba5b2 . - -amlImp:ei_DataSocket_ae28eb4b-ffe8-4cb0-90ad-4b29fa94f73d - a amlImp:DataSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - -amlImp:ei_Representation_0A462592-DE34-479F-8335-6F3233A17646 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KL1500_3.1_Product.dae" . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2016-2200_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_LogicalEndpointHTTP_263fcd54-6a0e-4fbe-a02b-49e390e00943 - a amlImp:LogicalEndpointHTTP , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP" . - -agOnt:edge_CVE-2014-1960_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-1960 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_Representation_32D1045E-5069-45BB-9DFB-DDA17BC7F27B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae" . - -amlImp:ei_Representation_569A87C7-5BFB-438C-9C96-8B080C3C6569 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Tore_A_Rep.dae" . - -amlImp:ei_Representation_4085F647-5ECB-4C97-B26F-AA543878A0A8 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -secont:CVE-2016-8740 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2016-8740"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2019-6833_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_CVE-2013-2785_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-2355_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2013-2823_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_UnusedOpenPort_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2013-2811_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2014-0750_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-0751_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:vertex_has_Weight 8.0e0 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection1 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 KRC4 LogicalEndpointPROFIsafe" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointPROFIsafe1_e5384131-e6eb-48e8-8b90-9ead55a16971 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointPROFIsafe_59fa5a98-b9c5-443e-a743-df56b026d9f3 . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_LogicalEndpointOPC2_12c24e84-be9a-4e36-b7a9-7b2ad751cfe6 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire2 EthernetPlug2 - DMZ CiscoCatalystSwitch EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_2a58752f-b177-4678-ae1d-fe781e8e155e ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_53a5f197-a511-4e71-84e9-2ab523099198 . - -amlImp:Attachment_030FG_111_030WZD111 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030FG_111_030WZD111" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_030WZD111_0D5E6978-CEB2-4985-BB95-31C01B2D409B ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_030FG_111_A239FC93-5FA9-48B5-9AEC-66B1AD6974A3 . - -amlImp:ei_Representation_4346C9F9-6E47-466C-9C60-1D07E54AEBC8 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" . - -amlImp:ie_LogicalPortList_6a59f1f7-e73b-40ed-9f5b-1d74bff7e60c - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointHTTP_2d9365fd-7a4f-46ec-aa7b-075c9969efc2 . - -amlImp:ei_EthernetPlug1_6e384bf9-7850-484b-8649-78acf992f8d5 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_Portlist_871222d1-7d4d-412d-9c10-aeef833e4b4b - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket2_c5abb676-677e-46f5-be24-18907e30b6dc , amlImp:ei_EthernetSocket1_cb3518ed-a657-40f9-8c13-3cfbd60ea63a . - -amlImp:ei_Attachment_COLLADA_010GRF141_F3D025B8-22D8-460D-ABC6-2AEAB3FD010B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_010GRF141" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_010GRF141"^^rdfs:Literal . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -agOnt:edge_CVE-2018-17199_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-17199 . - -amlImp:ie_LogicalPortList_c64bca0b-7201-4a6f-a196-d21ec4e9dcf0 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointPROFIsafe_c0f1cf30-00cd-459b-aa62-2b9578daa128 . - -agOnt:edge_CVE-2014-5074_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B00000321B - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" ; - amlImp:hasFrame_rx "-74.904"^^rdfs:Literal ; - amlImp:hasFrame_ry "30.227"^^rdfs:Literal ; - amlImp:hasFrame_rz "-72.471"^^rdfs:Literal ; - amlImp:hasFrame_x "0.051131"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.161884"^^rdfs:Literal ; - amlImp:hasFrame_z "2.689111"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_CF1BC4B3-2145-4EE5-9414-BDE375E84818 ; - aml_ontology:hasIE amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B00000321C , amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B5B00000321E , amlImp:ie_KRxxxRultra.6.1_020GRF141_AF138E59-0000-17AC-556E-B5B00000321D . - -agOnt:edge_CVE-2016-8612_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8612 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire7 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_046841d8-4a43-4d61-b003-35769f7e3992 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_829e06ef-1ede-49f3-8e55-a6a18ffcdace . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334B - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_6B79A914-C147-4410-AEE8-B963A6ABA00F . - -amlImp:ei_Representation_2A7FBD92-1BAF-484F-8BE2-CA8A767DCECA - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire7 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_0cba49f1-5272-4e65-88a2-172997506511 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket7_bddd02f6-f870-4457-84f6-cb18ba0b1001 . - -amlImp:ei_Attachment_COLLADA_Tool1_3DD13EE2-44AB-4A45-A68F-A5A06C09EABB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02" ; - amlImp:hasTarget "./JA01732_REV02_FrameOfInterest_Tool1"^^rdfs:Literal . - -amlImp:ei_EthernetPlug1_272ee7e2-353b-41fc-a03e-38168d7b4a7f - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154 - a amlImp:AVServer , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "AVSvr1" ; - aml_ontology:hasIE amlImp:ie_Portlist_e4d96340-7ee4-45a1-bdc0-7d972367ccb8 . - -agOnt:edge_CVE-2014-4686_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4686 . - -amlImp:ie_Business_3ff407a0-13b9-43a3-a26a-850bd0288d49 - a owl:NamedIndividual , amlImp:BusinessZone ; - rdfs:comment "InternalElement" ; - rdfs:label "Business" ; - aml_ontology:hasIE amlImp:ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b , amlImp:ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b , amlImp:ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , amlImp:ie_PhysicalNetwork_9964d0eb-7748-42d0-8fb9-317c49c11ed2 , amlImp:ie_LogicalNetwork_934fb791-a406-4b96-946a-e23db8c5eda9 , amlImp:ie_Cisco1921Router_49a3e9c9-a693-4052-8084-3f2080bb0a16 , amlImp:ie_CiscoCatalystSwitch_754502d8-ae61-4226-b3ca-e9f30563bfba , amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , amlImp:ie_CiscoFirewall_b4fd0383-bb15-4f01-b928-7113f3604980 . - -agOnt:edge_CVE-2012-3034_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3034 . - -amlImp:ERP a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ERP" ; - rdfs:subClassOf amlImp:Host . - -amlImp:ei_LogicalEndpointPROFIsafe2_08eb5c10-0f82-401f-b6b5-720988f25910 - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe2" . - -amlImp:ei_DataPlug2_f58826ef-44b9-4605-bb45-2b82cd5afb04 - a amlImp:DataPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug2" . - -amlImp:ei_Representation_C76C35D1-16D3-45CC-B9FE-2D68607B5ABB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/59230001_FIX_EF310_Product.dae" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2012-2596_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2596 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2017-7679_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7679 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -icsSecOnt:OPC owl:equivalentClass amlImp:OPC . - -amlImp:ei_WirelessInterface1_a3ff8a82-d3c1-40c8-b02c-5a622c97750c - a amlImp:WirelessInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface1" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -secont:BusinessInterruption_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 . - -amlImp:ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC4B0000335D - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-157.5"^^rdfs:Literal ; - amlImp:hasFrame_x "1.325"^^rdfs:Literal ; - amlImp:hasFrame_y "3.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335F , amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4B0000335E . - -amlImp:ie_030GES390_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-BC0300003318 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES390_030RB_300_KR240R2700prime_" ; - aml_ontology:hasEI amlImp:ei_Attachment_030RB_300_KR240R2700prime__7B0A454B-4206-4AEC-985D-7F6E9F5E4904 . - -amlImp:ie_030GRF341_030GRF341_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-BC010000330F - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_030GRF341_A2136160067_SFK-HAB-010" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030GRF341_A2136160067_SFK-HAB-010_1A94740C-4F0E-4876-9FB6-9530F8FAB5CF , amlImp:ei_Attachment_030GRF341_A2136160067_SFK-HAB-010_8C391539-FF6A-46E7-9A60-7677B335D3C9 . - -amlImp:ei_EthernetPlug2_050f4374-4ade-4e74-910a-456afc883474 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2011-5260_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2011-5260 . - -amlImp:ie_LogicalProfinetConnection1_80352a47-7bae-44f1-ac8a-85d45a6d6944 - a amlImp:Profinet , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalProfinetConnection1" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet2_7df3b19b-64c8-419f-8dba-82cd2b56aa15 , amlImp:ei_LogicalEndpointProfinet1_72ed1588-3b9b-4dfe-a89a-9346bfc01530 . - -amlImp:ei_EthernetPlug1_f6b9c06d-b470-4aef-ba06-09edc891e6fc - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC50000033AE - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.7" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-22.05"^^rdfs:Literal ; - amlImp:hasFrame_y "8.5"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:OPCUASecurityPolicy - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "OPCUASecurityPolicy" ; - owl:disjointUnionOf ( amlImp:Basic256SHA256 amlImp:Basic256 amlImp:Basic128RSA15 ) ; - owl:disjointWith amlImp:Ethernet , amlImp:SecurityDevice , amlImp:AutomationMLBaseInterface , amlImp:Data , amlImp:LogicalPortList , amlImp:Host , amlImp:NetworkDevice , amlImp:Conduit , amlImp:Program , amlImp:Protocol , amlImp:AutomationMLBaseRole , amlImp:WirelessConnection , amlImp:Link , amlImp:Wireless , amlImp:Wire , amlImp:PortList , amlImp:Motor , amlImp:LogicalEndpoint , amlImp:Zone . - -agOnt:edge_CVE-2016-2200_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2017-15710_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15710 . - -agOnt:edge_CVE-2015-8840_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2015-8840 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link SCADA EthernetWire6 EthernetPlug2 - SCADA SimaticProcessHistorian EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_3a0cd779-4358-4a4e-9e1d-760d88d9e968 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_693e5301-37c0-4168-8f29-0908cb40c024 . - -secont:CVE-2013-0675 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-0675"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.1"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection4 LogicalEndpointOPC1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_300 030RB_300 030RB_300_KR240R2700prime_ LogicalEndpointOPC" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC1_5c88241e-d581-45e0-990e-4ac58c6de838 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC_4d43bded-d2e8-4c1f-a357-05760b746cbb . - -amlImp:PC a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PC" ; - rdfs:subClassOf amlImp:ControlHardware . - -amlImp: a owl:Ontology ; - owl:imports , , . - -amlImp:ei_EthernetPlug1_e20e313c-f472-4a6a-9727-4982e028474f - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_CVE-2014-5074_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:LogicInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicInterface" ; - rdfs:subClassOf amlImp:PLCopenXMLInterface . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ei_Representation_7D3F9BC8-12C1-47CF-988E-CB99906F0A1B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/T510198_7_Rep.dae" . - -amlImp:HTTP a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "HTTP" ; - rdfs:subClassOf amlImp:Protocol . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire5 EthernetPlug2 - DMZ PatchMgmt1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_04e43dbe-c305-4ce7-9a37-6966bd003a17 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_89571e9b-e0f0-4856-b72a-7897ae1cf7ad . - -amlImp:ei_DataPlug2_9ac880a6-992f-4a72-93c8-697f7184b4a8 - a amlImp:DataPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug2" . - -amlImp:ei_EthernetPlug2_cb71bfd9-e012-4a10-86f0-c4c606e1e495 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:Clamp a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Clamp" ; - rdfs:subClassOf amlImp:Fixture . - -amlImp:ei_EthernetSocket6_c41d5604-d159-42c6-b3c6-2c034d52246b - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket6" . - -agOnt:edge_InsecureProtocolUsed_ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_KukaDataWireX21-1_f9bcd338-ea1c-4aa3-903a-a70a9cbea780 - a amlImp:DataWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaDataWireX21-1" ; - aml_ontology:hasEI amlImp:ei_DataPlug2_4ef8a268-644b-423c-9777-7e8d839f5dd1 , amlImp:ei_DataPlug1_cf26e9b9-546f-4642-993b-59d4f504f25c . - -amlImp:ei_LogicalEndpointPROFIsafe_f3545173-695e-4c8e-b02e-4a3ed53a15ba - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_Attachment_OKF_Dehnfuge_3C9C7109-3861-4AD2-BD00-0649697BD2B3 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_OKF_Dehnfuge" . - -agOnt:edge_CVE-2013-3959_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-3959 . - -secont:CVE-2012-1802 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-1802"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ScalanceX414-3e-1_f54529af-7587-4d9f-be29-a7c8bfdc1db4 , amlImp:ie_ScalanceX414-3e-1Safety_916ee601-f2c8-4319-a5c3-cd3f99e5431c , amlImp:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-5074_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -secont:CVE-2019-0337 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-0337"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 . - -amlImp:hasTarget a owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - -amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031D5 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_8741F297-D5B0-4F95-8B64-3D25989CCF92 , amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_3C27E082-EEA7-440A-BCFE-FDBC12C3177C . - -amlImp:ei_Attachment_FZG0_BCF6D05F-A0D3-4EA6-B9B6-5091CB038677 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_FZG0" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -secont:CVE-2019-10092 - a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-10092"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:ei_Attachment_COLLADA_rot_fraes_horizontal2_C22C35F3-FD61-4CA2-B420-B8383C863507 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_rot_fraes_horizontal2" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal" ; - amlImp:hasTarget "./drehen_fraeser_horizontal_FrameOfInterest_rot_fraes_horizontal2"^^rdfs:Literal . - -agOnt:edge_CVE-2016-2200_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -secont:BusinessInterruption_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 . - -agOnt:edge_CVE-2019-0278_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0278 . - -amlImp:ei_Representation_5D43F4AA-F86B-423B-9A36-49228D65F08F - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -secont:CVE-2019-0316 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-0316"^^xsd:anyURI ; - secont:vulnerability_on_Asset amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 . - -amlImp:ei_Attachment_030DS_251_1CF069D2-8A94-4875-858E-495058E1D1DD - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030DS_251" . - -amlImp:ei_MotorPlug1_78aef019-703a-4d0e-a682-17955c9bb45c - a amlImp:MotorPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug1" . - -secont:CVE-2001-0566 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2001-0566"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 . - -amlImp:LogicalEndPoint - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndPoint" ; - rdfs:subClassOf amlImp:Communication ; - owl:equivalentClass amlImp:LogicalEndpoint . - -agOnt:edge_CVE-2014-0751_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -agOnt:edge_CVE-2017-3167_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3167 . - -amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032C1 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" ; - amlImp:hasFrame_rx "104.592"^^rdfs:Literal ; - amlImp:hasFrame_ry "71.796"^^rdfs:Literal ; - amlImp:hasFrame_rz "105.325"^^rdfs:Literal ; - amlImp:hasFrame_x "0.488995"^^rdfs:Literal ; - amlImp:hasFrame_y "0.030029"^^rdfs:Literal ; - amlImp:hasFrame_z "2.553073"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_51F0CD67-7EE3-486D-8C73-5CF1D641B117 ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032C2 . - -amlImp:ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC50000033B2 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.6" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "-25.8"^^rdfs:Literal ; - amlImp:hasFrame_y "3.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ei_EthernetPlug1_10541cca-9d69-4f11-a2a3-b486db56df6d - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection1 LogicalEndpointProfinet2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 SimaticS71516F LogicalEndpointProfinet" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointProfinet2_7df3b19b-64c8-419f-8dba-82cd2b56aa15 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointProfinet_433a17eb-fc4a-4d65-85cc-311e1ff00019 . - -secont:CVE-2013-3959 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-3959"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ie_LogicalPortList_4bcbb4c2-5036-4cbc-b06e-ad542cdbb92e - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet_433a17eb-fc4a-4d65-85cc-311e1ff00019 . - -amlImp:ie_020RB_100_AF138E59-0000-17AC-556E-B5B000003222 - a amlImp:Clamp , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "020RB_100" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-2.267624"^^rdfs:Literal ; - amlImp:hasFrame_y "0.944691"^^rdfs:Literal ; - amlImp:hasFrame_z "0.964365"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_5D06EB89-14A6-45A2-B0F6-E9B81D7B0772 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_Base1_8B5992AA-AD9F-4022-83D2-AFE89FDBA3F1 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -agOnt:edge_CVE-2013-0676_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0676 . - -secont:CVE-2014-4682 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-4682"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ie_030SWZ121_Base1_AF138E59-0000-17AC-556E-B8A900003274 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ121_Base1" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Base1_BF73B23D-DC9F-4523-903A-37ED84CE103F , amlImp:ei_Attachment_Base1_30E2039C-1CF6-4646-8B6C-9B738B72FB7D . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -agOnt:edge_CVE-2016-8612_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8612 . - -amlImp:ei_Attachment_COLLADA_030WZD121_BHF_97760CE4-1C13-4228-A0E5-10631A607847 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD121_BHF" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030WZD121_BHF"^^rdfs:Literal . - -amlImp:ei_Representation_08C53529-F700-4251-A1C8-8221E02BA4AB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schlitten_1_Product.dae#Schlitten_1" . - -amlImp:ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a amlImp:Webserver , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WebSvr2" ; - aml_ontology:hasIE amlImp:ie_Portlist_e672c177-89b1-4da0-bfb2-8bacfe18919d , amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b . - -agOnt:edge_CVE-2013-2823_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:ei_Product_29421e10-831f-4fa1-85b0-81bb0687145c - a amlImp:PPRConnector , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Product" . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_030EKW171_Tool2_AF138E59-0000-17AC-556E-B8B60000329E - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171_Tool2" ; - amlImp:hasFrame_rx "-90"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "0.0695"^^rdfs:Literal ; - amlImp:hasFrame_y "0.015772"^^rdfs:Literal ; - amlImp:hasFrame_z "0.986772"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool2_2D787351-E036-430E-8080-D7F2BABFCBCB . - -amlImp:ei_EthernetSocket1_2a220313-14f5-466d-9338-1a0db0d2ffef - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2012-3032_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3032 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2019-0283_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0283 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:OPC-UA a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "OPC-UA" ; - rdfs:subClassOf amlImp:Protocol . - -agOnt:edge_CVE-2014-0750_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -secont:IPBreach_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b - a secont:IPBreach ; - secont:consequence_impacts_Asset - amlImp:ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2019-0278_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0278 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2823_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -agOnt:edge_CVE-2016-4975_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-4975 . - -agOnt:edge_CVE-2019-0282_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0282 . - -amlImp:ei_Representation_B0784176-AC01-4D65-B993-9A04D8244BCC - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae" . - -amlImp:ei_Representation_C5A8BFF3-71E0-47B7-BC63-138E818CD550 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F197210000631025121_001_zb_hb_zangenstaender_21_Rep.dae" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC4C00003363 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.2" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "45"^^rdfs:Literal ; - amlImp:hasFrame_x "-9.991637"^^rdfs:Literal ; - amlImp:hasFrame_y "0.90481"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003365 , amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003364 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire4 EthernetPlug1 - OperationsSupport CiscoCatalystSwitch EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_c8e94303-b2d2-40e0-90f7-949eee3d885c ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_a95b5f98-b5cf-447b-8792-ed42e675f8b6 . - -amlImp:ei_Representation_2AB076C7-7A08-4678-8656-10F75F03EF19 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2013-2823_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -icsSecOnt:Hazard_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC50000033B0 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.8" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "-25.8"^^rdfs:Literal ; - amlImp:hasFrame_y "4.4"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ei_Attachment_KRxxxRultra_6_1_8741F297-D5B0-4F95-8B64-3D25989CCF92 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - -amlImp:SCADAZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "SCADAZone" ; - rdfs:subClassOf amlImp:OTZone . - -amlImp:ei_Attachment_Tool1_12A94D47-2AAA-4753-A0DB-03E6CA5E80AD - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000336D - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_A53433C2-43AC-4BC1-9667-491E627DAFDD . - -amlImp:ei_EthernetPlug1_b5d14e27-a73d-475b-a565-2ed93c409c6a - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ei_Representation_A7E06243-E977-4994-93A5-E2B638F47BAB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:hasCpeEdition a owl:DatatypeProperty ; - rdfs:range xsd:string . - -amlImp:ie_Basic128RSA15_b46c3d9c-712b-4044-aa7b-eba4e1c8200e - a amlImp:Basic128RSA15 , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Basic128RSA15" . - -agOnt:edge_CVE-2014-4685_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4685 . - -amlImp:Protocol a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Protocol" ; - owl:disjointUnionOf ( amlImp:PROFIsafe amlImp:HTTP amlImp:OPC amlImp:Modbus amlImp:OPC-UA amlImp:Profinet amlImp:HTTPS ) . - -agOnt:edge_CVE-2016-2201_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC4C00003385 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.7" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-6.3"^^rdfs:Literal ; - amlImp:hasFrame_y "1.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003387 , amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003386 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-3957_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-3957 . - -amlImp:ei_EthernetPlug1_5147fe00-748d-4b23-940f-95bfb75eb1c9 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -secont:CVE-2013-2785 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-2785"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "9.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 . - -amlImp:ie_EthernetWire2_a232a64a-dd48-48a6-824e-b641e7a2dc2a - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_0c1866a0-8d5f-45ca-9d40-0ddfc0002a22 , amlImp:ei_EthernetPlug1_30ab7cca-fd5b-4f17-92c3-b13af6a203f1 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire5 EthernetPlug1 - Business CiscoCatalystSwitch EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_479ada71-c9a1-4dc7-b139-ebdcffc5e1b8 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_b1f45de9-a7ae-4327-b537-ae7c5a0c13a5 . - -amlImp:ei_WirelessPlug1_3e07cf2a-89c0-4000-97fd-ff6fd3b3ba7a - a amlImp:WirelessPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug1" . - -amlImp:ei_Attachment_030RB_300_BA_030R3_040_W_CF88925D-65B7-41FE-BF10-236CB0C74AF2 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_300_BA_030R3_040_W" . - -agOnt:edge_ITOTCrossConnection_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability icsSecOnt:ITOTCrossConnection . - -agOnt:edge_CVE-2019-13929_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-13929 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire1 EthernetPlug2 - OperationsSupport Cisco1921Router EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_050f4374-4ade-4e74-910a-456afc883474 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_aa0cfc1c-4738-4da7-9e0f-c582c808f0a9 . - -agOnt:edge_CVE-2014-4682_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4682 . - -amlImp:ie_Portlist_21b67549-def3-4a21-9db2-6e1c17daa0fc - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket3_ad4fb3b9-a476-4ac8-b83f-f3c99bca1513 , amlImp:ei_EthernetSocket2_f92432c7-7db5-4ee6-8f8b-96d58ab4b6b7 , amlImp:ei_EthernetSocket1_41e16462-63f1-4a2b-96d2-9bfe032838b0 . - -amlImp:ei_DataSocket_92cbf340-ae86-4bbd-9ce9-e9995c8255ff - a amlImp:DataSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - -amlImp:ei_Attachment_COLLADA_030RB_100_tool_1_decouple_sim_5F032567-1A1B-41D8-99AC-EFDB12C13A97 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_tool_1_decouple_sim" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_decouple_sim"^^rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_56329413-4E68-4697-B325-4EB92177B090 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-3959_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-3959 . - -amlImp:ie_EthernetWire5_29fc14aa-a2e5-41bd-b367-30ad18d54ba6 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_0018de50-0c3f-4125-8dd5-3c964380196a , amlImp:ei_EthernetPlug1_19f6da58-3759-4fa3-a5e4-b3dc3b49e58b . - -amlImp:ei_EthernetSocket2_f92432c7-7db5-4ee6-8f8b-96d58ab4b6b7 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_ControlAndProcess_fbbb181c-e0a5-4891-a96e-8ff7dba97afe - a amlImp:ProcessZone , amlImp:ControlZone , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ControlAndProcess" ; - aml_ontology:hasIE amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 . - -amlImp:ei_Representation_62B4B848-BFDC-4495-8680-8FC6872659F3 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -secont:CVE-2014-1960 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-1960"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:ei_EthernetPlug2_30cee2f3-26c5-496b-ae7c-b8caf2aa0353 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2016-2201_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_Attachment_COLLADA_030RB_100_tool_1_couple_sim_3862C9A6-FF25-4F48-B866-CF7B9B76F465 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_tool_1_couple_sim" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030RB_100_tool_1_couple_sim"^^rdfs:Literal . - -amlImp:ei_Representation_E4D4046E-398B-4730-B707-224DED4A7E66 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:ie_010GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B159000031E0 - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "010GES191_OKF_Dehnfuge" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "-0.025"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_OKF_Dehnfuge_24B3773A-0C05-4DA0-8F9D-05B0E1A968DF , amlImp:ei_Attachment_COLLADA_OKF_Dehnfuge_BB6DEC54-F99C-4501-9586-35B2A215FF7A . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_EthernetWire6_fb01531a-025e-49e4-8f4b-a5eaaf032d76 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_3a0cd779-4358-4a4e-9e1d-760d88d9e968 , amlImp:ei_EthernetPlug1_92abd253-9f0a-45cc-a4c5-9820592a1c40 . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_DataPlug1_f9ce0072-4c30-4b19-ad58-13d874db959e - a amlImp:DataPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug1" . - -agOnt:edge_CVE-2016-2200_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire7 EthernetPlug1 - Business CiscoCatalystSwitch EthernetSocket5" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_558636dd-7408-4de4-8e3b-14464da10877 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket5_66987355-b53a-4fd4-af31-c78628bfbbf6 . - -amlImp:OPC a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "OPC" ; - rdfs:subClassOf amlImp:Protocol . - -amlImp:ei_EthernetSocket2_b02527e7-57d7-46d0-8ec5-5332cb3400f8 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks - secont:vulnerability_on_Asset amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc . - -amlImp:ie_EthernetWire6_6a0aee9d-551a-4a18-b85b-ba2ed4d8fd37 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_40cd00a0-391c-4620-9527-d78c5d3b20a2 , amlImp:ei_EthernetPlug1_f6b9c06d-b470-4aef-ba06-09edc891e6fc . - -amlImp:ei_Attachment_Tool1_DFF80166-206E-4E3F-B82B-8198DD9DBD56 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - -agOnt:edge_CVE-2019-10092_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10092 . - -amlImp:ei_Attachment_030GES290_97188306-9230-47AC-BA4B-87E8DD3FF857 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GES290" . - -agOnt:edge_CVE-2016-2200_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire1 MotorPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 030RB_100_KR240R2700prime_ MotorSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_MotorPlug2_462600ad-7698-4968-9f3b-7f38052a6fc5 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_MotorSocket_ed3aabca-267d-46c4-b511-77d151c7846f . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC4C00003388 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.8" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "0.7"^^rdfs:Literal ; - amlImp:hasFrame_y "1.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338A , amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003389 . - -amlImp:ie_030WZA181_030FG_111_BHF_AF138E59-0000-17AC-556E-B8B40000328A - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_030FG_111_BHF" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030FG_111_BHF_5A2DC66B-7582-40B3-8853-E88C71B854AB , amlImp:ei_Attachment_030FG_111_BHF_79059D91-AB04-4BB6-BA6E-AD38A33A9510 . - -amlImp:ei_EthernetSocket_3e5cccb8-098e-4e8c-b66d-0c17f7a536ca - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket" . - -amlImp:ei_EthernetSocket5_7341e507-7cca-4692-90d1-7efca1a55850 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket5" . - -amlImp:ei_MotorPlug1_cfbea44c-35e9-4230-81f9-3d799b5a87db - a amlImp:MotorPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug1" . - -agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2016-2200_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2013-2785_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_UntrustedCrossZoneConnection_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2016-2201_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-0751_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2201_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2014-0750_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2016-2201_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2013-2823_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2013-2811_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_UnusedOpenPort_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-2355_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2019-6833_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:vertex_has_Weight 0.0e0 . - -agOnt:edge_CVE-2013-3958_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-3958 . - -amlImp:ei_Attachment_COLLADA_Tool1_C48383DD-D80D-41A9-BC36-3DCA3D842219 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300" ; - amlImp:hasTarget "./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Tool1"^^rdfs:Literal . - -amlImp:ei_Attachment_COLLADA_OKF_Standard_1C85F2CF-41EE-4D14-B007-41D663428464 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_OKF_Standard" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KL1500_3.1_Product.dae#KL1500_3.1" ; - amlImp:hasTarget "./KL1500_3.1_FrameOfInterest_OKF_Standard"^^rdfs:Literal . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ie_010RB_100_AF138E59-0000-17AC-556E-B124000031B4 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010RB_100" ; - aml_ontology:hasIE amlImp:ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5 , amlImp:ie_010RB_100_AF138E59-0000-17AC-556E-B155000031D6 , amlImp:ie_010GRF141_AF138E59-0000-17AC-556E-B159000031E4 , amlImp:ie_010GES191_AF138E59-0000-17AC-556E-B156000031DA . - -amlImp:ei_WirelessInterface1_a3d5bb25-f7f2-4c20-8cbc-9ce7f8115a34 - a amlImp:WirelessInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface1" . - -agOnt:edge_CVE-2017-15715_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15715 . - -agOnt:edge_CVE-2014-0751_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:MeasuringEquipment - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "MeasuringEquipment" ; - rdfs:subClassOf amlImp:Resource . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_CVE-2013-2823_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:ei_Attachment_ToolMountPoint_F8DA049F-2302-4F79-8518-ADBA2E42A7CF - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - -amlImp:ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC50000033AB - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.13" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-12.35"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033AC . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ei_LogicalEndpointOPC1_98472cc7-8ab4-4c62-b4cf-c28f0d4ea391 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - -agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:vertex_has_Edge agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2013-2823_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-2355_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2016-2201_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2013-2811_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2201_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2014-0751_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2201_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2019-6833_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2013-2785_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_UnusedOpenPort_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-0750_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_UntrustedCrossZoneConnection_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2016-2201_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:vertex_has_Weight 0.0e0 . - -amlImp:ei_Resource_b660c4ab-0b21-4a62-b0bb-e5b8ae843e35 - a amlImp:PPRConnector , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Resource" . - -amlImp:ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 - a amlImp:PLCProgram , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Program" . - -secont:CVE-2010-2904 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2010-2904"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:ie_030RB_300_KR240R2700prime__030GES390_AF138E59-0000-17AC-556E-B99B000032F4 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_300_KR240R2700prime__030GES390" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030GES390_9319CFA9-1048-470F-B1F3-6A6E67A1EB37 , amlImp:ei_Attachment_030GES390_633BC548-00F4-4CE1-B825-BD135EF6074D . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire2 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1Safety EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_efd46995-ca03-4bf4-9491-086d617a3f0f ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_3af32e21-6a1c-4d22-aa93-ebd5f2174376 . - -agOnt:edge_CVE-2017-9788_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9788 . - -amlImp:ei_Attachment_Base2_24EA73C7-A304-4B52-A1D7-E29406E699C5 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base2" . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032C2 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_4CF9835D-E98F-47F9-8C09-9FB44C70405A , amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_AFC183EC-AC69-49F7-B1A4-3F84C7EE8E2B . - -amlImp:ei_Attachment_COLLADA_Tool2_52C20A3E-F75C-4F73-8886-58F133554053 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool2" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool2"^^rdfs:Literal . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003390 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_658227F1-A512-4781-8046-1B78EAF14360 . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2201_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile.1_AF138E59-0000-17AC-556E-BC460000332D - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile.1" ; - aml_ontology:hasEI amlImp:ei_Representation_07592164-A934-482B-9A0E-C03D2D5F82D3 ; - aml_ontology:hasIE amlImp:ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_AF138E59-0000-17AC-556E-BC460000332E . - -amlImp:ie_EthernetWire2_90ce1e2f-7908-4ad9-b3c4-eedc114221d2 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_0004adea-700d-434a-a21f-b71884abe932 , amlImp:ei_EthernetPlug1_8ebc5cee-11a4-4417-99a7-6f0b757282e8 . - -amlImp:ei_EthernetPlug2_a332c210-a79b-42b7-a537-9776d2139ab0 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ei_EthernetPlug1_7b4c288c-c4a0-434b-b92e-2376421a1813 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:Server a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Server" ; - rdfs:subClassOf amlImp:Host . - -amlImp:AttachmentInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "AttachmentInterface" ; - rdfs:subClassOf amlImp:AutomationMLBaseInterface . - -amlImp:ie_EthernetWire1_8b9f6562-a0ed-41a4-b347-db86249b8b6c - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_050f4374-4ade-4e74-910a-456afc883474 , amlImp:ei_EthernetPlug1_b6584936-fa1a-491b-b25e-667326c59ae4 . - -agOnt:edge_CVE-2014-0750_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ie_EthernetWire4Safety_c6ac886e-b060-40f0-b786-29a99b3ba30d - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4Safety" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_3341c300-495b-4800-a419-7786fb539101 , amlImp:ei_EthernetPlug1_dee3d6c3-fd3b-45e8-91d0-72e1c6586630 . - -amlImp:ie_CiscoCatalystSwitch_34fd9397-ef4d-4ece-86dc-9fad7d8da70b - a owl:NamedIndividual , amlImp:Switch ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoCatalystSwitch" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66 , amlImp:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , amlImp:ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154 ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "catalyst_3000" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_54a6baf3-2f81-4466-b196-76764b661550 . - -amlImp:ie_Einzelpfosten.2_AF138E59-0000-17AC-556E-BC4C00003369 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Einzelpfosten.2" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-10.675"^^rdfs:Literal ; - amlImp:hasFrame_y "1.575"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336A . - -amlImp:ie_ST040_Uebergabe_AF138E59-0000-17AC-556E-BC4600003330 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ST040_Uebergabe" ; - aml_ontology:hasIE amlImp:ie_040ABS100_AF138E59-0000-17AC-556E-BC4600003331 . - -amlImp:ie_HB51_Allgemein_AF138E59-0000-17AC-556E-BC4900003343 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "HB51_Allgemein" ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_AF138E59-0000-17AC-556E-BC4900003344 . - -amlImp:ei_Attachment_COLLADA_Tool2_655093C7-7BDB-4F13-8FC7-E89092B8E9C0 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool2" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool2"^^rdfs:Literal . - -amlImp:ie_CiscoFirewall_7a5e9be8-2e95-49e7-bdc5-1cd6b7ef3187 - a owl:NamedIndividual , amlImp:Firewall ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoFirewall" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_Cisco1921Router_571cf030-3f40-4866-a3b8-0a1fa0cdfe37 ; - amlImp:hasCpePart "o" ; - amlImp:hasCpeProduct "adaptive_security_appliance_software" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "9.6.1.10" ; - aml_ontology:hasIE amlImp:ie_Portlist_e11f7457-d2f9-4350-8445-c626b1316a97 . - -agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2014-1960_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2014-4003_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2014-1964_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2019-0282_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2013-6816_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_UntrustedCrossZoneConnection_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0278_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_InsecureProtocolUsed_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2013-7364_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2019-0337_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2013-6819_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2018-2363_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2015-5067_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2010-2904_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2013-6821_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2013-6822_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2013-6823_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2015-8840_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2019-0316_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2008-3358_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2014-8587_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2017-5372_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2011-4707_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2011-5260_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , agOnt:edge_CVE-2019-0283_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2014-1961_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:vertex_has_Weight 0.0e0 . - -amlImp:ie_010ABS100_010RB_100_BA_010R1_010_W_AF138E59-0000-17AC-556E-B57B000031FD - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010ABS100_010RB_100_BA_010R1_010_W" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_010RB_100_BA_010R1_010_W_865A3EED-EF8C-4AF3-8B34-29436ED3A9C1 , amlImp:ei_Attachment_010RB_100_BA_010R1_010_W_DD8D2821-6C61-4D15-B3F8-EBB55C14773D . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetSocket1_3af32e21-6a1c-4d22-aa93-ebd5f2174376 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003372 - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_96FAB428-41F9-476D-8DCF-C66F6968183C . - -amlImp:ie_EthernetWire12_7e8a0540-0b2a-4134-9104-cd90225839e7 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire12" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_a53e525a-9249-4c78-a32a-c3c10bd40034 , amlImp:ei_EthernetPlug1_fc9888b3-6263-465f-b6e8-59a408c705f3 . - -amlImp:ie_030GST100_030RB_100_FG_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332B - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_030RB_100_FG_030R1_030_W" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030RB_100_FG_030R1_030_W_2CB795DD-500C-42F5-8C6D-A86537A6B141 , amlImp:ei_Attachment_030RB_100_FG_030R1_030_W_5D446CD1-9A21-497F-A219-1052F112BBC9 . - -agOnt:edge_UnusedOpenPort_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:ei_LogicalEndpointOPC2_4f4277fd-d47e-4e24-b7dd-afabc94cbe9c - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - -agOnt:edge_CVE-2012-0158_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-0158 . - -amlImp:Data a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Data" . - -agOnt:edge_CVE-2014-0751_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection2 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC2_1a018044-4ba2-4210-8099-68e6c28aff4f ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC3_372ad0ad-1e08-45ea-899c-19d4009158e2 . - -amlImp:ei_LogicalEndpointOPC2_73557256-bbd1-4dcf-8856-777db2b92c3d - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - -amlImp:ie_LogicalOPCConnection3_589a1171-805e-4e15-8306-df9b2ed5eba2 - a amlImp:OPC , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection3" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC2_4f4277fd-d47e-4e24-b7dd-afabc94cbe9c , amlImp:ei_LogicalEndpointOPC1_9ff435fc-52d0-4204-a2f3-4d8323e7f1fd . - -agOnt:edge_CVE-2011-5260_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2011-5260 . - -amlImp:ie_EthernetWire4_597fb1b4-e011-4f3f-9f1b-b6636e27d231 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_87ef45da-2057-4860-974b-26d64f8d5f9d , amlImp:ei_EthernetPlug1_c8e94303-b2d2-40e0-90f7-949eee3d885c . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2017-7668_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7668 . - -amlImp:ei_Attachment_Base1_126F6BAD-6EDB-4D6A-BB69-928D2AAAE212 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -amlImp:ei_Representation_64ABC105-24AC-4350-81D7-88966C99BF48 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae" . - -amlImp:Zone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Zone" . - -agOnt:edge_CVE-2013-2823_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -agOnt:edge_CVE-2019-10098_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10098 . - -amlImp:ei_Attachment_KRxxxRultra_6_1_2BFE0407-0969-4A29-BD06-A8BAC2C28D62 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - -agOnt:edge_CVE-2019-10092_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10092 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -amlImp:ei_Representation_E91B6FE9-D465-46DA-956F-59ABD2603DA9 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19732000122019015600_001_zb_gestell_fa_Rep.dae" . - -amlImp:ei_Representation_BFDB1D5A-AB22-4C79-923C-36E447FC9198 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:SecurityDevice - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "SecurityDevice" ; - rdfs:subClassOf icsSecOnt:OTComponent . - -agOnt:edge_CVE-2012-3032_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3032 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Enterprise EthernetWire1 EthernetPlug1 - Enterprise Cisco1921Router EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_dbdcbb3f-00e1-4c8d-a548-3dc25891facb ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_41e16462-63f1-4a2b-96d2-9bfe032838b0 . - -agOnt:edge_CVE-2017-15715_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15715 . - -secont:CVE-2005-4258 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2005-4258"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 , amlImp:ie_CiscoCatalystSwitch_754502d8-ae61-4226-b3ca-e9f30563bfba , amlImp:ie_CiscoCatalystSwitch_afcb7be1-18d8-4789-804c-fb80a97a29c2 , amlImp:ie_CiscoCatalystSwitch_34fd9397-ef4d-4ece-86dc-9fad7d8da70b . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire5 EthernetPlug2 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN3 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_9b8d99fd-42f3-44c1-956e-da53204c151b ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_b25aef65-333a-4adc-9bd7-29d88a99349c . - -amlImp:ei_EthernetSocket2_dad4357c-c01f-4c20-833e-cdda1199d5c2 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -amlImp:ei_EthernetSocket2_0df11b8c-5e02-4e67-a3e9-c4588992b1b1 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -agOnt:edge_UnusedOpenPort_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_030GES392_Design1_AF138E59-0000-17AC-556E-BC030000331B - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES392_Design1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "74.045"^^rdfs:Literal ; - amlImp:hasFrame_x "1.402858"^^rdfs:Literal ; - amlImp:hasFrame_y "1.670187"^^rdfs:Literal ; - amlImp:hasFrame_z "0.5"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Design1_18D10496-78D6-4637-8AF5-590B4DB00E94 . - -agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2013-2823_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2013-2785_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2811_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-2355_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UnusedOpenPort_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2019-6833_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2014-0750_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2014-0751_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:vertex_has_Weight 8.0e0 . - -agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:vertex_has_Edge agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2013-2823_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2014-0750_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2019-6833_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_UnusedOpenPort_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-2355_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2811_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2014-0751_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2785_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:vertex_has_Weight 8.0e0 . - -agOnt:edge_InsecureProtocolUsed_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -amlImp:ie_EthernetWire2_f3573406-3d87-405f-96f7-fc824f8855c1 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_2a58752f-b177-4678-ae1d-fe781e8e155e , amlImp:ei_EthernetPlug1_61884fe6-00de-4e36-b9b0-ad4d74f455e0 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334D - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_74228306-7229-4E67-B3A7-66FA39D6BC9D . - -amlImp:ie_Program_4971dccf-ad4c-4770-b809-518f1e2ea099 - a amlImp:PLCProgram , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Program" ; - amlImp:hasCopyProtection "True" ; - amlImp:hasKnowHowProtection "True" . - -amlImp:ie_Portlist_67231c27-d1ae-4b80-af71-249d4a0e5e3e - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_MotorSocket_38a06c3f-ad69-4eed-9df0-d0320219f65a , amlImp:ei_DataSocket_846549de-aa8c-4c87-900e-543d02116fe4 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2017-9798_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9798 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug1_9ac7da67-a7ec-4547-86fa-c7970ffc8cb9 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_InsecureAlgorithmUsed_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability secont:InsecureAlgorithmUsed . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_CF1BC4B3-2145-4EE5-9414-BDE375E84818 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1" . - -secont:CVE-2012-1856 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-1856"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "9.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a . - -agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2014-0751_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_EthernetPlug1_b8ca4279-9c8f-496f-8536-ea084e697182 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a amlImp:PLC , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRC4_3" ; - secont:asset_logicallyConnectedTo_Asset - amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 , amlImp:ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "rc4" ; - amlImp:hasCpeVendor "kuka" ; - aml_ontology:hasIE amlImp:ie_Portlist_64d1dea7-30d1-4f8e-a41e-e09b1c689f9b , amlImp:ie_LogicalPortList_c3ce6da1-7bfc-4793-bf1e-503a4845e1b3 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_2608F01B-0F93-4588-818C-4330BDCE0AAB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19704000046499800797_001_bez_axis_Rep.dae" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ei_EthernetSocket3_6ebaee6c-fc37-424b-b713-978397078156 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -amlImp:ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b - a amlImp:MailServer , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "MailSvr1" ; - aml_ontology:hasIE amlImp:ie_Portlist_02a2e31f-4f8d-4b5c-8bcd-eba77d11f062 . - -amlImp:ei_EthernetPlug2_0c1866a0-8d5f-45ca-9d40-0ddfc0002a22 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2014-0751_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ei_Attachment_COLLADA_Schlitten_C0461D83-55DA-4498-BF09-C7662CCBE621 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Schlitten" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_1_Product.dae#KR240R2700prime_1" ; - amlImp:hasTarget "./KR240R2700prime_1_AttachmentPoint_Schlitten"^^rdfs:Literal . - -amlImp:ei_EthernetPlug2_a53e525a-9249-4c78-a32a-c3c10bd40034 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_COLLADA_ToolMountPoint_985645AC-ED86-46F0-846E-1A7D4E8CFCB5 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_4_FrameOfInterest_ToolMountPoint"^^rdfs:Literal . - -amlImp:ei_Representation_74CF2758-C2F7-4C9C-9805-AD0BE27D4CB7 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schlitten_Product.dae#Schlitten" . - -amlImp:ie_WHARTGW1_d3669fd5-544a-4b9b-a960-6b08c6aead4f - a amlImp:WirelessHARTGateway , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WHARTGW1" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - aml_ontology:hasIE amlImp:ie_Portlist_c6a3f2ed-4d18-4109-bbcc-7bda96340947 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Portlist_253d3a90-679b-4e46-8ff3-eba6e376fae2 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_a92c7873-0a07-4694-92eb-4e5afa8851a4 . - -amlImp:ei_EthernetPlug1_0b97ffa8-eb93-417f-858e-a4add57b022a - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_EthernetWire3Safety_ce3bb8ef-6b08-4891-9251-a122f3fae37e - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3Safety" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_bb270613-e7f8-4c44-83a0-090b1003040d , amlImp:ei_EthernetPlug1_527adc4b-3795-4165-83fc-dd38cafc1971 . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4F0000339A - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_B0D18424-EDDA-4427-B8FF-5F93810A1EBD . - -amlImp:ie_KRxxxRultra.6.1_020GRF141_AF138E59-0000-17AC-556E-B5B00000321D - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_020GRF141" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_020GRF141_24903B78-3EAC-4666-9C3D-46C0E34F4264 , amlImp:ei_Attachment_020GRF141_A18D9CBE-9454-4CA9-8D2E-3DCD3B9E7D44 . - -agOnt:edge_CVE-2013-3957_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-3957 . - -amlImp:ei_EthernetPlug2_eb5f8cab-ad6b-4fa0-87a1-d8d54fc229d7 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033A2 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-17.8"^^rdfs:Literal ; - amlImp:hasFrame_y "0.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -agOnt:edge_CVE-2016-2200_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2014-0750_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ie_EthernetWire14_21929f93-1f05-4f5d-bd82-e6365bfae17e - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire14" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_ffed756f-eda3-490d-9730-f61888d28b0d , amlImp:ei_EthernetPlug1_3ce929fc-cb81-4ddd-90c4-566a8dc9d524 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:vertex_has_Edge agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2014-0750_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UnusedOpenPort_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2013-2823_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2785_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2014-0751_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2013-2811_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2019-6833_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2014-2355_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:vertex_has_Weight 8.0e0 . - -amlImp:ie_WirelessConnection1_2b31412f-f823-404d-9a4f-f93197181293 - a amlImp:WirelessConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WirelessConnection1" ; - aml_ontology:hasEI amlImp:ei_WirelessPlug2_911e7a2c-6199-4496-b4dd-a431ae2ab086 , amlImp:ei_WirelessPlug1_97f811e1-694e-4b03-9f0b-4a0308462c02 . - -amlImp:ei_Representation_07592164-A934-482B-9A0E-C03D2D5F82D3 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile" . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection1 LogicalEndpointProfinet1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 KRC4 LogicalEndpointProfinet" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointProfinet1_72ed1588-3b9b-4dfe-a89a-9346bfc01530 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointProfinet_915ff2e6-3d5d-4681-b6e0-dbb30417dae4 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_LogicalEndpointPROFIsafe_59fa5a98-b9c5-443e-a743-df56b026d9f3 - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - -amlImp:ie_Portlist_0b8ac3a0-75c0-4c6e-9591-bff8c66ce87c - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket4_1a4b042a-eef5-46ce-b350-656ab2b6c060 , amlImp:ei_EthernetSocket3_39ffd08b-5871-49bc-9e10-b1e340c12ac6 , amlImp:ei_EthernetSocket2_a95b5f98-b5cf-447b-8792-ed42e675f8b6 , amlImp:ei_EthernetSocket1_6f2435d9-f622-4749-996c-379e9d87b83d . - -amlImp:ei_Representation_90269BD9-D7F6-4C26-B852-5F4A9B5D4ECD - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_CVE-2012-2595_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2595 . - -secont:BusinessInterruption_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 . - -amlImp:hasFrame_y a owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - -amlImp:ie_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B57B00003201 - a amlImp:Robot , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "020RB_100_KR240R2700prime_" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.217233"^^rdfs:Literal ; - amlImp:hasFrame_y "2.923347"^^rdfs:Literal ; - amlImp:hasFrame_z "1.007"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_97EC293B-56FD-4FE8-A837-981070F4B323 ; - aml_ontology:hasIE amlImp:ie_020RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B5B00000321A , amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B5B00000321F , amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B00000321B . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -secont:CVE-2012-3032 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-3032"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire1 MotorPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 KRC4 MotorSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_MotorPlug1_cfbea44c-35e9-4230-81f9-3d799b5a87db ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_MotorSocket_8b7f2dde-0548-4459-9b33-bf7a7875e0ed . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_Portlist_cb19cccd-fafb-4b38-b812-773906e1dd49 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket3_e4931324-995a-4f20-ab21-384fb1ffea6d , amlImp:ei_EthernetSocket2_6bf6a4bd-7bef-412c-938b-4d3bde1bfa62 , amlImp:ei_EthernetSocket1_1191a78f-9c97-4b0c-bdb0-0a920a8152ff . - -amlImp:hasFrame_ry a owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_CVE-2014-2355_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ei_EthernetPlug2_d6388a7b-6006-4e47-936e-a3da211e0f5b - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ie_Schutzzaun_2000x1000.12_AF138E59-0000-17AC-556E-BC51000033C2 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.12" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-23.8"^^rdfs:Literal ; - amlImp:hasFrame_y "1.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ei_EthernetPlug2_cde479a9-1cfc-4908-86f5-0d02683c4935 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ControlHardware - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ControlHardware" ; - rdfs:subClassOf amlImp:ControlEquipment . - -amlImp:ie_EthernetWire9_fc136087-589c-4311-aa51-174b2178a500 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire9" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_a0c2a075-76ac-4ba9-8431-d3f34cde2777 , amlImp:ei_EthernetPlug1_fa50852d-143d-4289-a134-18299f7896cc . - -secont:CVE-2017-5372 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2017-5372"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:ei_Representation_041B7419-8770-4264-A1B6-C418D01A33A7 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - -amlImp:ei_EthernetSocket2_b8fd1fdb-5185-47da-a635-425c897b4a0e - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -amlImp:ie_Portlist_d45d127c-9ade-4ea9-b503-bbfc5c80f2fe - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_693e5301-37c0-4168-8f29-0908cb40c024 . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ControlZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ControlZone" ; - rdfs:subClassOf amlImp:OTZone . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2201_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338C - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_C17256CA-C14D-482E-A569-C3F7573CEF98 . - -amlImp:ei_Representation_CB398B71-D498-4994-B0EA-51B6F3D39F71 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1" . - -amlImp:ei_Attachment_Tool1_70506433-100A-49AF-8D7E-0C07DAA4A8CD - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - -secont:CVE-2013-1241 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-1241"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_Cisco1921Router_49a3e9c9-a693-4052-8084-3f2080bb0a16 , amlImp:ie_Cisco1921Router_f63c0f61-7317-4a01-85f1-17cf3c457962 , amlImp:ie_Cisco1921Router_ff30129c-f56a-4593-9e06-0228c9bd14b9 , amlImp:ie_Cisco1921Router_73e8aa8c-6117-476e-8b67-83a1970fc969 , amlImp:ie_Cisco1921Router_571cf030-3f40-4866-a3b8-0a1fa0cdfe37 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -agOnt:edge_CVE-2016-2201_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2016-2200_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedWirelessDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_NoPLCProgramCopyProtection_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-0750_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_CVE-2019-6833_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_CVE-2014-2355_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-5074_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2013-2785_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2201_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedWirelessDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_UntrustedCrossZoneConnection_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2013-2811_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NoPLCProgramCopyProtection_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedWirelessDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2016-2200_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2200_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-5074_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-0751_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2016-2201_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2201_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2013-2823_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:vertex_has_Weight 0.0e0 . - -amlImp:ei_DataSocket_e01de9a6-af8d-4aa5-8f5f-57080f540b6a - a amlImp:DataSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - -amlImp:ei_LogicalEndpointOPC2_1a018044-4ba2-4210-8099-68e6c28aff4f - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - -amlImp:LogicalEndpointlist - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalEndpointlist" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -amlImp:ie_030EKW171_030RB_100_KAPPENTAUSCH_0_AF138E59-0000-17AC-556E-B8B60000329C - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171_030RB_100_KAPPENTAUSCH_0" ; - aml_ontology:hasEI amlImp:ei_Attachment_030RB_100_KAPPENTAUSCH_0_1760FA05-8795-43B9-A6A7-86AAFEA2AA71 . - -agOnt:edge_CVE-2014-5074_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2013-6816_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6816 . - -amlImp:ei_LogicalEndpointPROFIsafe_f8375d35-7820-469d-9aaa-5ab3c8bb2eef - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032BC - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" ; - amlImp:hasFrame_rx "17.654"^^rdfs:Literal ; - amlImp:hasFrame_ry "4.514"^^rdfs:Literal ; - amlImp:hasFrame_rz "1.435"^^rdfs:Literal ; - amlImp:hasFrame_x "0.249814"^^rdfs:Literal ; - amlImp:hasFrame_y "0.024038"^^rdfs:Literal ; - amlImp:hasFrame_z "2.571961"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_27DCE7F2-DE82-4750-92D9-EE11D2C5E865 ; - aml_ontology:hasIE amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B8F4000032BF , amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032BD , amlImp:ie_KRxxxRultra.6.1_030DS_251_AF138E59-0000-17AC-556E-B8F4000032BE . - -amlImp:MailServer a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "MailServer" ; - rdfs:subClassOf amlImp:Host . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030DS_251_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F6000032C8 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030DS_251_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_13C77DE5-A517-4144-A4B8-ABA4916BE7D1 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_CVE-2019-6833_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_CVE-2019-6833_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_CVE-2018-1312_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1312 . - -amlImp:ei_Attachment_030RB_200_KR240R2700prime__DD6B4EE3-6C4C-417B-B452-2E1DC1544709 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_200_KR240R2700prime_" . - -amlImp:ei_Representation_6F3AEA34-D348-41A8-BA72-89D80B77D729 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection4 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC2_12c24e84-be9a-4e36-b7a9-7b2ad751cfe6 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC5_8e747187-913d-4635-bd1b-d64e683a0a21 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2014-0751_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -agOnt:edge_CVE-2014-0750_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ei_EthernetPlug1_5aebb503-e90c-4b74-9607-8531a6743be6 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ei_MotorSocket_ed3aabca-267d-46c4-b511-77d151c7846f - a amlImp:MotorSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - -agOnt:edge_CVE-2016-2201_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B000003220 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" ; - amlImp:hasFrame_rx "-121.11"^^rdfs:Literal ; - amlImp:hasFrame_ry "13.004"^^rdfs:Literal ; - amlImp:hasFrame_rz "-170.204"^^rdfs:Literal ; - amlImp:hasFrame_x "0.113588"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.359624"^^rdfs:Literal ; - amlImp:hasFrame_z "2.568288"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_734AD298-632E-4E34-823D-399224D207A7 ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B000003221 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_EthernetSocket1_0e28cd59-35a1-4726-b672-366db5780dd4 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_020GES191_AF138E59-0000-17AC-556E-B5B200003226 - a amlImp:Machine , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "020GES191" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.575"^^rdfs:Literal ; - amlImp:hasFrame_y "2.923347"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_207638C0-E1DB-4262-8122-C2683C021E85 ; - aml_ontology:hasIE amlImp:ie_Schlitten_AF138E59-0000-17AC-556E-B5B30000322D , amlImp:ie_020GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B5B30000322C , amlImp:ie_020GES191_OKF_Standard_AF138E59-0000-17AC-556E-B5B30000322B . - -amlImp:ie_030SWZ121_030WZD121_AF138E59-0000-17AC-556E-B8A900003276 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ121_030WZD121" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030WZD121_8B0F1C8B-B91C-415D-BD7F-CF87520DB364 , amlImp:ei_Attachment_030WZD121_50F00CDD-9E68-495C-A49C-09DF1F6B7B22 . - -amlImp:ie_EthernetWire8_e1486d13-09f8-4f73-8ec7-16c2468f4a00 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire8" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_2eb48f3e-95ff-459f-a252-3338bb312a91 , amlImp:ei_EthernetPlug1_0b0f750d-a2fd-4a30-94d6-55f0562317c5 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_Representation_BC7066CC-91E1-4984-95C6-7ABD53814C2F - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:ei_EthernetPlug1_44569ec8-9862-4ac2-baf2-96a40bbd168b - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337F - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_1853FF3C-F14C-4290-A773-BA13E8AFF421 . - -agOnt:edge_CVE-2013-2811_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ie_LogicalPROFIsafeConnection1_87d514a1-25b5-4ba4-9908-d9c000631b75 - a amlImp:PROFIsafe , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPROFIsafeConnection1" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointPROFIsafe2_08eb5c10-0f82-401f-b6b5-720988f25910 , amlImp:ei_LogicalEndpointPROFIsafe1_e5384131-e6eb-48e8-8b90-9ead55a16971 . - -amlImp:ei_Representation_6F680005-56C9-4A1A-B001-659DACC930CE - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:ei_LogicalEndpointProfinet1_9de6bd05-5336-4dd6-83d7-6eb3fdbc6c9d - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet1" . - -agOnt:edge_CVE-2013-2811_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_CVE-2019-10092_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10092 . - -amlImp:ei_WirelessPlug2_1138b241-22e0-4fa1-b6ff-b3ae35dbe7da - a amlImp:WirelessPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug2" . - -icsSecOnt:PROFIsafe owl:equivalentClass - amlImp:PROFIsafe . - -agOnt:edge_CVE-2019-10098_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10098 . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire6 EthernetPlug2 - EnterpiseDMZ FileserverEnterprise EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_8750445b-c4d5-4c3e-a96a-903af449bee7 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_17d6bbc4-df3d-4f05-9548-82e7227cf8bd . - -agOnt:edge_CVE-2014-2355_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a amlImp:PLC , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRC4_1" ; - secont:asset_logicallyConnectedTo_Asset - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "rc4" ; - amlImp:hasCpeVendor "kuka" ; - aml_ontology:hasIE amlImp:ie_Portlist_875cb0fa-93d7-4082-b96a-eff064220be5 , amlImp:ie_LogicalPortList_e8ef64ac-6ce8-415a-a5e2-3ee11ba88396 . - -agOnt:edge_CVE-2014-2355_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire14 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation KUKAConnectivityBox1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_ffed756f-eda3-490d-9730-f61888d28b0d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_34c5a701-1da9-4a1e-b1fc-5e72091da36f . - -agOnt:edge_CVE-2012-3031_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3031 . - -agOnt:edge_CVE-2019-0337_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0337 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire9 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_300 KRC4 EthernetSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_fa50852d-143d-4289-a134-18299f7896cc ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket_8186e078-1346-489f-baed-bfa4e8b524f3 . - -amlImp:PLC a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PLC" ; - rdfs:subClassOf amlImp:Host , amlImp:Controller . - -secont:CVE-2017-9798 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2017-9798"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:ei_Attachment_Base1_3E50FB8D-C747-402F-9761-ADBD51745232 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug2_d1271e4c-b1b8-49b5-8fdd-504f6596f0da - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-2 DataPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 DataSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_DataPlug2_9ac880a6-992f-4a72-93c8-697f7184b4a8 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_DataSocket_e01de9a6-af8d-4aa5-8f5f-57080f540b6a . - -amlImp:ei_Representation_3A80B19A-A9AE-489C-89CC-4BF9407FC760 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:ei_LogicalEndpointOPC3_372ad0ad-1e08-45ea-899c-19d4009158e2 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC3" . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-5074_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_020GRF141_020GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B81A0000323D - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_020GRF141_A2136160067_SFK-HAB-010" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_020GRF141_A2136160067_SFK-HAB-010_2F622227-2AE5-4B4B-9AAD-42D549F55200 , amlImp:ei_Attachment_020GRF141_A2136160067_SFK_HAB_010_91A891CA-B49D-4A08-A06D-C4828DE4079E . - -agOnt:edge_CVE-2014-2355_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ei_Representation_E9017613-E22F-479F-857C-845BEBC4DB41 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_CVE-2018-17199_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2018-17199 . - -amlImp:Attachment_030RB_100_KR240R2700prime__030GES190 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030RB_100_KR240R2700prime__030GES190" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_030GES190_47E90BE3-E2EB-46FD-AE00-CDD36656F0BF ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_030RB_100_KR240R2700prime__D0EC1411-8E0B-4A32-8AE3-6E309ABA9A80 . - -agOnt:edge_CVE-2013-0675_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0675 . - -agOnt:edge_CVE-2017-9788_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9788 . - -amlImp:ei_Representation_5A399DBE-E9CA-4D22-9B00-86E93A5B9CD8 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/SPS_Schrank_1200x2000x500_Product.dae" . - -amlImp:ei_Attachment_COLLADA_010GRF141_A2136160067_SFK-HAB-010_FA5D9D6D-A851-462E-AC91-9D5E453B7B18 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_010GRF141_A2136160067_SFK-HAB-010" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_010GRF141_A2136160067_SFK-HAB-010"^^rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetSocket1_4004db01-a168-4e93-b4b3-44494dc62463 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:InterlockingConnector - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "InterlockingConnector" ; - rdfs:subClassOf amlImp:AutomationMLBaseInterface . - -agOnt:edge_CVE-2013-6821_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6821 . - -amlImp:Modbus a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Modbus" ; - rdfs:subClassOf amlImp:Protocol . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire2 EthernetPlug2 - EnterpiseDMZ CiscoCatalystSwitch EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_0004adea-700d-434a-a21f-b71884abe932 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_a02963d4-9d31-4dc2-98ff-239192d33803 . - -secont:CVE-2011-4707 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2011-4707"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_DC9884DE-BD71-41D8-88D3-8B7FBB367265 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal . - -agOnt:edge_CVE-2019-0282_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0282 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2012-3031_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3031 . - -amlImp:ei_Attachment_COLLADA_020RB_100_KR240R2700prime__85BBF595-6FC5-4013-B6F5-AB2B43CAA857 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020RB_100_KR240R2700prime_" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schlitten_1_Product.dae#Schlitten_1" ; - amlImp:hasTarget "./Schlitten_1_AttachmentPoint_020RB_100_KR240R2700prime_"^^rdfs:Literal . - -amlImp:ie_030SWZ321_Tool1_AF138E59-0000-17AC-556E-B99D00003302 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ321_Tool1" ; - amlImp:hasFrame_rx "180"^^rdfs:Literal ; - amlImp:hasFrame_ry "-45"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.152"^^rdfs:Literal ; - amlImp:hasFrame_y "0.3705"^^rdfs:Literal ; - amlImp:hasFrame_z "0.8468"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool1_646D525A-0DE4-45B0-933E-EFF9455FAAE2 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_COLLADA_Base1_382D4282-542A-4B8E-888D-AA8F85A205D5 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Base1"^^rdfs:Literal . - -amlImp:ei_Representation_2E041E3E-ED0A-486D-95E7-07514A3449E9 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:ei_Attachment_Tool1_646D525A-0DE4-45B0-933E-EFF9455FAAE2 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection1 WirelessPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTSensor1 WirelessInterface1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_WirelessPlug2_911e7a2c-6199-4496-b4dd-a431ae2ab086 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_WirelessInterface1_a3ff8a82-d3c1-40c8-b02c-5a622c97750c . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -amlImp:ei_WirelessInterface2_68cdcef0-c91a-4abb-83cb-e95450a9429d - a amlImp:WirelessInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface2" . - -amlImp:ie_CiscoCatalystSwitch_afcb7be1-18d8-4789-804c-fb80a97a29c2 - a amlImp:Switch , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoCatalystSwitch" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , amlImp:ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 , amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "catalyst_4500" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_5ae73d3b-44fd-4f42-bc1a-5c3b217ee997 . - -amlImp:ei_EthernetPlug2_9b8d99fd-42f3-44c1-956e-da53204c151b - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -secont:DataBreach_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 - a secont:DataBreach ; - secont:consequence_impacts_Asset - amlImp:ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 . - -amlImp:ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_AF138E59-0000-17AC-556E-BC460000332E - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063102000101_001_zb_hb_gestell_01_fa.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.365"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "-1.795"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_3A0D834D-98AB-48FC-BCFF-86410CE25B87 ; - aml_ontology:hasIE amlImp:ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_A2136160067_AF138E59-0000-17AC-556E-BC460000332F . - -secont:CVE-2008-3358 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2008-3358"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:hasCopyProtection - a owl:DatatypeProperty ; - rdfs:domain amlImp:PLCProgram ; - rdfs:range xsd:string . - -agOnt:edge_CVE-2019-0278_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0278 . - -amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_B2EECEE9-623A-4B33-86AB-018EBC3873D6 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-2355_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_EthernetPlug1_b6584936-fa1a-491b-b25e-667326c59ae4 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003389 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_C6CD5063-8F95-4C5B-BF50-ADCBAFDD77BB . - -amlImp:ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b - a amlImp:Fileserver , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "FileSvr2" ; - aml_ontology:hasIE amlImp:ie_Portlist_deedce45-802a-4e57-9535-4cee2506156e . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003365 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_4ED6E31F-5195-4D55-995B-925FEE990FBA . - -agOnt:edge_CVE-2013-0675_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0675 . - -amlImp:ie_LogicalNetwork_9690ed3a-50d1-4c23-af4f-53e0a9e4b9ca - a amlImp:LogicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" ; - aml_ontology:hasIE amlImp:ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 . - -amlImp:ie_EnterpriseDMZ_abdd9c9b-7894-451a-b192-a2e7a6bd24c6 - a owl:NamedIndividual , amlImp:EnterpriseDmzZone ; - rdfs:comment "InternalElement" ; - rdfs:label "EnterpriseDMZ" ; - aml_ontology:hasIE amlImp:ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , amlImp:ie_CiscoFirewall_37f6480c-4cb7-4e6a-9c30-55150ba533ce , amlImp:ie_CiscoCatalystSwitch_afcb7be1-18d8-4789-804c-fb80a97a29c2 , amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 , amlImp:ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 , amlImp:ie_PhysicalNetwork_f6b49dd9-aaee-4be0-baab-97b1cf4d87e0 , amlImp:ie_Cisco1921Router_73e8aa8c-6117-476e-8b67-83a1970fc969 , amlImp:ie_LogicalNetwork_9690ed3a-50d1-4c23-af4f-53e0a9e4b9ca . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_EthernetWire3_91cef007-9a7a-4a5c-86e0-4e793f13fb27 - a amlImp:EthernetWire , amlImp:Conduit , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_cde479a9-1cfc-4908-86f5-0d02683c4935 , amlImp:ei_EthernetPlug1_e20e313c-f472-4a6a-9727-4982e028474f . - -amlImp:ei_LogicalEndpointProfinet2_2fc773b5-2686-4d82-bc98-5f6dc599daad - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet2" . - -amlImp:ie_LogicalPortList_38cabac8-567f-45fa-bee9-a993bf9b5cd5 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointPROFIsafe_ae854efb-9d6b-4b00-a4da-247eaf736f6f . - -amlImp:ie_030RB_100_AF138E59-0000-17AC-556E-B81A0000323F - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100" ; - aml_ontology:hasIE amlImp:ie_030SWZ121_AF138E59-0000-17AC-556E-B89A00003273 , amlImp:ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240 , amlImp:ie_030WZD180_AF138E59-0000-17AC-556E-B85100003266 , amlImp:ie_030EKW171_AF138E59-0000-17AC-556E-B8B60000329B , amlImp:ie_030FG_111_AF138E59-0000-17AC-556E-B8810000326A , amlImp:ie_030WZA181_AF138E59-0000-17AC-556E-B8B300003284 , amlImp:ie_030GES190_AF138E59-0000-17AC-556E-B8B40000328E , amlImp:ie_030WZA180_AF138E59-0000-17AC-556E-B8A90000327A , amlImp:ie_030RB_100_AF138E59-0000-17AC-556E-B84F00003262 , amlImp:ie_030WZD121_AF138E59-0000-17AC-556E-B8A900003277 , amlImp:ie_030EKF170_AF138E59-0000-17AC-556E-B8B500003291 , amlImp:ie_030WZD111_AF138E59-0000-17AC-556E-B88800003270 . - -agOnt:edge_CVE-2012-3003_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3003 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_030WZD180_AF138E59-0000-17AC-556E-B85100003266 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD180" ; - amlImp:hasFrame_rx "4.499"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.366172"^^rdfs:Literal ; - amlImp:hasFrame_y "6.379493"^^rdfs:Literal ; - amlImp:hasFrame_z "2.394861"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_030WZD180_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B85100003267 , amlImp:ie_F16500000115199800458_001_458_walther.1_AF138E59-0000-17AC-556E-B85100003269 , amlImp:ie_030WZD180_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B85100003268 . - -agOnt:edge_CVE-2017-15710_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15710 . - -agOnt:edge_CVE-2019-6833_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -amlImp:ie_Portlist_dbc10847-03d6-44b2-92f4-4f0350ca8fe4 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_881a9b51-6752-4aa8-8471-714015644adf . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire4 EthernetPlug1 - Business CiscoCatalystSwitch EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_7b4c288c-c4a0-434b-b92e-2376421a1813 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_0df11b8c-5e02-4e67-a3e9-c4588992b1b1 . - -amlImp:ie_LogicalProfinetConnection3_c5f12a8c-b961-4964-bbce-af3e03554cdb - a amlImp:Profinet , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalProfinetConnection3" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet2_2fc773b5-2686-4d82-bc98-5f6dc599daad , amlImp:ei_LogicalEndpointProfinet1_01e828d3-97b1-4667-ab52-12b568cea9da . - -amlImp:AVServer a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "AVServer" ; - rdfs:subClassOf amlImp:Host . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility CarDoorProductionLine OperationsSupport LogicalNetwork LogicalOPC-UAConnection LogicalEndpointOPC-UA-1 - CarBodyManufacturingFacility CarDoorProductionLine OperationsSupport MES1 SimaticIT LogicalPortList LogicalEndpointOPC-UA-1 " ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC-UA-1_2f5fab35-8e99-45ff-ae56-4ac00b7144ea ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC-UA-1_a04436ec-db07-4dc1-a5a1-4a0e469e2c1d . - -agOnt:edge_CVE-2019-0283_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0283 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033AC - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_BFDB1D5A-AB22-4C79-923C-36E447FC9198 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -secont:CVE-2016-2201 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2016-2201"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 . - -amlImp:ie_010GES191_AF138E59-0000-17AC-556E-B156000031DA - a amlImp:Machine , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010GES191" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "1.025"^^rdfs:Literal ; - amlImp:hasFrame_y "2.923347"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_0A462592-DE34-479F-8335-6F3233A17646 ; - aml_ontology:hasIE amlImp:ie_Schlitten_AF138E59-0000-17AC-556E-B159000031E1 , amlImp:ie_010GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B159000031E0 , amlImp:ie_010GES191_OKF_Standard_AF138E59-0000-17AC-556E-B159000031DF . - -amlImp:ei_Attachment_A2136160067_586EE305-FD65-4CD6-BB11-46E5B713178A - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_A2136160067" . - -amlImp:ei_LogicalEndpointProfinet2_04af5cee-6f9d-4f44-afe9-de3393fc7bf4 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet2" . - -amlImp:ie_EthernetWire4_b7f4cd6a-cb4a-4e47-9eb3-289d1e96adfe - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_cb71bfd9-e012-4a10-86f0-c4c606e1e495 , amlImp:ei_EthernetPlug1_0b97ffa8-eb93-417f-858e-a4add57b022a . - -amlImp:ei_EthernetPlug2_0cba49f1-5272-4e65-88a2-172997506511 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ITZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ITZone" ; - rdfs:subClassOf amlImp:Zone . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_020RB_100_KR240R2700prime__9E3A7778-5111-4959-8BE3-A2B2D70E4358 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020RB_100_KR240R2700prime_" . - -agOnt:edge_CVE-2019-10098_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10098 . - -amlImp:ei_LogicalEndpointModbus_81b74a1f-b305-470b-8c8c-d6bad9103441 - a amlImp:LogicalEndpointModbus , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointModbus" . - -amlImp:ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321 - a amlImp:Server , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "AnalyticsSvr1" ; - aml_ontology:hasIE amlImp:ie_Portlist_9e0353d3-876b-443b-b1b9-93bc26113d19 . - -amlImp:ei_MotorSocket_06edea8e-1bd1-43f6-a847-1d0eb58f95a9 - a amlImp:MotorSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - -agOnt:edge_InsecureProtocolUsed_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -secont:CVE-2018-1312 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2018-1312"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:ei_EthernetSocket1_829e06ef-1ede-49f3-8e55-a6a18ffcdace - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2019-6833_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug2_3ecaf821-1a98-45a6-8578-d10894d44973 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2013-6823_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6823 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -secont:IPBreach_ie_Program_4971dccf-ad4c-4770-b809-518f1e2ea099 - a secont:IPBreach ; - secont:consequence_impacts_Asset - amlImp:ie_Program_4971dccf-ad4c-4770-b809-518f1e2ea099 . - -amlImp:DataSocket a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "DataSocket" ; - rdfs:subClassOf amlImp:Data . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003381 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_5F0ADF50-9691-4241-89E0-E1EDA0354705 . - -amlImp:ei_Attachment_COLLADA_Schlitten_E643F71E-4C00-4B8C-A690-F52BC12842F0 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Schlitten" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_Product.dae#KR240R2700prime" ; - amlImp:hasTarget "./KR240R2700prime_AttachmentPoint_Schlitten"^^rdfs:Literal . - -amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_3C27E082-EEA7-440A-BCFE-FDBC12C3177C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_Product.dae#saferobotparts-Tool1" ; - amlImp:hasTarget "./saferobotparts-Tool1_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal . - -icsSecOnt:ITOTCrossConnection - secont:vulnerability_on_Asset amlImp:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , amlImp:ie_Cisco1921Router_571cf030-3f40-4866-a3b8-0a1fa0cdfe37 , amlImp:ie_CiscoFirewall_a3925fe5-0ac1-487b-b18f-7cfb705ce575 . - -agOnt:edge_CVE-2017-9788_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9788 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_030WZD121_50F00CDD-9E68-495C-A49C-09DF1F6B7B22 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD121" . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:OperationsSupportZone - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "OperationsSupportZone" ; - rdfs:subClassOf amlImp:OTZone . - -amlImp:ei_Attachment_030RB_300_BH_030R3_030_W_C55BCE74-84C9-488D-9989-BCA6C2DC6F11 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_300_BH_030R3_030_W" . - -agOnt:edge_CVE-2014-0751_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire6 EthernetPlug1 - Business CiscoCatalystSwitch EthernetSocket4" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_f6b9c06d-b470-4aef-ba06-09edc891e6fc ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket4_1f3b99b8-9092-42d0-98c9-cecbf3b5a189 . - -amlImp:ie_Portlist_cdeea2dd-6a3e-42a3-9a70-cdaa513dcdc4 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket4_c57b5d9b-d2a1-44cf-bb7a-57a60957247a , amlImp:ei_EthernetSocket3_1c9c25cb-e95a-4708-a2ca-65e252b24a3f , amlImp:ei_EthernetSocket2_504b0974-f88e-4a2b-9c7f-28d1b54859ce , amlImp:ei_EthernetSocket1_aa0cfc1c-4738-4da7-9e0f-c582c808f0a9 . - -amlImp:ie_Einzelpfosten.3_AF138E59-0000-17AC-556E-BC4C00003380 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Einzelpfosten.3" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-11.2"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003381 . - -secont:CVE-2011-1280 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2011-1280"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a . - -amlImp:ie_030WZA180_Tool1_AF138E59-0000-17AC-556E-B8B30000327E - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_Tool1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0.325"^^rdfs:Literal ; - amlImp:hasFrame_z "1.211893"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool1_79B3FED3-C436-4745-8468-5D0654E01CC3 , amlImp:ei_Attachment_COLLADA_Tool1_9FB385A5-79D9-4AF6-8AD5-9A6C2C766A90 . - -amlImp:ei_Representation_C7BDE75A-7AFF-4649-BD28-2DDC46149F36 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzgittertuer_Product.dae" . - -agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:vertex_has_Edge agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2014-5074_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2016-2201_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2201_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_CVE-2016-2200_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-0750_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2811_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2201_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2019-6833_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2013-2823_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2016-2200_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-0751_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-5074_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2013-2785_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2200_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-5074_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2016-2200_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-5074_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-2355_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UntrustedCrossZoneConnection_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UnusedOpenPort_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:vertex_has_Weight 8.0e0 . - -amlImp:ei_Attachment_COLLADA_Base1_19B93A9A-461C-4370-A9C5-D2EB7EE44373 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Base1"^^rdfs:Literal . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire4 EthernetPlug2 - Business BusinessWebserver1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_a332c210-a79b-42b7-a537-9776d2139ab0 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_6f4fad76-7a6b-4156-90be-01c354d32800 . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2017-9798_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9798 . - -secont:CVE-2016-8743 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2016-8743"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:ei_Attachment_030WZD180_82862925-A9D8-4528-B513-67818494A71A - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD180" . - -icsSecOnt:NotSeparatedWirelessDevice - secont:vulnerability_on_Asset amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 . - -amlImp:ie_LogicalOPC-UAConnection_67214374-10d5-414f-b42c-2859f1fbf4c2 - a amlImp:OPC-UA , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPC-UAConnection" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC-UA-2_25f02e01-a974-4880-bd72-bf584af8624d , amlImp:ei_LogicalEndpointOPC-UA-1_2f5fab35-8e99-45ff-ae56-4ac00b7144ea . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire6 EthernetPlug1 - OperationsSupport CiscoCatalystSwitch EthernetSocket4" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_14548e38-9b8c-4bb9-95bd-fa0bfa038371 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket4_1a4b042a-eef5-46ce-b350-656ab2b6c060 . - -amlImp:ei_LogicalEndpointProfinet_433a17eb-fc4a-4d65-85cc-311e1ff00019 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - -amlImp:ei_EthernetPlug2_e84fe43d-40c6-4132-a8fb-f9c49fb24553 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B5B000003221 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_2BFE0407-0969-4A29-BD06-A8BAC2C28D62 , amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_C977F4BF-ED1A-428D-B4F8-48BC890ACB10 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-4 DataPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_300 KRC4 DataSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_DataPlug2_ec75d2b6-d66e-422a-b6a4-b8fd93fc5597 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_DataSocket_4af3778d-2956-4fdf-9345-d1fc5957528a . - -agOnt:edge_CVE-2014-0750_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:Host a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Host" ; - rdfs:subClassOf icsSecOnt:OTComponent . - -agOnt:edge_UnusedOpenPort_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ei_EthernetSocket1_a7278c83-fe80-4c1d-bb62-f78d3c568af8 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Attachment_COLLADA_030FG_111_BHF_5A2DC66B-7582-40B3-8853-E88C71B854AB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030FG_111_BHF" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030FG_111_BHF"^^rdfs:Literal . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:Transposer a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Transposer" ; - rdfs:subClassOf amlImp:Transport . - -amlImp:ei_EthernetPlug1_b9ff7173-3281-4b88-92a1-b38f5215cab9 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -secont:CVE-2012-2596 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-2596"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -agOnt:edge_CVE-2018-1283_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1283 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_SCADA_e3f0537e-2d70-4bb2-a538-e31e2c74d8e7 - a amlImp:SCADAZone , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SCADA" ; - aml_ontology:hasIE amlImp:ie_ScalanceX414-3e-1_f54529af-7587-4d9f-be29-a7c8bfdc1db4 , amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , amlImp:ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 , amlImp:ie_PhysicalNetwork_5d714a90-b712-4c6e-89c1-1df53350637a , amlImp:ie_LogicalNetwork_51a7d9fa-5805-4038-87d3-9d7158e486d0 . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ei_Attachment_COLLADA_030WZD121_8B0F1C8B-B91C-415D-BD7F-CF87520DB364 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD121" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin" ; - amlImp:hasTarget "./F266820012936_x_zange_kin_AttachmentPoint_030WZD121"^^rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_B85D2454-3205-4346-B4E5-E27451049CCA - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -icsSecOnt:Profinet owl:equivalentClass - amlImp:Profinet . - -amlImp:ei_Attachment_COLLADA_030RB_100_tool_2_decouple_sim_DC9E1031-2B40-49E4-B0FE-DC8E7D3BFE95 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_tool_2_decouple_sim" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_decouple_sim"^^rdfs:Literal . - -amlImp:ie_Schutzzaun_2000x1000.11_AF138E59-0000-17AC-556E-BC50000033B1 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.11" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-21.05"^^rdfs:Literal ; - amlImp:hasFrame_y "8.5"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334E - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_3FE655E7-FEF8-4A71-B14C-38DB1602545B . - -amlImp:ei_Attachment_030RB_100_tool_2_decouple_sim_A445C2AB-E18E-49C0-9166-C979457D8D18 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_tool_2_decouple_sim" . - -agOnt:edge_CVE-2012-3030_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3030 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -secont:UnusedOpenPort - secont:vulnerability_on_Asset amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 . - -amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a owl:NamedIndividual , amlImp:PLC , amlImp:SIS ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71510SPF1PN2" ; - amlImp:hasCpePart "o" ; - amlImp:hasCpeProduct "simatic_s7-1500_cpu_firmware" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "1.8.2" ; - aml_ontology:hasIE amlImp:ie_Portlist_61d16053-3272-4d71-a47e-3120972fde53 , amlImp:ie_LogicalPortList_38cabac8-567f-45fa-bee9-a993bf9b5cd5 . - -amlImp:ei_EthernetSocket4_c1e9b84e-e655-4dff-aa82-866445a091a3 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - -agOnt:edge_CVE-2013-6816_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6816 . - -agOnt:edge_CVE-2014-2355_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ei_EthernetSocket1_2f28d804-7a56-424f-b7b7-27e66f84eb16 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_LogicalPortList_446494df-86e8-4750-b847-7c68782aef9a - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet_67a0e8e3-f5f9-4a69-bf63-cc6e05f9a6b3 , amlImp:ei_LogicalEndpointPROFIsafe_429d1ee7-4e79-4657-a6d7-dd469a9b4a87 , amlImp:ei_LogicalEndpointOPC_871d320f-b7a9-4fa2-9b23-c975da0cc485 . - -agOnt:edge_CVE-2014-0751_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_Attachment_030FG_111_A239FC93-5FA9-48B5-9AEC-66B1AD6974A3 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030FG_111" . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335F - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_300739F5-E2E8-4E0E-AB2A-BA27221C4BFB . - -agOnt:edge_InsecureProtocolUsed_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:PhysicalConnection - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PhysicalConnection" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -amlImp:ei_Attachment_030WZD111_0D5E6978-CEB2-4985-BB95-31C01B2D409B - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD111" . - -amlImp:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B8B400003290 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063199800000_001_kr210_1000mm.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "45"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_9FD125EE-ED2C-4F38-80C3-D52078B53D48 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2014-4683_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4683 . - -amlImp:ie_KRxxxRultra.6.1_010GRF141_AF138E59-0000-17AC-556E-B155000031D1 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_010GRF141" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_010GRF141_F3D025B8-22D8-460D-ABC6-2AEAB3FD010B , amlImp:ei_Attachment_010GRF141_757D522F-C309-4297-AA3B-96641AE6DBA5 . - -agOnt:edge_CVE-2014-5074_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_EthernetSocket1_3ff51c5f-de99-4bb4-b326-9877d03faecb - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ei_EthernetPlug2_2a3b0c7c-db96-420b-9280-49ac1764428d - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ei_EthernetSocket5_66987355-b53a-4fd4-af31-c78628bfbbf6 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket5" . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2019-0316_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0316 . - -secont:CVE-2012-0158 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-0158"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "9.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a . - -agOnt:edge_CVE-2016-2200_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_LogicInterfaceGantt_1342f8d1-db6b-41e8-a387-47145362f813 - a amlImp:SequencingLogicInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicInterfaceGantt" ; - amlImp:hasRefURI "file:///LogicXML/Sequencing_Station_Gantt_AMLextensions.xml#UUID_001" . - -amlImp:ei_Attachment_COLLADA_ToolMountPoint_AAA676AB-FE9F-4559-82E8-DDF7244E9661 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_3_FrameOfInterest_ToolMountPoint"^^rdfs:Literal . - -amlImp:ei_LogicalEndpointOPC2_02e7b935-8067-4293-8748-0449c1144807 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - -amlImp:ei_Attachment_COLLADA_A2136160067_31018FA2-9918-452F-9C65-0EAF670D5D6C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_A2136160067" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/T510198_7_Rep.dae#T510198_7" ; - amlImp:hasTarget "./T510198_7_AttachmentPoint_A2136160067"^^rdfs:Literal . - -agOnt:edge_UnusedOpenPort_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:Controller a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Controller" ; - rdfs:subClassOf amlImp:ControlEquipment . - -secont:CVE-2013-0678 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-0678"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ei_Attachment_COLLADA_FZG0_157818DD-0FDE-4F50-AF13-24339EA93F6A - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_FZG0" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_FZG0"^^rdfs:Literal . - -amlImp:ie_EthernetWire5_d388eaf4-4b57-4bf5-9428-356dd41e5dfc - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_3d19d82e-0b7d-4586-92a1-2ab4d563ab0a , amlImp:ei_EthernetPlug1_6e384bf9-7850-484b-8649-78acf992f8d5 . - -amlImp:Switch a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Switch" ; - rdfs:subClassOf amlImp:NetworkDevice . - -amlImp:ei_Representation_66264A05-382C-41A1-9E78-B61C93B74A96 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" . - -amlImp:ei_Attachment_030RB_100_KAPPENFRAESEN_036534DF-B746-49E4-A2A6-673718C355A4 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_KAPPENFRAESEN" . - -secont:CVE-2012-3028 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-3028"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -agOnt:edge_CVE-2019-0211_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0211 . - -secont:CVE-2017-7679 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2017-7679"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:edge_CVE-2019-6833_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a owl:NamedIndividual , amlImp:Server ; - rdfs:comment "InternalElement" ; - rdfs:label "AppSvr1" ; - secont:asset_logicallyConnectedTo_Asset - amlImp:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "netweaver_process_integration" ; - amlImp:hasCpeVendor "sap" ; - amlImp:hasCpeVersion "7.50" ; - aml_ontology:hasIE amlImp:ie_Portlist_3a2cbfe7-ef3e-4701-8903-7c9134daaabb , amlImp:ie_LogicalPortList_17feba5e-563a-40f5-88df-22bf61dbdfe5 . - -agOnt:edge_CVE-2019-6833_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2017-7668_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7668 . - -amlImp:SequencingBehaviourLogicInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "SequencingBehaviourLogicInterface" ; - rdfs:subClassOf amlImp:LogicInterface . - -amlImp:ei_Attachment_Schlitten_1EA0D29E-7FB7-43A9-BB88-FD03CDDF9B42 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Schlitten" . - -amlImp:ei_Representation_645B6406-D0BE-4F34-BB4C-94771B578F1D - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:ie_LogicalProfinetConnection2_927b3231-91ab-4cb2-835f-f6bc3cb638aa - a amlImp:Profinet , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalProfinetConnection2" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet2_302e1abe-af1d-4e16-b0ab-43d7eeac5082 , amlImp:ei_LogicalEndpointProfinet1_9de6bd05-5336-4dd6-83d7-6eb3fdbc6c9d . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_LogicalEndpointPROFIsafe1_a175d785-e4e9-4858-b4c2-1807437c1f63 - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe1" . - -amlImp:ei_EthernetPlug2_ffed756f-eda3-490d-9730-f61888d28b0d - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 - a amlImp:Historian , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SIMATICHistorian1" ; - aml_ontology:hasIE amlImp:ie_SimaticProcessHistorian_438e202e-e43f-49c8-a237-a81d8e87ad40 , amlImp:ie_Portlist_d45d127c-9ade-4ea9-b503-bbfc5c80f2fe , amlImp:ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -agOnt:edge_CVE-2018-1312_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1312 . - -secont:CVE-2015-5067 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2015-5067"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -agOnt:edge_CVE-2016-2200_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:Attachment_KRxxxRultra.6.1_020GRF141 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_020GRF141" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_020GRF141_A18D9CBE-9454-4CA9-8D2E-3DCD3B9E7D44 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_KRxxxRultra_6_1_4CF14346-938B-4150-9F7C-E47B7DCF7C6E . - -secont:CVE-2019-6833 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-6833"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2016-8743_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8743 . - -amlImp:ei_EthernetSocket1_e998d27c-161a-4bb7-85ac-41beae800ff0 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B84F0000325F - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" ; - aml_ontology:hasEI amlImp:ei_Representation_8D49D096-625E-46F8-88E3-A2622D385CE6 ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F00003260 . - -amlImp:ei_Representation_AD2FB08A-F868-4385-8A8A-E05B681DEB5E - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - -amlImp:ie_Vienna_c831cade-e8b3-4698-a545-8834422d3364 - a amlImp:Site , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Vienna" ; - aml_ontology:hasIE amlImp:ie_Enterprise_ead68db0-74a6-4253-8e98-6b289de4cbf2 , amlImp:ie_EnterpriseDMZ_abdd9c9b-7894-451a-b192-a2e7a6bd24c6 , amlImp:ie_CarBodyManufacturingFacility_5872b876-25d3-4b7f-9655-c4d2422e0197 . - -amlImp:ei_EthernetSocket2_19ba8293-31eb-4e43-a11f-7b4011957ae1 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -icsSecOnt:Resource owl:equivalentClass - amlImp:Resource . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:Attachment_KRxxxRultra.6.1_saferobotparts-Tool1.1 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_saferobotparts-Tool1.1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_saferobotparts_Tool1_1_859C2934-4B56-462E-A182-2D7E076ABCE7 , amlImp:ei_Attachment_saferobotparts_Tool1_1_5EC2AB6D-9DDD-4DBB-88AF-424D6D5DFFCA , amlImp:ei_Attachment_saferobotparts_Tool1_1_DC9E93B8-98CF-4A22-927B-ED9753DEB48A , amlImp:ei_Attachment_saferobotparts_Tool1_1_D92A35BF-273E-4B89-A2D0-4D2ED14E6F53 , amlImp:ei_Attachment_saferobotparts_Tool1_1_4211FF36-1735-492B-A9B6-9827AB70D367 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_KRxxxRultra_6_1_96B9C12E-D951-4BCF-908B-077CA5F64A77 , amlImp:ei_Attachment_KRxxxRultra_6_1_8741F297-D5B0-4F95-8B64-3D25989CCF92 , amlImp:ei_Attachment_KRxxxRultra_6_1_72B783F2-A060-496E-812B-BF685CDDB765 , amlImp:ei_Attachment_KRxxxRultra_6_1_4CF9835D-E98F-47F9-8C09-9FB44C70405A , amlImp:ei_Attachment_KRxxxRultra_6_1_2BFE0407-0969-4A29-BD06-A8BAC2C28D62 . - -amlImp:ie_020GRF141_Zentrierstift1_AF138E59-0000-17AC-556E-B81A0000323A - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_Zentrierstift1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.424735"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.572998"^^rdfs:Literal ; - amlImp:hasFrame_z "0.605999"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Zentrierstift1_54344EDF-F3C3-4B90-A2EF-96E3BC92A342 , amlImp:ei_Attachment_Zentrierstift1_CD98FEF5-3C32-4645-B5CD-63B4A4776EE0 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetSocket2_cc03190d-ad77-410a-87c6-ce5e32fe5894 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -amlImp:ProductionUnit - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ProductionUnit" ; - rdfs:subClassOf amlImp:ResourceStructure . - -amlImp:ei_EthernetSocket3_28d87e93-ae2d-4f6b-afef-ff28b4c995aa - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -agOnt:edge_CVE-2016-2200_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_EthernetPlug2_9411fd4d-e3f0-4b82-9726-cc007318a8bf - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_NotSeparatedTemporarilyConnectedDevice_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedTemporarilyConnectedDevice . - -amlImp:ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC50000033A5 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-13.8"^^rdfs:Literal ; - amlImp:hasFrame_y "0.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -agOnt:edge_CVE-2016-8740_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8740 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-2 DataPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 010RB_100_KR240R2700prime_ DataSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_DataPlug1_f9ce0072-4c30-4b19-ad58-13d874db959e ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_DataSocket_ae28eb4b-ffe8-4cb0-90ad-4b29fa94f73d . - -amlImp:ie_030FG_111_Base1_AF138E59-0000-17AC-556E-B8880000326D - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030FG_111_Base1" ; - amlImp:hasFrame_rx "-180"^^rdfs:Literal ; - amlImp:hasFrame_ry "-45"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.415646"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.947177"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Base1_126F6BAD-6EDB-4D6A-BB69-928D2AAAE212 , amlImp:ei_Attachment_COLLADA_Base1_2FE3CECB-4D96-48B3-A4E2-4681F86FFF38 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_EthernetSocket3_6e7d59c5-d96e-4e5b-814f-e94c5858faea - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -amlImp:ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B159000031E3 - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten_Roboterposition_Stellung_A" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "4.109732"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.932"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Roboterposition_Stellung_A_6BFD39F9-8C6E-4EF7-89A6-F0E409A3E0DA , amlImp:ei_Attachment_Roboterposition_Stellung_A_A0791535-CCB3-459B-90EA-86ED45CEC7F8 . - -amlImp:StorageUnit a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "StorageUnit" ; - rdfs:subClassOf amlImp:ResourceStructure . - -secont:CVE-2014-4685 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-4685"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.6"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ie_CarDoorProductionLine_93a4ebb4-211e-4f43-8e3b-76fe4df635c7 - a amlImp:ProductionLine , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "CarDoorProductionLine" ; - aml_ontology:hasIE amlImp:ie_SCADA_e3f0537e-2d70-4bb2-a538-e31e2c74d8e7 , amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 , amlImp:ie_ControlAndProcess_fbbb181c-e0a5-4891-a96e-8ff7dba97afe . - -agOnt:edge_CVE-2016-2200_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:BeltConveyor a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "BeltConveyor" ; - rdfs:subClassOf amlImp:Conveyor . - -agOnt:edge_CVE-2019-6833_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_CVE-2012-3032_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3032 . - -agOnt:edge_CVE-2019-13929_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-13929 . - -amlImp:ei_LogicalEndpointPROFIsafe_a2bd3329-93c3-4b76-9689-38069e140904 - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - -agOnt:edge_CVE-2014-0750_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -aml_ontology:hasEIInv - a owl:ObjectProperty . - -amlImp:ie_Program_89b2c13b-7614-4964-be85-6d9d8505fecc - a amlImp:PLCProgram , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Program" ; - amlImp:hasKnowHowProtection "True" . - -amlImp:ie_020RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B5B00000321A - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "020RB_100_KR240R2700prime__Schlitten" ; - aml_ontology:hasEI amlImp:ei_Attachment_Schlitten_1EA0D29E-7FB7-43A9-BB88-FD03CDDF9B42 , amlImp:ei_Attachment_COLLADA_Schlitten_C0461D83-55DA-4498-BF09-C7662CCBE621 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033C0 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_A6B2E11C-BBFD-4248-88A8-A606164886B2 . - -agOnt:edge_CVE-2019-6833_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -amlImp:ei_Attachment_COLLADA_030RB_100_tool_2_couple_sim_D23BC94E-1BF7-4B26-8E15-373E34E82619 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_tool_2_couple_sim" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030RB_100_tool_2_couple_sim"^^rdfs:Literal . - -amlImp:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 - a owl:NamedIndividual , amlImp:Switch ; - rdfs:comment "InternalElement" ; - rdfs:label "ScalanceX414-3e-1" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , amlImp:ie_WHARTGW1_d3669fd5-544a-4b9b-a960-6b08c6aead4f , amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , amlImp:ie_ScalanceX414-3e-1Safety_916ee601-f2c8-4319-a5c3-cd3f99e5431c ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "scalance_x414-3e_firmware" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "2.1.1" ; - aml_ontology:hasIE amlImp:ie_Portlist_258962d3-f118-4c36-b219-fdf01b457dce . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_Portlist_8961baa4-008f-4e8f-a746-d08c6e4bd536 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_WirelessInterface1_a3ff8a82-d3c1-40c8-b02c-5a622c97750c . - -amlImp:hasCpePart a owl:DatatypeProperty ; - rdfs:range xsd:string . - -agOnt:edge_CVE-2013-2823_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a owl:NamedIndividual , amlImp:PLC ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71516F_3" ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "simatic_s7-1516f-3_pn\\/dp_cpu" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_LogicalPortList_c4d32fb7-0a28-4099-a8fa-0db23d405d51 , amlImp:ie_Portlist_1f911931-56ba-4bb6-8abf-53e73b46c9f7 , amlImp:ie_Program_4971dccf-ad4c-4770-b809-518f1e2ea099 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2017-3169_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3169 . - -amlImp:ie_LogicalPortList_90c47391-c2fd-40b9-9dc0-1ab2f2524e08 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet_7e7fba22-6784-4256-a18e-9699fe75df70 . - -amlImp:Frame a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Frame" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -amlImp:ei_Representation_DCD42D09-0521-4D8B-8260-0871A90200E6 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae" . - -amlImp:ei_Representation_3A0D834D-98AB-48FC-BCFF-86410CE25B87 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa" . - -amlImp:ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F6 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "T510198_7_A2136160067" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_A2136160067_31018FA2-9918-452F-9C65-0EAF670D5D6C , amlImp:ei_Attachment_A2136160067_FAFD2953-C493-4F91-B269-E4ED7B1D530B . - -amlImp:ie_030SWZ121_Tool1_AF138E59-0000-17AC-556E-B8A900003275 - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ121_Tool1" ; - amlImp:hasFrame_rx "180"^^rdfs:Literal ; - amlImp:hasFrame_ry "-45"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.152"^^rdfs:Literal ; - amlImp:hasFrame_y "0.3705"^^rdfs:Literal ; - amlImp:hasFrame_z "0.8468"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool1_70506433-100A-49AF-8D7E-0C07DAA4A8CD , amlImp:ei_Attachment_COLLADA_Tool1_EEE9B392-8D3C-4478-A063-79DCB7E2301F . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire12 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket12" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_fc9888b3-6263-465f-b6e8-59a408c705f3 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket12_eedd7431-8f9c-45a7-8195-d01a4c446656 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC50000033A8 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.2" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-17.05"^^rdfs:Literal ; - amlImp:hasFrame_y "8.5"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:Basic256 a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Basic256" ; - rdfs:subClassOf amlImp:OPCUASecurityPolicy . - -secont:CVE-2013-3957 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-3957"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ei_Attachment_COLLADA_Roboterposition_Stellung_A_6BFD39F9-8C6E-4EF7-89A6-F0E409A3E0DA - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Roboterposition_Stellung_A" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schlitten_Product.dae#Schlitten" ; - amlImp:hasTarget "./Schlitten_FrameOfInterest_Roboterposition_Stellung_A"^^rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug2_d2968eb1-85a0-4898-bbd3-3497cdde065d - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ie_KukaMotorWire4_77b68f44-01a4-46fd-806f-94287e36d9c0 - a amlImp:MotorWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaMotorWire4" ; - aml_ontology:hasEI amlImp:ei_MotorPlug2_77af8496-b3af-4e27-86b0-0fdf30cc9e0f , amlImp:ei_MotorPlug1_78aef019-703a-4d0e-a682-17955c9bb45c . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -amlImp:ie_040ABS100_Design1_AF138E59-0000-17AC-556E-BC4600003333 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "040ABS100_Design1" ; - amlImp:hasFrame_rx "-180"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.225"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.13"^^rdfs:Literal ; - amlImp:hasFrame_z "1.37"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Design1_2507C6B5-758F-4EF6-A3B9-E703DCB16513 . - -icsSecOnt:Hazard_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f . - -agOnt:edge_UntrustedCrossZoneConnection_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_CVE-2013-2811_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_CVE-2014-0751_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_Attachment_COLLADA_Tool1_EEE9B392-8D3C-4478-A063-79DCB7E2301F - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin" ; - amlImp:hasTarget "./F266820012936_x_zange_kin_FrameOfInterest_Tool1"^^rdfs:Literal . - -agOnt:edge_CVE-2014-0750_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ei_Process_c07c3906-8d6a-4bf5-b727-2dee27caeec2 - a amlImp:PPRConnector , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Process" . - -amlImp:MotionController - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "MotionController" ; - rdfs:subClassOf amlImp:ControlEquipment . - -amlImp:PPRConnector a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "PPRConnector" ; - rdfs:subClassOf amlImp:AutomationMLBaseInterface . - -amlImp:ei_LogicalEndpointOPC_8910bbbb-0cda-46c5-8a5e-550068c82931 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - -amlImp:ie_030WZA180_030SWZ121_BHF_AF138E59-0000-17AC-556E-B8B300003280 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_030SWZ121_BHF" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030SWZ121_BHF_601B6485-CF44-4919-B11B-93BC3FE21DBB , amlImp:ei_Attachment_030SWZ121_BHF_263FA9E4-E35A-4BAB-AC88-CAF74219E3F8 . - -agOnt:edge_CVE-2013-0677_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0677 . - -amlImp:ie_030WZD121_AF138E59-0000-17AC-556E-B8A900003277 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD121" ; - amlImp:hasFrame_rx "270"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-6.025"^^rdfs:Literal ; - amlImp:hasFrame_y "6.8"^^rdfs:Literal ; - amlImp:hasFrame_z "1.212946"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_030WZD121_030SWZ121_AF138E59-0000-17AC-556E-B8A900003278 , amlImp:ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B8A900003279 . - -amlImp:ei_Representation_3FE655E7-FEF8-4A71-B14C-38DB1602545B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:ie_030WZD180_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B85100003267 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD180_030RB_100_KR240R2700prime_" ; - aml_ontology:hasEI amlImp:ei_Attachment_030RB_100_KR240R2700prime__8BC86E1D-3F3D-4855-AAC7-BF9A8EA79675 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_Representation_A01832C3-2C2E-4687-A615-0F8AB2364ABC - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire3 EthernetPlug2 - SCADA ScalanceX414-3e-1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_30cee2f3-26c5-496b-ae7c-b8caf2aa0353 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_2d23b693-4fdd-45f5-8541-22dfd91ad4b6 . - -amlImp:ei_LogicalEndpointPROFIsafe_ae854efb-9d6b-4b00-a4da-247eaf736f6f - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - -amlImp:ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC50000033B3 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.14" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-23.8"^^rdfs:Literal ; - amlImp:hasFrame_y "1.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4C0000338B - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.4" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "1.7"^^rdfs:Literal ; - amlImp:hasFrame_y "2.9"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338C , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338D . - -agOnt:edge_CVE-2016-2200_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "InternalLink Resource - Product" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Product_29421e10-831f-4fa1-85b0-81bb0687145c ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Resource_b660c4ab-0b21-4a62-b0bb-e5b8ae843e35 . - -amlImp:ie_030GES190_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B8B40000328F - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES190_030RB_100_KR240R2700prime_" ; - aml_ontology:hasEI amlImp:ei_Attachment_030RB_100_KR240R2700prime__D0EC1411-8E0B-4A32-8AE3-6E309ABA9A80 . - -agOnt:edge_CVE-2012-3028_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3028 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_010GRF141_Tool1_AF138E59-0000-17AC-556E-B56E000031EF - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_Tool1" ; - amlImp:hasFrame_rx "-180"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "1.354"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.015"^^rdfs:Literal ; - amlImp:hasFrame_z "0.613949"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool1_0F420D64-D074-49B3-96C2-6DD195919A40 , amlImp:ei_Attachment_COLLADA_Tool1_452A16D7-870E-436F-BE16-55F16F085814 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -icsSecOnt:Hazard_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 . - -amlImp:ie_010GRF141_010GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B56E000031F1 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_010GRF141_A2136160067_SFK-HAB-010" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_010GRF141_A2136160067_SFK-HAB-010_FA5D9D6D-A851-462E-AC91-9D5E453B7B18 , amlImp:ei_Attachment_010GRF141_A2136160067_SFK-HAB-010_E437BD91-8747-4672-8EC5-4729DB803E0A . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Attachment_COLLADA_030WZD180_9F9EFDD9-AE2A-4D9E-8C0A-525EB3F51B89 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD180" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_030WZD180"^^rdfs:Literal . - -amlImp:ie_030WZA181_AF138E59-0000-17AC-556E-B8B300003284 - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.7"^^rdfs:Literal ; - amlImp:hasFrame_y "7.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_BAB90778-2C84-4FF7-A237-89686A4B9A36 ; - aml_ontology:hasIE amlImp:ie_030WZA181_Tool2_AF138E59-0000-17AC-556E-B8B400003289 , amlImp:ie_030WZA181_030RB_100_tool_2_couple_sim_AF138E59-0000-17AC-556E-B8B40000328C , amlImp:ie_030WZA181_Base1_AF138E59-0000-17AC-556E-B8B400003287 , amlImp:ie_030WZA181_Tool1_AF138E59-0000-17AC-556E-B8B400003288 , amlImp:ie_030WZA181_030WZD111_BHF_AF138E59-0000-17AC-556E-B8B40000328B , amlImp:ie_030WZA181_030FG_111_BHF_AF138E59-0000-17AC-556E-B8B40000328A , amlImp:ie_030WZA181_030RB_100_tool_2_decouple_sim_AF138E59-0000-17AC-556E-B8B40000328D . - -amlImp:ei_Attachment_KRxxxRultra_6_1_96B9C12E-D951-4BCF-908B-077CA5F64A77 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - -agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:vertex_has_Edge agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_UnusedOpenPort_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2013-2785_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2014-0750_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2014-2355_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2013-2811_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2019-6833_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2014-0751_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2013-2823_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:vertex_has_Weight 8.0e0 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_010GRF141_757D522F-C309-4297-AA3B-96641AE6DBA5 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010GRF141" . - -agOnt:edge_CVE-2013-2811_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire1 EthernetPlug1 - Business CiscoFirewall EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_5aebb503-e90c-4b74-9607-8531a6743be6 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_cc03190d-ad77-410a-87c6-ce5e32fe5894 . - -agOnt:edge_CVE-2014-0750_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B84F0000325E - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0.24"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_ToolMountPoint_AB206F11-B326-46BD-8B6D-0354EAEE9069 , amlImp:ei_Attachment_ToolMountPoint_0CB06EF6-7AF0-47C8-A867-415241BC9748 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -icsSecOnt:Product owl:equivalentClass amlImp:Product . - -amlImp:ei_Attachment_020GRF141_A2136160067_SFK_HAB_010_91A891CA-B49D-4A08-A06D-C4828DE4079E - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020GRF141_A2136160067_SFK_HAB_010" . - -amlImp:ei_EthernetSocket1_bda9ab9d-a3e8-4753-8a32-2f460711e08c - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2014-5074_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_EthernetSocket4_47f2bfca-7a36-4ae8-b955-b5aa88e734b8 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - -agOnt:edge_CVE-2014-1961_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-1961 . - -secont:CVE-2004-0551 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2004-0551"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_CiscoCatalystSwitch_afcb7be1-18d8-4789-804c-fb80a97a29c2 . - -amlImp:ei_Attachment_COLLADA_ToolMountPoint_06A4CCB6-5171-4A64-B5A8-2C0B12D6A2B1 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Tuer_re.1_Product.dae#Tuer_re.1" ; - amlImp:hasTarget "./Tuer_re.1_FrameOfInterest_ToolMountPoint"^^rdfs:Literal . - -amlImp:ei_EthernetSocket3_c3e33c4a-bb75-4f10-9720-c8eea6ef90c9 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -secont:CVE-2019-0282 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-0282"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 . - -amlImp:ei_Representation_74228306-7229-4E67-B3A7-66FA39D6BC9D - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection3 LogicalEndpointProfinet1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 LogicalEndpointProfinet" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointProfinet1_01e828d3-97b1-4667-ab52-12b568cea9da ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointProfinet_67a0e8e3-f5f9-4a69-bf63-cc6e05f9a6b3 . - -amlImp:Attachment_KRxxxRultra.6.1_010GRF141 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_010GRF141" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_010GRF141_757D522F-C309-4297-AA3B-96641AE6DBA5 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_KRxxxRultra_6_1_E0F4BB71-0B46-47F7-8EAB-DA15C1B77344 . - -agOnt:edge_CVE-2019-6833_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ei_EthernetSocket1_693e5301-37c0-4168-8f29-0908cb40c024 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2013-3957_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-3957 . - -amlImp:ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC4C00003374 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.15" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.2"^^rdfs:Literal ; - amlImp:hasFrame_y "8.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003375 , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003376 . - -amlImp:ei_EthernetSocket1_a92c7873-0a07-4694-92eb-4e5afa8851a4 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire5 EthernetPlug1 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ScalanceX414-3e-1 EthernetSocket5" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_4df91bcd-c9cc-4e47-b28c-d78e2c9b870f ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket5_7341e507-7cca-4692-90d1-7efca1a55850 . - -agOnt:edge_CVE-2014-5074_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -secont:CVE-2013-6822 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-6822"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "10.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_EthernetWire3_7e567996-bba2-43c4-b020-2912c02221dd - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_30cee2f3-26c5-496b-ae7c-b8caf2aa0353 , amlImp:ei_EthernetPlug1_272ee7e2-353b-41fc-a03e-38168d7b4a7f . - -agOnt:edge_CVE-2019-6833_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug1_a611ffbd-b94a-466a-a224-cb2ffdd51793 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire7 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 KRC4 EthernetSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_44569ec8-9862-4ac2-baf2-96a40bbd168b ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket_3e5cccb8-098e-4e8c-b66d-0c17f7a536ca . - -amlImp:ie_Schutzzaun_2000x2000.21_AF138E59-0000-17AC-556E-BC50000033B8 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.21" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-10.5"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033B9 , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BA . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2015-8840_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2015-8840 . - -amlImp:ie_T510198_7_AF138E59-0000-17AC-556E-B56E000031F5 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "T510198_7" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0.168859"^^rdfs:Literal ; - amlImp:hasFrame_y "-4.851487"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_7D3F9BC8-12C1-47CF-988E-CB99906F0A1B ; - aml_ontology:hasIE amlImp:ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F7 , amlImp:ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F6 . - -amlImp:ie_F19732000122019015600_001_zb_gestell_fa.1_AF138E59-0000-17AC-556E-B961000032D7 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19732000122019015600_001_zb_gestell_fa.1" ; - aml_ontology:hasEI amlImp:ei_Representation_E91B6FE9-D465-46DA-956F-59ABD2603DA9 . - -amlImp:ei_MotorPlug2_462600ad-7698-4968-9f3b-7f38052a6fc5 - a amlImp:MotorPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug2" . - -amlImp:ie_Portlist_c5d58e92-b6d1-4239-afac-68cfeab5cf18 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket3_6e7d59c5-d96e-4e5b-814f-e94c5858faea , amlImp:ei_EthernetSocket2_7db774dd-f913-4c9e-a710-881a4adf8731 , amlImp:ei_EthernetSocket1_2f28d804-7a56-424f-b7b7-27e66f84eb16 . - -agOnt:edge_CVE-2013-0674_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0674 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2811_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_CVE-2017-9798_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9798 . - -agOnt:edge_CVE-2013-2823_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2012-3030_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3030 . - -agOnt:edge_CVE-2015-5067_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2015-5067 . - -amlImp:ei_Representation_2E1271DE-F7D1-4D88-BD9D-619D9550B886 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:PROFIsafe a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PROFIsafe" ; - rdfs:subClassOf amlImp:Protocol . - -amlImp:hasCpeVersion a owl:DatatypeProperty ; - rdfs:range xsd:string . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetSocket1_cb93258e-84a8-49b8-b7fd-63ee9eeba5b2 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ei_EthernetPlug1_0b0f750d-a2fd-4a30-94d6-55f0562317c5 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection4 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 LogicalEndpointPROFIsafe" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointPROFIsafe1_eafdfbba-1d80-48a8-b74b-3b27aaf71c8b ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointPROFIsafe_429d1ee7-4e79-4657-a6d7-dd469a9b4a87 . - -secont:CVE-2015-8840 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2015-8840"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -agOnt:edge_CVE-2014-4685_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4685 . - -amlImp:ie_Portlist_5a5e5376-5105-4d5b-bae4-0e21a9f428ce - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_89571e9b-e0f0-4856-b72a-7897ae1cf7ad . - -agOnt:edge_CVE-2013-2785_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ei_EthernetSocket1_a02963d4-9d31-4dc2-98ff-239192d33803 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -icsSecOnt:NotSeparatedTemporarilyConnectedDevice - secont:vulnerability_on_Asset amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a . - -agOnt:edge_CVE-2013-2785_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ie_Portlist_a58da2cd-c3fd-4ea3-a5f1-8201c54f7a3c - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_311a9abc-3c8e-4675-a111-fd30738f2732 . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_010GRF141_A2136160067_SFK-HAB-010_E437BD91-8747-4672-8EC5-4729DB803E0A - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010GRF141_A2136160067_SFK-HAB-010" . - -amlImp:MotorWire a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "MotorWire" ; - rdfs:subClassOf amlImp:Wire . - -amlImp:ie_SimaticProcessHistorian_438e202e-e43f-49c8-a237-a81d8e87ad40 - a owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticProcessHistorian" . - -amlImp:ei_Attachment_KRxxxRultra_6_1_13C77DE5-A517-4144-A4B8-ABA4916BE7D1 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - -amlImp:ei_Attachment_OKF_Dehnfuge_24B3773A-0C05-4DA0-8F9D-05B0E1A968DF - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_OKF_Dehnfuge" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire3 EthernetPlug2 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_bb270613-e7f8-4c44-83a0-090b1003040d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_4e373d26-b42d-4b7d-9b6b-eaf79f97a56f . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_EthernetSocket3_2839194e-f970-4f48-9510-c8dd9d7c78f5 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -amlImp:ei_EthernetPlug2_efd46995-ca03-4bf4-9491-086d617a3f0f - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_5A55ABE0-BD31-4E1F-9E07-E06618B9274A - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4" ; - amlImp:hasTarget "./saferobotparts-Tool1_4_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal . - -amlImp:ei_Representation_0BF1708F-EE3C-4E4E-8BC3-13B2334D5AE2 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Zaunelement_775mm_Rep.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire5 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 EthernetSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_19f6da58-3759-4fa3-a5e4-b3dc3b49e58b ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket_ebfabd7d-e0a0-425d-979f-88e726ba20cc . - -icsSecOnt:Hazard_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 . - -amlImp:ie_030GRF341_Base1_AF138E59-0000-17AC-556E-BC010000330C - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_Base1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.1"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Base1_19B93A9A-461C-4370-A9C5-D2EB7EE44373 , amlImp:ei_Attachment_Base1_8B5992AA-AD9F-4022-83D2-AFE89FDBA3F1 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b - a owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ApacheHttpServer" ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "http_server" ; - amlImp:hasCpeVendor "apache" ; - amlImp:hasCpeVersion "2.4.17" . - -amlImp:ei_Representation_9628D4AC-CF41-4793-9AD2-42CF76B38842 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - -agOnt:edge_UnusedOpenPort_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:ei_EthernetPlug2_2eb48f3e-95ff-459f-a252-3338bb312a91 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_COLLADA_Roboterposition_Stellung_A_B8E999EC-E6C7-4203-981B-45D1993E6384 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Roboterposition_Stellung_A" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schlitten_1_Product.dae#Schlitten_1" ; - amlImp:hasTarget "./Schlitten_1_FrameOfInterest_Roboterposition_Stellung_A"^^rdfs:Literal . - -amlImp:ie_SimaticIT_ce9c09d1-f671-4eb0-9d22-c0106e731b6f - a owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticIT" ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "simatic_it_uadm" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Basic128RSA15_b46c3d9c-712b-4044-aa7b-eba4e1c8200e . - -amlImp:ei_Representation_A53433C2-43AC-4BC1-9667-491E627DAFDD - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003368 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_1C035F95-FD10-4A4D-AF28-C5DB3927A5C2 . - -amlImp:hasCpeProduct a owl:DatatypeProperty ; - rdfs:range xsd:string . - -amlImp:ie_CiscoCatalystSwitch_754502d8-ae61-4226-b3ca-e9f30563bfba - a amlImp:Switch , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoCatalystSwitch" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , amlImp:ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b , amlImp:ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , amlImp:ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "catalyst_2820" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_05aab978-bf3d-467f-b16f-a60ff74a5837 . - -amlImp:WirelessHARTSensor - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "WirelessHARTSensor" ; - rdfs:subClassOf amlImp:Host . - -agOnt:edge_CVE-2016-2201_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_EthernetPlug2_de1a769d-17aa-4add-a68a-b41e728abac1 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ei_EthernetPlug1_4df91bcd-c9cc-4e47-b28c-d78e2c9b870f - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_CVE-2016-2201_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2013-2811_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_CVE-2019-6833_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -amlImp:ie_KRxxxRultra.6.1_030GRF341_AF138E59-0000-17AC-556E-B99B000032F7 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_030GRF341" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030GRF341_24723857-915E-4B7C-9F83-52228D12256D , amlImp:ei_Attachment_030GRF341_6A8D3042-7201-49F5-AB08-41CF66605261 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC4B0000334C - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.3" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.6"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334E , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334D . - -amlImp:ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC4C0000338E - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.9" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "1.7"^^rdfs:Literal ; - amlImp:hasFrame_y "1.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338F , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003390 . - -amlImp:ei_LogicalEndpointProfinet_7e7fba22-6784-4256-a18e-9699fe75df70 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - -agOnt:edge_UnusedOpenPort_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_CVE-2016-2200_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_EthernetPlug1_3ce929fc-cb81-4ddd-90c4-566a8dc9d524 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_CVE-2019-10092_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10092 . - -icsSecOnt:Hazard_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 . - -agOnt:edge_CVE-2019-6833_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -icsSecOnt:Protocol owl:equivalentClass - amlImp:Protocol . - -secont:IPBreach_ie_Program_89b2c13b-7614-4964-be85-6d9d8505fecc - a secont:IPBreach ; - secont:consequence_impacts_Asset - amlImp:ie_Program_89b2c13b-7614-4964-be85-6d9d8505fecc . - -agOnt:edge_CVE-2016-2200_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection2 LogicalEndpointProfinet2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_200 SimaticS71516F LogicalEndpointProfinet" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointProfinet2_302e1abe-af1d-4e16-b0ab-43d7eeac5082 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointProfinet_4f19c87a-fc28-4fc3-a41f-4a1089481412 . - -amlImp:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Tool1_AF138E59-0000-17AC-556E-B95D000032D0 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19704000046499800797_001_cgr_klebepistole_030rb300.1_Tool1" ; - amlImp:hasFrame_rx "-180"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0.082"^^rdfs:Literal ; - amlImp:hasFrame_z "-0.415346"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Tool1_C48383DD-D80D-41A9-BC36-3DCA3D842219 , amlImp:ei_Attachment_Tool1_DFF80166-206E-4E3F-B82B-8198DD9DBD56 . - -amlImp:ei_Representation_087655E1-F357-4975-AA12-F085961CF310 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/SafeRobotParts_1_Product.dae#SafeRobotParts_1" . - -amlImp:ei_Representation_CE825AD5-1C99-47E2-B0F9-5F12D304C94C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:ie_Portlist_3336a3ca-fd3b-4277-b611-02b7a7a4d9af - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_34fe9386-a622-4165-a63b-62fe8c8ee1d6 . - -agOnt:edge_InsecureProtocolUsed_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2785_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240 - a owl:NamedIndividual , amlImp:Robot ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100_KR240R2700prime_" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.4"^^rdfs:Literal ; - amlImp:hasFrame_y "7.6"^^rdfs:Literal ; - amlImp:hasFrame_z "1"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_07776E94-CC26-4508-ACBF-4405ED336E6F ; - aml_ontology:hasIE amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F0000325B , amlImp:ie_030RB_100_KR240R2700prime__030WZD180_AF138E59-0000-17AC-556E-B84F0000325A , amlImp:ie_Portlist_bd1d02e1-de6e-43c1-8d50-d0d5d306e4af , amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B84F0000325F , amlImp:ie_030RB_100_KR240R2700prime__030GES190_AF138E59-0000-17AC-556E-B84F00003259 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_CVE-2014-0751_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -agOnt:edge_CVE-2012-3034_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3034 . - -amlImp:HTTPS a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "HTTPS" ; - rdfs:subClassOf amlImp:Protocol . - -agOnt:edge_CVE-2016-2201_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_030WZD111_030FG_111_AF138E59-0000-17AC-556E-B88800003271 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD111_030FG_111" ; - aml_ontology:hasEI amlImp:ei_Attachment_030FG_111_A239FC93-5FA9-48B5-9AEC-66B1AD6974A3 . - -amlImp:ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC4B0000334F - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.4" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-3.6"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003351 , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003350 . - -amlImp:ei_Attachment_COLLADA_Zentrierstift1_54344EDF-F3C3-4B90-A2EF-96E3BC92A342 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Zentrierstift1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Zentrierstift1"^^rdfs:Literal . - -amlImp:ie_LogicalNetwork_4f912794-d068-4f41-91cf-5359fe0e2853 - a amlImp:LogicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" ; - aml_ontology:hasIE amlImp:ie_LogicalPROFIsafeConnection3_006ef612-4c52-453d-b7e1-aec4495f466d , amlImp:ie_LogicalProfinetConnection3_c5f12a8c-b961-4964-bbce-af3e03554cdb , amlImp:ie_LogicalOPCConnection1_d8bf6b53-42b3-49c5-b7af-fb9cd1421b7e , amlImp:ie_LogicalOPCConnection2_29b6c100-4d64-4fe1-bcb2-9931b8507340 , amlImp:ie_LogicalOPCConnection4_a8913465-7d73-4954-8f16-179ecab519ca , amlImp:ie_LogicalProfinetConnection1_80352a47-7bae-44f1-ac8a-85d45a6d6944 , amlImp:ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 , amlImp:ie_LogicalPROFIsafeConnection2_3cb44b24-52c4-44a8-9be6-f33770e5a0ba , amlImp:ie_LogicalPROFIsafeConnection4_5b372b58-cbf9-4654-b2ac-9355d4ffd47a , amlImp:ie_LogicalPROFIsafeConnection1_87d514a1-25b5-4ba4-9908-d9c000631b75 , amlImp:ie_LogicalOPCConnection3_589a1171-805e-4e15-8306-df9b2ed5eba2 , amlImp:ie_LogicalProfinetConnection2_927b3231-91ab-4cb2-835f-f6bc3cb638aa , amlImp:ie_LogicalProfinetConnection4_25615c2d-21e4-4624-9ee6-ac04a596e3e1 . - -amlImp:ie_030WZA181_030WZD111_BHF_AF138E59-0000-17AC-556E-B8B40000328B - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_030WZD111_BHF" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030WZD111_BHF_2487E0DE-6A8B-423A-ACF3-A98105130DDD , amlImp:ei_Attachment_030WZD111_BHF_066212E0-98C1-4944-B03E-A5DB727A9630 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire4 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket4" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_d820150e-51ac-4d9b-af41-7a8397b05d13 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket4_c1e9b84e-e655-4dff-aa82-866445a091a3 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_Tool1_79B3FED3-C436-4745-8468-5D0654E01CC3 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - -agOnt:edge_CVE-2016-2200_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_Portlist_dc967453-2785-4472-8f12-e9c4cc7c7701 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_WirelessInterface1_a3d5bb25-f7f2-4c20-8cbc-9ce7f8115a34 . - -amlImp:ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC4C0000337A - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.17" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-9.2"^^rdfs:Literal ; - amlImp:hasFrame_y "8.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337C , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337B . - -amlImp:ei_LogicInterfaceTimingDiagram_d1622fae-7da4-49f0-b458-91d7ee25628c - a amlImp:SequencingLogicInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicInterfaceTimingDiagram" ; - amlImp:hasRefURI "file:///LogicXML/Sequencing_Clamp_Timing_AMLextensions.xml#UUID_001" . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a owl:NamedIndividual , amlImp:PLC , amlImp:SIS ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71510SPF1PN3" ; - amlImp:hasCpePart "o" ; - amlImp:hasCpeProduct "simatic_s7-1500_cpu_firmware" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "1.8.2" ; - aml_ontology:hasIE amlImp:ie_Portlist_dafd7fbd-360d-4f1e-aa61-1a4afbd5de05 , amlImp:ie_LogicalPortList_bbc6d915-4d60-4b47-978e-5307bf4de171 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_010ABS100_020RB_100_BH_020R1_010_W_AF138E59-0000-17AC-556E-B57B000031FE - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010ABS100_020RB_100_BH_020R1_010_W" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_020RB_100_BH_020R1_010_W_DC79E57B-40BE-4404-811E-A8A2CFC0E0BE , amlImp:ei_Attachment_020RB_100_BH_020R1_010_W_72D81248-6CC6-4A1C-BDAB-AB7EC677819F . - -amlImp:PhysicalNetwork - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PhysicalNetwork" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -amlImp:ie_Portlist_950a09af-e9d7-4f21-8acb-d46771e2f634 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_fc47c0ff-3e24-405a-a852-953b71ee65b6 . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_LogicalOPCConnection4_a8913465-7d73-4954-8f16-179ecab519ca - a amlImp:OPC , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection4" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC2_12c24e84-be9a-4e36-b7a9-7b2ad751cfe6 , amlImp:ei_LogicalEndpointOPC1_5c88241e-d581-45e0-990e-4ac58c6de838 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_030GST100_020RB_100_BA_020R1_030_W_AF138E59-0000-17AC-556E-BC4600003329 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_020RB_100_BA_020R1_030_W" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_020RB_100_BA_020R1_030_W_8DC9CD04-338E-4FF9-B364-F1D6F49107C9 , amlImp:ei_Attachment_020RB_100_BA_020R1_030_W_FD80D8AF-19F0-44A7-8D4D-66E43BD206FA . - -amlImp:ei_WirelessPlug2_911e7a2c-6199-4496-b4dd-a431ae2ab086 - a amlImp:WirelessPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug2" . - -amlImp:ie_LogicalPortList_17feba5e-563a-40f5-88df-22bf61dbdfe5 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointHTTP-2_bcd4438c-0472-4144-b5b3-3e05ed6bb1d2 , amlImp:ei_LogicalEndpointHTTP-1_27371c00-7ffc-4820-b129-c971d5e6a739 . - -amlImp:ei_Representation_F54AAF7A-DC11-4E0B-BEA0-A764532134B3 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_A_AF138E59-0000-17AC-556E-BC4900003345 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "A" ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003391 , amlImp:ie_Schutzgittertuer.1_AF138E59-0000-17AC-556E-BC4E00003393 , amlImp:ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC4B00003349 , amlImp:ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC4C00003385 , amlImp:ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC4C00003371 , amlImp:ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC4B0000334C , amlImp:ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC4C00003363 , amlImp:ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4C0000338B , amlImp:ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC4B00003357 , amlImp:ie_Einzelpfosten.1_AF138E59-0000-17AC-556E-BC4B00003352 , amlImp:ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC4B0000334F , amlImp:ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC4B0000335D , amlImp:ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC4C0000336E , amlImp:ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC4C00003388 , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003346 , amlImp:ie_Einzelpfosten.3_AF138E59-0000-17AC-556E-BC4C00003380 , amlImp:ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC4B00003354 , amlImp:ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC4C0000338E , amlImp:ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC4B0000335A , amlImp:ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC4C00003382 , amlImp:ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC4C00003377 , amlImp:ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC4C0000336B , amlImp:ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC4C00003374 , amlImp:ie_Einzelpfosten.2_AF138E59-0000-17AC-556E-BC4C00003369 , amlImp:ie_Schutzgittertuer.2_AF138E59-0000-17AC-556E-BC4F00003397 , amlImp:ie_Schutzzaun_2000x2000.18_AF138E59-0000-17AC-556E-BC4C0000337D , amlImp:ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC4C0000337A , amlImp:ie_Schutzzaun_2000x2000.10_AF138E59-0000-17AC-556E-BC4C00003360 , amlImp:ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC4C00003366 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-0751_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030WZA181_Base1_AF138E59-0000-17AC-556E-B8B400003287 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_Base1" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Base1_382D4282-542A-4B8E-888D-AA8F85A205D5 , amlImp:ei_Attachment_Base1_395CD38C-0C21-4183-B681-FE4A6B0F90ED . - -amlImp:Sensor a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Sensor" ; - rdfs:subClassOf amlImp:ControlEquipment . - -agOnt:edge_CVE-2014-0751_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_Attachment_Tool1_5430BF93-D571-414C-A5BF-FBA748F8BCA1 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - -agOnt:edge_CVE-2017-15715_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15715 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire4 EthernetPlug2 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN2 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_3341c300-495b-4800-a419-7786fb539101 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_a7278c83-fe80-4c1d-bb62-f78d3c568af8 . - -amlImp:ei_Representation_96A399E2-BBD1-4049-A1BE-4FD1F48BB85B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/JA01732_REV02_Product.dae" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_Attachment_Base1_466F8DA2-1F63-41EA-9808-DBC729F54146 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -amlImp:WirelessZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "WirelessZone" ; - rdfs:subClassOf amlImp:Zone . - -amlImp:ei_EthernetSocket_8186e078-1346-489f-baed-bfa4e8b524f3 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket" . - -amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a - a amlImp:MobileEngineeringWorkstation , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SIMATICFieldPGM6" ; - aml_ontology:hasIE amlImp:ie_Portlist_c4178773-3a15-4cd6-b0be-c1178808e8c6 . - -amlImp:ie_030GRF341_AF138E59-0000-17AC-556E-B99D00003303 - a amlImp:Clamp , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341" ; - amlImp:hasFrame_rx "-165.687"^^rdfs:Literal ; - amlImp:hasFrame_ry "-63.064"^^rdfs:Literal ; - amlImp:hasFrame_rz "72.646"^^rdfs:Literal ; - amlImp:hasFrame_x "-9.695639"^^rdfs:Literal ; - amlImp:hasFrame_y "4.780569"^^rdfs:Literal ; - amlImp:hasFrame_z "3.645245"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_64ABC105-24AC-4350-81D7-88966C99BF48 ; - aml_ontology:hasIE amlImp:ie_030GRF341_Base1_AF138E59-0000-17AC-556E-BC010000330C , amlImp:ie_030GRF341_030GRF341_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-BC010000330F , amlImp:ie_030GRF341_FZG0_AF138E59-0000-17AC-556E-BC010000330E , amlImp:ie_030GRF341_Zentrierstift1_AF138E59-0000-17AC-556E-BC010000330D , amlImp:ie_030GRF341_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-BC0100003310 . - -secont:BusinessInterruption_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f . - -amlImp:ei_LogicalEndpointOPC4_9a5396fa-80d9-438e-9700-75f3a7950fe1 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC4" . - -agOnt:edge_CVE-2017-15715_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15715 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C0000338F - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_9628D4AC-CF41-4793-9AD2-42CF76B38842 . - -aml_ontology:hasIE a owl:ObjectProperty ; - owl:inverseOf aml_ontology:hasIEInv . - -amlImp:ei_Attachment_COLLADA_Base1_E8C48DD4-8B87-425B-95A3-CC385AB5FACC - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1"^^rdfs:Literal . - -agOnt:edge_CVE-2013-0679_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0679 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection2 WirelessPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTSensor2 WirelessInterface1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_WirelessPlug2_a2d38962-e093-4d87-9399-5affac4a8bef ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_WirelessInterface1_a3d5bb25-f7f2-4c20-8cbc-9ce7f8115a34 . - -amlImp:ei_Representation_7ADA36A4-C4F9-48EE-8EFF-AD7AB1365BB5 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/drehen_fraeser_horizontal_Product.dae#drehen_fraeser_horizontal" . - -amlImp:ei_EthernetPlug2_3a0cd779-4358-4a4e-9e1d-760d88d9e968 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ie_PhysicalNetwork_9964d0eb-7748-42d0-8fb9-317c49c11ed2 - a owl:NamedIndividual , amlImp:PhysicalNetwork ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" ; - aml_ontology:hasIE amlImp:ie_EthernetWire2_a232a64a-dd48-48a6-824e-b641e7a2dc2a , amlImp:ie_EthernetWire5_d67ce17b-cfab-45b6-b824-f86f63316e39 , amlImp:ie_EthernetWire6_6a0aee9d-551a-4a18-b85b-ba2ed4d8fd37 , amlImp:ie_EthernetWire7_0514090c-642e-4641-8d27-88259f14c373 , amlImp:ie_EthernetWire4_3fc70458-d951-487d-8723-6f7523425134 , amlImp:ie_EthernetWire1_9975183e-3914-4352-9170-32ee457e7671 , amlImp:ie_EthernetWire3_661e424f-f88b-4502-b8b7-adc16bce1058 . - -agOnt:edge_CVE-2010-2904_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2010-2904 . - -agOnt:edge_CVE-2013-2785_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_CVE-2014-5074_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire4 EthernetPlug2 - OperationsSupport MES1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_87ef45da-2057-4860-974b-26d64f8d5f9d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_a45b3032-c03b-4410-80a0-8f69fe26fef2 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_Attachment_020GRF141_A18D9CBE-9454-4CA9-8D2E-3DCD3B9E7D44 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020GRF141" . - -agOnt:edge_CVE-2017-5372_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-5372 . - -amlImp:ei_Attachment_Fahrzeug0_4A1A7113-99AB-4CB7-AFDD-83D08D170D5E - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Fahrzeug0" . - -amlImp:ei_Representation_A28D9B44-DF73-480E-99AD-C2CC5E704FEE - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:ie_EthernetWire5Safety_bc0a7c8c-4372-4e43-9eef-9696da643bfb - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5Safety" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_9b8d99fd-42f3-44c1-956e-da53204c151b , amlImp:ei_EthernetPlug1_4df91bcd-c9cc-4e47-b28c-d78e2c9b870f . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire2 EthernetPlug2 - OperationsSupport CiscoCatalystSwitch EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_2ec69119-66c8-457e-8423-4ec33f099b20 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_6f2435d9-f622-4749-996c-379e9d87b83d . - -amlImp:ie_Schutzzaun_2000x2000.18_AF138E59-0000-17AC-556E-BC4C0000337D - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.18" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "-11.2"^^rdfs:Literal ; - amlImp:hasFrame_y "7.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337E , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000337F . - -amlImp:ei_EthernetPlug2_04e43dbe-c305-4ce7-9a37-6966bd003a17 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2013-2823_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 - a owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ApacheHttpServer" ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "http_server" ; - amlImp:hasCpeVendor "apache" ; - amlImp:hasCpeVersion "2.4.17" . - -amlImp:ei_EthernetPlug1_fa50852d-143d-4289-a134-18299f7896cc - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2016-2201_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UntrustedCrossZoneConnection_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2014-0750_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2016-2201_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2013-2823_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_UnusedOpenPort_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-5074_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-0751_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2811_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2785_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-2355_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2016-2200_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2019-6833_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-5074_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:vertex_has_Weight 0.0e0 . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_773AC0AC-DCD8-4BEA-B7D0-AB748A336E92 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire5 EthernetPlug2 - Business BusinessFileserver1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_d2968eb1-85a0-4898-bbd3-3497cdde065d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_e351e1b0-8e14-4fc5-b1b8-4d9a731afe5a . - -amlImp:ei_EthernetPlug2_f577cb67-8d22-43b5-9012-8b85b548bf81 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a amlImp:SCADASystem , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SIMATICWinCCSvr1" ; - secont:asset_logicallyConnectedTo_Asset - amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - aml_ontology:hasIE amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 , amlImp:ie_Portlist_253d3a90-679b-4e46-8ff3-eba6e376fae2 , amlImp:ie_LogicalPortList_58dd080a-5aac-41ce-b119-aef565a368ba . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -secont:CVE-2012-3030 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-3030"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ei_EthernetSocket3_818fe45b-1f74-4b1e-8a8f-71330e70eba1 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2012-2596_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2596 . - -amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_AFC183EC-AC69-49F7-B1A4-3F84C7EE8E2B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3" ; - amlImp:hasTarget "./saferobotparts-Tool1_3_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpriseDMZ WebserverEnterprise LogicalEndpointHTTP - EnterpriseDMZ LogicalNetwork LogicalHTTPConnection1 LogicalEndpointHTTP-1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointHTTP-1_b4d46f14-64ef-466b-86c3-3ab92e1d12eb ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointHTTP_2d9365fd-7a4f-46ec-aa7b-075c9969efc2 . - -agOnt:edge_CVE-2014-0750_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ei_EthernetPlug2_1614d03b-de78-4762-93d1-7ad27cf07fa6 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ie_030GES290_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B95D000032D2 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES290_030RB_200_KR240R2700prime_" ; - aml_ontology:hasEI amlImp:ei_Attachment_030RB_200_KR240R2700prime__DD6B4EE3-6C4C-417B-B452-2E1DC1544709 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection2 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN1 LogicalEndpointPROFIsafe" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointPROFIsafe2_eda94389-af6a-4f80-9526-294676019256 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointPROFIsafe_a2bd3329-93c3-4b76-9689-38069e140904 . - -agOnt:edge_UnusedOpenPort_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -secont:CVE-2019-0278 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-0278"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetSocket1_a2c82022-d2be-4355-8911-c826a52fc8b2 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2013-2811_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ei_Attachment_COLLADA_Tool1_452A16D7-870E-436F-BE16-55F16F085814 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Tool1"^^rdfs:Literal . - -amlImp:hasKnowHowProtection - a owl:DatatypeProperty ; - rdfs:domain amlImp:PLCProgram ; - rdfs:range xsd:string . - -amlImp:ei_EthernetSocket2_2aba6457-9137-470a-b03c-2ea7144890d6 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -amlImp:ei_LogicalEndpointProfinet_67a0e8e3-f5f9-4a69-bf63-cc6e05f9a6b3 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - -amlImp:PLCFacet a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PLCFacet" ; - rdfs:subClassOf amlImp:Facet . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_UnusedOpenPort_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:Structure a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Structure" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_UntrustedCrossZoneConnection_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ie_EthernetWire7_78a23eb7-42df-4fb3-99b1-6e755cd22659 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire7" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_046841d8-4a43-4d61-b003-35769f7e3992 , amlImp:ei_EthernetPlug1_9ac7da67-a7ec-4547-86fa-c7970ffc8cb9 . - -amlImp:ei_EthernetSocket14_6fa6d0d2-2b34-4115-a14d-18c5a224e54e - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket14" . - -amlImp:ei_EthernetSocket2_7db774dd-f913-4c9e-a710-881a4adf8731 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -agOnt:edge_CVE-2019-0337_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0337 . - -amlImp:ie_010RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B155000031CE - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010RB_100_KR240R2700prime__Schlitten" ; - aml_ontology:hasEI amlImp:ei_Attachment_Schlitten_FC5D79A1-AC60-478E-BCBA-D411F5E20323 , amlImp:ei_Attachment_COLLADA_Schlitten_E643F71E-4C00-4B8C-A690-F52BC12842F0 . - -agOnt:edge_CVE-2016-2201_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2014-2355_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:Link a owl:Class ; - owl:disjointWith amlImp:Conduit , amlImp:Wire , amlImp:Zone , amlImp:PortList , amlImp:OPCUASecurityPolicy , amlImp:Data , amlImp:Wireless , amlImp:Protocol , amlImp:Motor , amlImp:WirelessConnection , amlImp:AutomationMLBaseInterface , amlImp:LogicalPortList , amlImp:NetworkDevice , amlImp:Ethernet , amlImp:SecurityDevice , amlImp:Host , amlImp:LogicalEndpoint , amlImp:Program , amlImp:AutomationMLBaseRole . - -amlImp:WirelessInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "WirelessInterface" ; - rdfs:subClassOf amlImp:Wireless . - -agOnt:edge_CVE-2013-2785_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030WZD111_AF138E59-0000-17AC-556E-B88800003270 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD111" ; - amlImp:hasFrame_rx "4.499"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.366173"^^rdfs:Literal ; - amlImp:hasFrame_y "6.379494"^^rdfs:Literal ; - amlImp:hasFrame_z "2.420836"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_030WZD111_030FG_111_AF138E59-0000-17AC-556E-B88800003271 , amlImp:ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B88800003272 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:Wireless a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Wireless" . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug2_87ef45da-2057-4860-974b-26d64f8d5f9d - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_PortList_00db77a4-7602-4c98-b9c4-219895e316ee - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "PortList" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_a45b3032-c03b-4410-80a0-8f69fe26fef2 . - -amlImp:Loader a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Loader" ; - rdfs:subClassOf amlImp:Storage . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -secont:CVE-2014-4003 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-4003"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_010ABS100_Fahrzeug0_AF138E59-0000-17AC-556E-B57B000031FC - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010ABS100_Fahrzeug0" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "75"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.194684"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "3.486383"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Fahrzeug0_360DF559-36ED-4A15-9AB9-CA8BC0280E00 , amlImp:ei_Attachment_Fahrzeug0_4A1A7113-99AB-4CB7-AFDD-83D08D170D5E . - -amlImp:ei_Representation_A0F62C4D-A68D-4C23-9107-E7D8680DD97B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/SafeRobotParts_3_Product.dae#SafeRobotParts_3" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection3 LogicalEndpointProfinet1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_300 030RB_300 KRC4 LogicalEndpointProfinet" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointProfinet1_47666355-7eb2-485b-83b6-b7a83ae24175 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointProfinet_2d99c617-b230-4b96-be81-8108865806cc . - -agOnt:edge_UntrustedCrossZoneConnection_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -secont:CVE-2014-4061 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-4061"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a . - -amlImp:ei_Attachment_KRxxxRultra_6_1_4CF14346-938B-4150-9F7C-E47B7DCF7C6E - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire1 MotorPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 030RB_200_KR240R2700prime_ MotorSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_MotorPlug2_d1668324-4fcd-4002-9acb-5b6215fce49d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_MotorSocket_38a06c3f-ad69-4eed-9df0-d0320219f65a . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire3 EthernetPlug1 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ScalanceX414-3e-1 EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_527adc4b-3795-4165-83fc-dd38cafc1971 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_c3e33c4a-bb75-4f10-9720-c8eea6ef90c9 . - -icsSecOnt:Hazard_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 . - -agOnt:edge_CVE-2014-0750_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ei_LogicalEndpointOPC-UA-1_2f5fab35-8e99-45ff-ae56-4ac00b7144ea - a amlImp:LogicalEndpointOPC-UA , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-1" . - -amlImp:ProcessController - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ProcessController" ; - rdfs:subClassOf amlImp:Controller . - -aml_ontology:hasIEInv - a owl:ObjectProperty . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire12 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation SchneiderElectricXBTGT EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_a53e525a-9249-4c78-a32a-c3c10bd40034 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_881a9b51-6752-4aa8-8471-714015644adf . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection1 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN LogicalEndpointPROFIsafe" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointPROFIsafe2_08eb5c10-0f82-401f-b6b5-720988f25910 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointPROFIsafe_c0f1cf30-00cd-459b-aa62-2b9578daa128 . - -amlImp:DatagrammObject - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "DatagrammObject" ; - rdfs:subClassOf amlImp:Communication . - -amlImp:ie_020GRF141_AF138E59-0000-17AC-556E-B5B300003230 - a amlImp:Clamp , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141" ; - amlImp:hasFrame_rx "-121.11"^^rdfs:Literal ; - amlImp:hasFrame_ry "13.004"^^rdfs:Literal ; - amlImp:hasFrame_rz "-80.204"^^rdfs:Literal ; - amlImp:hasFrame_x "-6.940001"^^rdfs:Literal ; - amlImp:hasFrame_y "3.010911"^^rdfs:Literal ; - amlImp:hasFrame_z "3.625631"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_C7BA8C03-B866-4C9C-9AE0-40FE849CD27A ; - aml_ontology:hasIE amlImp:ie_020GRF141_Base1_AF138E59-0000-17AC-556E-B81A00003239 , amlImp:ie_020GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B81A0000323C , amlImp:ie_020GRF141_020GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B81A0000323D , amlImp:ie_020GRF141_Zentrierstift1_AF138E59-0000-17AC-556E-B81A0000323A , amlImp:ie_020GRF141_FZG0_AF138E59-0000-17AC-556E-B81A0000323B . - -amlImp:ei_EthernetSocket9_71125503-ca69-4789-8ab6-2c12a4068e8e - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket9" . - -amlImp:ie_WirelessConnection2_51229621-463f-4525-94d5-84f953a9f332 - a amlImp:WirelessConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WirelessConnection2" ; - aml_ontology:hasEI amlImp:ei_WirelessPlug2_a2d38962-e093-4d87-9399-5affac4a8bef , amlImp:ei_WirelessPlug1_3e07cf2a-89c0-4000-97fd-ff6fd3b3ba7a . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2019-10098_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10098 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Attachment_COLLADA_Fahrzeug0_D0245516-3DDF-4338-9D11-3A2A76E3FDB7 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Fahrzeug0" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - amlImp:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_FrameOfInterest_Fahrzeug0"^^rdfs:Literal . - -agOnt:edge_UntrustedCrossZoneConnection_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_InsecureProtocolUsed_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Portlist_1c18bca1-5045-4fc9-abd9-8e4acc8f71f2 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_17d6bbc4-df3d-4f05-9548-82e7227cf8bd . - -agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2014-5074_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2016-2200_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_UntrustedCrossZoneConnection_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-2355_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-0751_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2016-2200_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-5074_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2016-2201_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedWirelessDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2014-5074_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_UnusedOpenPort_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2013-2785_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NoPLCProgramCopyProtection_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2013-2811_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-0750_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2823_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2016-2201_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedWirelessDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2016-2201_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NoPLCProgramCopyProtection_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-5074_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2016-2200_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:vertex_has_Weight 8.0e0 . - -amlImp:ei_Representation_827A12D9-F83E-4276-8741-58ED0E848D0E - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Peripherie_A_Rep.dae" . - -amlImp:ie_030GES392_AF138E59-0000-17AC-556E-BC030000331A - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES392" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-150"^^rdfs:Literal ; - amlImp:hasFrame_x "-10.462436"^^rdfs:Literal ; - amlImp:hasFrame_y "6.29725"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_030GES392_Design1_AF138E59-0000-17AC-556E-BC030000331B , amlImp:ie_F197210000631025121_001_zb_hb_zangenstaender_21.1_AF138E59-0000-17AC-556E-BC030000331C . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2014-5074_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_EthernetPlug2_bb270613-e7f8-4c44-83a0-090b1003040d - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2016-8743_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8743 . - -amlImp:ei_Representation_EA6A0D28-0713-4FC5-B4BD-8109D6117526 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_LogicalPortList_8195fafc-e6e3-4cc2-aebc-9b75d1c95f5d - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC5_8e747187-913d-4635-bd1b-d64e683a0a21 , amlImp:ei_LogicalEndpointOPC4_9a5396fa-80d9-438e-9700-75f3a7950fe1 , amlImp:ei_LogicalEndpointOPC3_372ad0ad-1e08-45ea-899c-19d4009158e2 , amlImp:ei_LogicalEndpointOPC2_02e7b935-8067-4293-8748-0449c1144807 , amlImp:ei_LogicalEndpointOPC1_48993549-d4d0-4931-90b2-416e913174d0 . - -amlImp:ei_EthernetPlug2_ab091654-77cb-4680-bfd9-3a1651eaf59c - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2013-2785_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a amlImp:HMI , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SE_XBTGT1" ; - amlImp:hasCpePart "o" ; - amlImp:hasCpeProduct "xbtgh_firmware" ; - amlImp:hasCpeVendor "schneider-electric" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_dbc10847-03d6-44b2-92f4-4f0350ca8fe4 . - -amlImp:ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC4B00003354 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.6" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.3"^^rdfs:Literal ; - amlImp:hasFrame_y "1.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003356 , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003355 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Enterprise_ead68db0-74a6-4253-8e98-6b289de4cbf2 - a amlImp:EnterpriseZone , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Enterprise" ; - aml_ontology:hasIE amlImp:ie_PhysicalNetwork_5e71c71d-ade4-4d68-a3b0-755081652f71 , amlImp:ie_LogicalNetwork_d42e7daa-0610-4c16-a9b5-1ed176ea36f8 , amlImp:ie_Cisco1921Router_f63c0f61-7317-4a01-85f1-17cf3c457962 . - -amlImp:ie_Schaltschraenke_A_AF138E59-0000-17AC-556E-BC4800003336 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schaltschraenke_A" ; - aml_ontology:hasIE amlImp:ie_Dummy_SPS_AF138E59-0000-17AC-556E-BC4800003337 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_LogicalPortList_58dd080a-5aac-41ce-b119-aef565a368ba - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC_8910bbbb-0cda-46c5-8a5e-550068c82931 , amlImp:ei_LogicalEndpointOPC-UA_83524b62-a19a-4f1b-8038-23027d20c93c , amlImp:ei_LogicalEndpointModbus_81b74a1f-b305-470b-8c8c-d6bad9103441 . - -agOnt:edge_CVE-2015-5067_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2015-5067 . - -amlImp:ie_LogicalPortList_540da1cc-3d89-430b-9d7d-5763104d6c24 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet_4f19c87a-fc28-4fc3-a41f-4a1089481412 . - -amlImp:ei_Attachment_030WZD180_B71117BC-7C64-4EEA-B117-163BBF982EC8 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD180" . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003384 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_4983A3A2-9A99-476E-A259-DCC1CEDDDF55 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Portlist_1f911931-56ba-4bb6-8abf-53e73b46c9f7 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_328efddb-d056-40cb-b177-4674361be7be . - -amlImp:ie_Portlist_73aea3b9-26f1-43ef-adb4-2c78292ee5f5 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket2_b02527e7-57d7-46d0-8ec5-5332cb3400f8 , amlImp:ei_EthernetSocket1_2070bd6b-0107-425c-90e0-bfff8fd41c95 . - -aml_ontology:hasRefPartnerSideA - a owl:ObjectProperty . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_030FG_111_BHF_79059D91-AB04-4BB6-BA6E-AD38A33A9510 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030FG_111_BHF" . - -amlImp:LogicalEndpointHTTPS - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointHTTPS" ; - rdfs:subClassOf amlImp:LogicalEndpoint . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BA - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_BC7066CC-91E1-4984-95C6-7ABD53814C2F . - -icsSecOnt:Hazard_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f . - -agOnt:edge_CVE-2019-0283_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0283 . - -amlImp:SignalInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "SignalInterface" ; - rdfs:subClassOf amlImp:Communication . - -amlImp:ie_020GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B81A0000323C - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "020GRF141_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_4CF14346-938B-4150-9F7C-E47B7DCF7C6E , amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_6BB2D1F4-3AF8-486B-B6BD-F290485D0D7A . - -agOnt:edge_CVE-2014-2355_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire5 EthernetPlug2 - OperationsSupport SimaticFieldPGM6 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_d0199789-9c02-44fa-9f62-dfddb1d1a47d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_3ec77b75-860c-4856-a6b1-638136639ac8 . - - - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19732000122019015600_001_zb_gestell_fa~2.1" ; - aml_ontology:hasEI amlImp:ei_Representation_A5AE5EF4-AE56-428B-954D-92945F1BDAAE . - -amlImp:ei_Attachment_KRxxxRultra_6_1_8A4B1B26-AB6C-4B40-B204-AA82A5307F0D - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ei_Representation_96ECB4B5-6064-49F8-BA98-8E3D316FBA92 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2" . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2017-3167_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3167 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2201_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:IPC a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "IPC" ; - rdfs:subClassOf amlImp:ControlHardware . - -amlImp:ChainConveyor a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ChainConveyor" ; - rdfs:subClassOf amlImp:Conveyor . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-0750_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -agOnt:edge_CVE-2014-5074_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -secont:CVE-2001-0895 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2001-0895"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 . - -amlImp:ei_LogicalEndpointPROFIsafe2_7d57b69d-8413-4f16-8d00-339083413b5f - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe2" . - -amlImp:ei_LogicalEndpointPROFIsafe2_eda94389-af6a-4f80-9526-294676019256 - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe2" . - -amlImp:ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC4C00003371 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.3" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.2"^^rdfs:Literal ; - amlImp:hasFrame_y "7.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003372 , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003373 . - -amlImp:ie_EthernetWire1_90593190-f713-49cc-8bf8-5c74c9450d0f - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_315a8dee-4000-417c-bd0c-007f8c1e7e3e , amlImp:ei_EthernetPlug1_b9ff7173-3281-4b88-92a1-b38f5215cab9 . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ei_Attachment_COLLADA_030RB_100_FG_030R1_030_W_2CB795DD-500C-42F5-8C6D-A86537A6B141 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_FG_030R1_030_W" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - amlImp:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_FG_030R1_030_W"^^rdfs:Literal . - -secont:CVE-2018-17199 - a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2018-17199"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_Representation_D5A3A3BB-07C6-404F-9281-AA2781DBE9AF - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Foerdertechnik_Stoerkontur_A_Rep.dae" . - -agOnt:edge_CVE-2014-2355_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -agOnt:edge_CVE-2014-0750_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:vertex_ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154 ; - agOnt:vertex_has_Edge agOnt:edge_UntrustedCrossZoneConnection_ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_InsecureProtocolUsed_ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_ITOTCrossConnection_ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:vertex_has_Weight 0.0e0 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire2 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_5147fe00-748d-4b23-940f-95bfb75eb1c9 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_2aba6457-9137-470a-b03c-2ea7144890d6 . - -agOnt:edge_CVE-2017-3169_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3169 . - -amlImp:ei_EthernetSocket2_c5abb676-677e-46f5-be24-18907e30b6dc - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -amlImp:Unit a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Unit" ; - rdfs:subClassOf amlImp:ResourceStructure . - -amlImp:ie_EthernetWire4_75212180-e95c-412f-b10b-55cdc2da17fe - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_d1271e4c-b1b8-49b5-8fdd-504f6596f0da , amlImp:ei_EthernetPlug1_d820150e-51ac-4d9b-af41-7a8397b05d13 . - -amlImp:ei_Attachment_COLLADA_ToolMountPoint_AB206F11-B326-46BD-8B6D-0354EAEE9069 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_2_FrameOfInterest_ToolMountPoint"^^rdfs:Literal . - -agOnt:edge_CVE-2013-0674_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0674 . - -icsSecOnt:NoPLCProgramKnowHowProtection - secont:vulnerability_on_Asset amlImp:ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 . - -amlImp:ei_Attachment_Base1_F8739A90-E798-4779-849F-F774BB6A03B6 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:vertex_has_Edge agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_UnusedOpenPort_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2013-2785_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-2355_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2013-2811_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-0750_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-0751_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2013-2823_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_CVE-2019-6833_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:vertex_has_Weight 8.0e0 . - -agOnt:edge_CVE-2019-13929_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-13929 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection2 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_200 KRC4 LogicalEndpointPROFIsafe" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointPROFIsafe1_f03aad7a-9c5a-4f63-8261-c0d0d388e18a ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointPROFIsafe_f3545173-695e-4c8e-b02e-4a3ed53a15ba . - -agOnt:edge_CVE-2014-0751_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_Representation_734AD298-632E-4E34-823D-399224D207A7 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1" . - -secont:CVE-2018-1283 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2018-1283"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "3.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Dummy_SPS_AF138E59-0000-17AC-556E-BC4800003337 - a amlImp:Clamp , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Dummy_SPS" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.421466"^^rdfs:Literal ; - amlImp:hasFrame_y "0.995599"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_5A399DBE-E9CA-4D22-9B00-86E93A5B9CD8 ; - aml_ontology:hasIE amlImp:ie_Tuer_re.1_AF138E59-0000-17AC-556E-BC490000333C . - -secont:IPBreach_ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 - a secont:IPBreach ; - secont:consequence_impacts_Asset - amlImp:ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 . - -amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a amlImp:PLC , owl:NamedIndividual , amlImp:SIS ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71510SPF1PN" ; - amlImp:hasCpePart "o" ; - amlImp:hasCpeProduct "simatic_s7-1500_cpu_firmware" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "1.8.2" ; - aml_ontology:hasIE amlImp:ie_LogicalPortList_c64bca0b-7201-4a6f-a196-d21ec4e9dcf0 , amlImp:ie_Portlist_54d52d51-2455-49d0-b054-a0c1859f9f69 . - -amlImp:ei_Attachment_010RB_100_KR240R2700prime__F70A37BF-82A5-4540-BDEB-3B9BB23BE8BC - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010RB_100_KR240R2700prime_" . - -amlImp:ei_LogicalEndpointPROFIsafe_429d1ee7-4e79-4657-a6d7-dd469a9b4a87 - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - -amlImp:Attachment_030RB_200_KR240R2700prime__030GES290 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030RB_200_KR240R2700prime__030GES290" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_030GES290_97188306-9230-47AC-BA4B-87E8DD3FF857 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_030RB_200_KR240R2700prime__DD6B4EE3-6C4C-417B-B452-2E1DC1544709 . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ei_Representation_E064A3CA-9FCC-4C17-B5B4-0623F1E24608 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection1 LogicalEndpointOPC1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_200 030RB_200_KR240R2700prime_ LogicalEndpointOPC" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC1_9ff435fc-52d0-4204-a2f3-4d8323e7f1fd ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC_4a38d310-5447-4ac6-88a7-74bfc25172ec . - -amlImp:ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC50000033A6 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.7" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-21.8"^^rdfs:Literal ; - amlImp:hasFrame_y "1.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ei_Attachment_030RB_100_KR240R2700prime__D0EC1411-8E0B-4A32-8AE3-6E309ABA9A80 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_KR240R2700prime_" . - -icsSecOnt:NotSeparatedSafetyRelatedDevice - secont:vulnerability_on_Asset amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 . - -agOnt:edge_CVE-2017-9788_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9788 . - -amlImp:ie_Portlist_e0f59bb3-daa6-4af9-ac74-e89e33084015 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_MotorSocket_4e8f851e-faac-4b92-a8db-987634653157 , amlImp:ei_DataSocket_e01de9a6-af8d-4aa5-8f5f-57080f540b6a . - -agOnt:edge_CVE-2016-2200_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -amlImp:ei_Representation_1C035F95-FD10-4A4D-AF28-C5DB3927A5C2 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -agOnt:edge_UnusedOpenPort_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:ei_WirelessInterface3_4cd4526f-ba94-407a-8b36-8f30f39dcf28 - a amlImp:WirelessInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface3" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpriseDMZ EthernetWire1 EthernetPlug2 - EnterpriseDMZ Cisco1921Router EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_315a8dee-4000-417c-bd0c-007f8c1e7e3e ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_1191a78f-9c97-4b0c-bdb0-0a920a8152ff . - -agOnt:edge_CVE-2014-2355_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ei_EthernetSocket1_34fe9386-a622-4165-a63b-62fe8c8ee1d6 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2014-0751_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link SCADA EthernetWire5 EthernetPlug1 - SCADA ScalanceX414-3e-1 EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_d4e83dfa-6e8a-4b50-b492-2b16780577d6 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_a9bcea30-40e4-4439-a855-e4b088f1254f . - -amlImp:ie_030GST100_AF138E59-0000-17AC-556E-BC030000331D - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100" ; - amlImp:hasFrame_rx "-180"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.5"^^rdfs:Literal ; - amlImp:hasFrame_y "4.87"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_32D1045E-5069-45BB-9DFB-DDA17BC7F27B ; - aml_ontology:hasIE amlImp:ie_030GST100_Fahrzeug0_AF138E59-0000-17AC-556E-BC4600003328 , amlImp:ie_030GST100_030RB_100_FG_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332B , amlImp:ie_F19721000063102000100_001_zb_hb_vorrichtung001_layout_Festanteile.1_AF138E59-0000-17AC-556E-BC460000332D , amlImp:ie_030GST100_030RB_300_BH_030R3_030_W_AF138E59-0000-17AC-556E-BC460000332C , amlImp:ie_030GST100_030RB_100_SWP_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332A , amlImp:ie_030GST100_020RB_100_BA_020R1_030_W_AF138E59-0000-17AC-556E-BC4600003329 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire13 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket13" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_037d7f93-efa5-4f61-b40a-107192afb27b ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket13_0c1aaf7d-4170-4621-9edd-109072f8cd7e . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_EthernetPlug1_f7c9ed9e-7700-4469-a7de-163190ee5eb1 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2811_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_CVE-2019-0316_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0316 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link SCADA EthernetWire6 EthernetPlug1 - SCADA ScalanceX414-3e-1 EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_92abd253-9f0a-45cc-a4c5-9820592a1c40 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_6fea490b-3e8f-4243-85b9-e6e0d8f24e18 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2014-0751_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_LogicalEndpointOPC-UA_105f4f40-54fe-4d8f-90d2-bcdfd30c0031 - a amlImp:LogicalEndpointOPC-UA , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA" . - -amlImp:ei_Attachment_030WZD111_BHF_066212E0-98C1-4944-B03E-A5DB727A9630 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD111_BHF" . - -agOnt:edge_CVE-2017-15715_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15715 . - -amlImp:ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 - a amlImp:Fileserver , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "FileSvr1" ; - aml_ontology:hasIE amlImp:ie_Portlist_1c18bca1-5045-4fc9-abd9-8e4acc8f71f2 . - -amlImp:ie_Portlist_02a2e31f-4f8d-4b5c-8bcd-eba77d11f062 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_e998d27c-161a-4bb7-85ac-41beae800ff0 . - -amlImp:ie_030EKF170_AF138E59-0000-17AC-556E-B8B500003291 - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF170" ; - amlImp:hasFrame_rx "90"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.598677"^^rdfs:Literal ; - amlImp:hasFrame_y "6.208313"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_C76C35D1-16D3-45CC-B9FE-2D68607B5ABB ; - aml_ontology:hasIE amlImp:ie_030EKF170_030RB_100_KAPPENFRAESEN_AF138E59-0000-17AC-556E-B8B600003298 , amlImp:ie_drehen_fraeser_horizontal_AF138E59-0000-17AC-556E-B8B600003299 . - -amlImp:EnterpriseDmzZone - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "EnterpriseDmzZone" ; - rdfs:subClassOf amlImp:ITZone . - -amlImp:ei_DataPlug1_cf26e9b9-546f-4642-993b-59d4f504f25c - a amlImp:DataPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug1" . - -agOnt:vertex_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240 ; - agOnt:vertex_has_Edge agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_UnusedOpenPort_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-5074_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2013-2823_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2785_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UntrustedCrossZoneConnection_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-0751_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-2355_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-5074_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2019-6833_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_CVE-2014-5074_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2016-2201_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2016-2200_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2013-2811_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-0750_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2201_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2200_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2200_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_CVE-2016-2200_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:vertex_has_Weight 0.0e0 . - -amlImp:ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC50000033B6 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.17" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-25.8"^^rdfs:Literal ; - amlImp:hasFrame_y "8.5"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ie_B_AF138E59-0000-17AC-556E-BC4F00003398 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "B" ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC50000033B4 , amlImp:ie_Schutzzaun_2000x2000.12_AF138E59-0000-17AC-556E-BC50000033A0 , amlImp:ie_Schutzzaun_2000x1000.7_AF138E59-0000-17AC-556E-BC50000033AE , amlImp:ie_Schutzzaun_2000x1000.10_AF138E59-0000-17AC-556E-BC50000033A1 , amlImp:ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC50000033A6 , amlImp:ie_Schutzzaun_2000x1000.5_AF138E59-0000-17AC-556E-BC50000033BE , amlImp:ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC500000339C , amlImp:ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC50000033AB , amlImp:ie_Schutzzaun_2000x2000.19_AF138E59-0000-17AC-556E-BC50000033BB , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033A2 , amlImp:ie_Schutzzaun_2000x2000.21_AF138E59-0000-17AC-556E-BC50000033B8 , amlImp:ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC50000033B5 , amlImp:ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC50000033AF , amlImp:ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC50000033A7 , amlImp:ie_Schutzzaun_2000x2000.5_AF138E59-0000-17AC-556E-BC500000339D , amlImp:ie_Schutzzaun_2000x1000.11_AF138E59-0000-17AC-556E-BC50000033B1 , amlImp:ie_Schutzgittertuer.3_AF138E59-0000-17AC-556E-BC50000033B7 , amlImp:ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC50000033A3 , amlImp:ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC50000033AD , amlImp:ie_Schutzzaun_2000x1000.8_AF138E59-0000-17AC-556E-BC50000033B0 , amlImp:ie_Schutzzaun_2000x1000.2_AF138E59-0000-17AC-556E-BC50000033A8 , amlImp:ie_Zaunelement_775mm.1_AF138E59-0000-17AC-556E-BC50000033C1 , amlImp:ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC50000033AA , amlImp:ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4F00003399 , amlImp:ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC50000033A9 , amlImp:ie_Schutzzaun_2000x2000.6_AF138E59-0000-17AC-556E-BC50000033B2 , amlImp:ie_Schutzzaun_2000x2000.14_AF138E59-0000-17AC-556E-BC50000033B3 , amlImp:ie_Schutzzaun_2000x2000.17_AF138E59-0000-17AC-556E-BC50000033B6 , amlImp:ie_Schutzzaun_2000x1000.12_AF138E59-0000-17AC-556E-BC51000033C2 , amlImp:ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC50000033A4 , amlImp:ie_Schutzzaun_2000x1000.1_AF138E59-0000-17AC-556E-BC50000033A5 . - -amlImp:ei_Attachment_COLLADA_A2136160067_CCE893BB-DBA0-48CB-A537-3E2074D992B1 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_A2136160067" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102000101_001_zb_hb_gestell_01_fa_Rep.dae#F19721000063102000101_001_zb_hb_gestell_01_fa" ; - amlImp:hasTarget "./F19721000063102000101_001_zb_hb_gestell_01_fa_AttachmentPoint_A2136160067"^^rdfs:Literal . - -amlImp:ie_030WZA180_Tool2_AF138E59-0000-17AC-556E-B8B30000327F - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_Tool2" ; - amlImp:hasFrame_rx "-180"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0.325"^^rdfs:Literal ; - amlImp:hasFrame_z "1.3615"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool2_E2758AB0-3CB2-4730-BD76-A584A0D73D79 , amlImp:ei_Attachment_COLLADA_Tool2_52C20A3E-F75C-4F73-8886-58F133554053 . - -agOnt:edge_CVE-2014-0750_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-BC0300003319 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063199800000_001_kr210_1000mm.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "45"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_BA700FEB-B272-4A2F-905A-68509906E8FB . - -secont:CVE-2012-2552 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-2552"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_MicrosoftSQLServer_ed582e3a-5552-46d5-9afd-bdb9bc1ba38a . - -amlImp:ie_020GES191_OKF_Standard_AF138E59-0000-17AC-556E-B5B30000322B - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "020GES191_OKF_Standard" ; - aml_ontology:hasEI amlImp:ei_Attachment_OKF_Standard_F72D600B-0F39-45E2-A217-43F7FA85DEC0 , amlImp:ei_Attachment_COLLADA_OKF_Standard_9D68AEC8-E2E4-4CA3-BADA-D624279DE758 . - -amlImp:Basic128RSA15 a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Basic128RSA15" ; - rdfs:subClassOf amlImp:OPCUASecurityPolicy . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire11 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTGW1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_f577cb67-8d22-43b5-9012-8b85b548bf81 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_2a220313-14f5-466d-9338-1a0db0d2ffef . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:Rollerbed a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Rollerbed" ; - rdfs:subClassOf amlImp:Transport . - -secont:CVE-2019-10098 - a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-10098"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:ei_Attachment_030RB_100_KAPPENTAUSCH_0_1760FA05-8795-43B9-A6A7-86AAFEA2AA71 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_KAPPENTAUSCH_0" . - -amlImp:ei_Representation_6B79A914-C147-4410-AEE8-B963A6ABA00F - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:Conveyor a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Conveyor" ; - rdfs:subClassOf amlImp:Transport . - -amlImp:ie_CiscoFirewall_37f6480c-4cb7-4e6a-9c30-55150ba533ce - a amlImp:Firewall , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoFirewall" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_Cisco1921Router_73e8aa8c-6117-476e-8b67-83a1970fc969 ; - amlImp:hasCpePart "o" ; - amlImp:hasCpeProduct "adaptive_security_appliance_software" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "9.0.4.40" ; - aml_ontology:hasIE amlImp:ie_Portlist_73aea3b9-26f1-43ef-adb4-2c78292ee5f5 . - -amlImp:Fileserver a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Fileserver" ; - rdfs:subClassOf amlImp:Host . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "InternalLink Resource - Process" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Process_59dfad55-376c-4187-be99-f38a65f6e016 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Resource_76e731d9-164c-4a55-9818-4dfcf9089a88 . - -agOnt:edge_CVE-2019-6833_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_Attachment_030RB_300_KR240R2700prime__7B0A454B-4206-4AEC-985D-7F6E9F5E4904 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_300_KR240R2700prime_" . - -amlImp:ie_PhysicalNetwork_dd92139f-42d7-4312-8a80-4dc636ae0d2c - a owl:NamedIndividual , amlImp:PhysicalNetwork ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" ; - aml_ontology:hasIE amlImp:ie_EthernetWire3_7e567996-bba2-43c4-b020-2912c02221dd , amlImp:ie_EthernetWire1_8b9f6562-a0ed-41a4-b347-db86249b8b6c , amlImp:ie_EthernetWire2_e71d3e18-31a4-4133-9455-e4a54c36efe9 , amlImp:ie_EthernetWire5_3aba703a-de49-465f-9d41-180e2609db47 , amlImp:ie_EthernetWire7_78a23eb7-42df-4fb3-99b1-6e755cd22659 , amlImp:ie_EthernetWire4_597fb1b4-e011-4f3f-9f1b-b6636e27d231 , amlImp:ie_EthernetWire6_f4d40a3c-1ba0-4591-b356-8a1705e9c8cb . - -amlImp:ei_Representation_6FF63352-C85A-44D3-868D-F5B7B977B8BD - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063199800000_001.1_Product.dae" . - -agOnt:edge_CVE-2019-0211_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0211 . - -amlImp:ei_Representation_1853FF3C-F14C-4290-A773-BA13E8AFF421 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:ie_Portlist_28da059b-1379-4b98-a3bf-853221859659 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_0e28cd59-35a1-4726-b672-366db5780dd4 . - -amlImp:ie_LogicalOPCConnection2_29b6c100-4d64-4fe1-bcb2-9931b8507340 - a amlImp:OPC , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection2" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC2_1a018044-4ba2-4210-8099-68e6c28aff4f , amlImp:ei_LogicalEndpointOPC1_c8dda586-0a8d-4aed-b41b-1070f0e56e4a . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection1 WirelessPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTGW1 WirelessInterface1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_WirelessPlug1_97f811e1-694e-4b03-9f0b-4a0308462c02 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_WirelessInterface1_1856e465-4f19-4308-a9fb-5b903c6addf1 . - -amlImp:ei_MotorPlug1_3cfc448e-1c96-4379-8139-03adb5ef4bb8 - a amlImp:MotorPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug1" . - -amlImp:ei_Representation_CBB61637-70FA-4DF6-8258-E150D9F7FC65 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - -secont:CVE-2013-0676 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-0676"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2012-2598_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2598 . - -icsSecOnt:Process owl:equivalentClass amlImp:Process . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003370 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_2A7FBD92-1BAF-484F-8BE2-CA8A767DCECA . - -agOnt:edge_UntrustedCrossZoneConnection_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:EngineeringWorkstation - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "EngineeringWorkstation" ; - rdfs:subClassOf amlImp:Host . - -amlImp:ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC4B0000335A - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.8" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-4.3"^^rdfs:Literal ; - amlImp:hasFrame_y "1.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335B , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000335C . - -amlImp:ei_EthernetSocket1_b25aef65-333a-4adc-9bd7-29d88a99349c - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ei_EthernetPlug1_558636dd-7408-4de4-8e3b-14464da10877 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_CiscoFirewall_b4fd0383-bb15-4f01-b928-7113f3604980 - a owl:NamedIndividual , amlImp:Firewall ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoFirewall" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_Cisco1921Router_49a3e9c9-a693-4052-8084-3f2080bb0a16 ; - amlImp:hasCpePart "o" ; - amlImp:hasCpeProduct "adaptive_security_appliance_software" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "9.1.1.4" ; - aml_ontology:hasIE amlImp:ie_Portlist_75c30c18-a573-40f4-af44-7c50445b4dc4 . - -amlImp:ei_EthernetSocket13_0c1aaf7d-4170-4621-9edd-109072f8cd7e - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket13" . - -secont:BusinessInterruption_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 . - -amlImp:Wire a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Wire" ; - owl:disjointUnionOf ( amlImp:MotorWire amlImp:EthernetWire amlImp:DataWire ) ; - owl:disjointWith amlImp:LogicalPortList , amlImp:AutomationMLBaseInterface , amlImp:Protocol , amlImp:Host , amlImp:WirelessConnection , amlImp:OPCUASecurityPolicy , amlImp:Program , amlImp:Link , amlImp:AutomationMLBaseRole , amlImp:SecurityDevice , amlImp:Ethernet , amlImp:Data , amlImp:Motor , amlImp:Zone , amlImp:PortList , amlImp:LogicalEndpoint , amlImp:Wireless , amlImp:NetworkDevice . - -agOnt:edge_CVE-2017-15710_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15710 . - -amlImp:ei_Representation_51F0CD67-7EE3-486D-8C73-5CF1D641B117 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_3_Product.dae#saferobotparts-Tool1_3" . - -amlImp:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a amlImp:JumpServer , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "JumpSvr1" ; - secont:asset_logicallyConnectedTo_Asset - amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - aml_ontology:hasIE amlImp:ie_Portlist_a786feca-89da-4e6e-8661-4d0c3d32b922 , amlImp:ie_LogicalPortList_19918ced-34c6-4a99-9e35-b4b517a94461 . - -amlImp:NC a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "NC" ; - rdfs:subClassOf amlImp:Controller . - -agOnt:edge_NoPLCProgramCopyProtection_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_Schutzzaun_2000x1000.5_AF138E59-0000-17AC-556E-BC50000033BE - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.5" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "-10.5"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC50000033BF , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033C0 . - -amlImp:ie_040ABS100_030RB_300_BA_030R3_040_W_AF138E59-0000-17AC-556E-BC4600003332 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "040ABS100_030RB_300_BA_030R3_040_W" ; - aml_ontology:hasEI amlImp:ei_Attachment_030RB_300_BA_030R3_040_W_CF88925D-65B7-41FE-BF10-236CB0C74AF2 . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire5 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket5" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_0018de50-0c3f-4125-8dd5-3c964380196a ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket5_10ad4d48-9f71-4e8f-b52d-735e19c529ab . - -agOnt:edge_CVE-2016-2201_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030BH_256_AF138E59-0000-17AC-556E-B961000032D6 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "030BH_256" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-37.258"^^rdfs:Literal ; - amlImp:hasFrame_x "-8.368737"^^rdfs:Literal ; - amlImp:hasFrame_y "3.346279"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_F19732000122019015600_001_zb_gestell_fa.1_AF138E59-0000-17AC-556E-B961000032D7 , , . - -agOnt:edge_CVE-2019-6833_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -amlImp:ei_EthernetSocket1_34c5a701-1da9-4a1e-b1fc-5e72091da36f - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2016-2201_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_EthernetPlug1_9c17b165-9777-4fd3-b401-6dd4dc887c0c - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_CVE-2016-2200_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_CarManufacturer_f1884dd8-79fe-483b-bbcd-3429d6e8b0e6 - a amlImp:Enterprise , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "CarManufacturer" ; - aml_ontology:hasIE amlImp:ie_Vienna_c831cade-e8b3-4698-a545-8834422d3364 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_LogicalEndpointOPC1_3af21c9e-cc80-4889-87b5-10255ec1f52f - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_LogicalEndpointProfinet_915ff2e6-3d5d-4681-b6e0-dbb30417dae4 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - -agOnt:edge_CVE-2017-15710_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15710 . - -secont:InsecureProtocolUsed - secont:vulnerability_on_Asset amlImp:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , amlImp:ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 . - -agOnt:edge_CVE-2016-2201_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2016-4975_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-4975 . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030FG_111_Tool1_AF138E59-0000-17AC-556E-B8880000326E - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030FG_111_Tool1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool1_12A94D47-2AAA-4753-A0DB-03E6CA5E80AD , amlImp:ei_Attachment_COLLADA_Tool1_3DD13EE2-44AB-4A45-A68F-A5A06C09EABB . - -agOnt:edge_UnusedOpenPort_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:ei_EthernetPlug2_315a8dee-4000-417c-bd0c-007f8c1e7e3e - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link SCADA EthernetWire5 EthernetPlug2 - SCADA SimaticWinCC EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_9411fd4d-e3f0-4b82-9726-cc007318a8bf ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_a92c7873-0a07-4694-92eb-4e5afa8851a4 . - -agOnt:edge_CVE-2013-2785_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_CVE-2013-2823_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -agOnt:edge_CVE-2016-2201_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2013-2823_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -agOnt:edge_CVE-2013-2823_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:ei_Representation_3C9EB814-E7AF-4055-A259-532B8C573B12 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzgittertuer_Product.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire2 MotorPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 KRC4 MotorSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_MotorPlug2_64b94804-57fa-46bf-88dc-c1707dcf5f3b ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_MotorSocket_06edea8e-1bd1-43f6-a847-1d0eb58f95a9 . - -amlImp:ei_Attachment_saferobotparts_Tool1_1_859C2934-4B56-462E-A182-2D7E076ABCE7 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - -amlImp:ei_Attachment_saferobotparts_Tool1_1_D92A35BF-273E-4B89-A2D0-4D2ED14E6F53 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - -agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2014-4686_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2016-2200_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2019-6833_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_NotSeparatedWirelessDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2014-4684_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3034_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-3957_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_UnusedOpenPort_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_UnusedOpenPort_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-2598_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2016-2200_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-4683_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_NotSeparatedWirelessDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2013-0676_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_CVE-2012-3032_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2016-2201_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedWirelessDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2014-4682_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2012-3003_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2016-2201_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2200_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2013-3959_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NoPLCProgramCopyProtection_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_UntrustedCrossZoneConnection_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2015-2823_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-5074_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2012-3030_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2013-0679_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0677_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-2597_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3031_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NoPLCProgramCopyProtection_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2014-5074_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2014-5074_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2013-0678_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-3958_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2016-2201_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2013-0675_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-2596_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-5074_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2012-3028_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2016-2200_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2012-2595_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4685_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0674_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2016-2201_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:vertex_has_Weight 8.0e0 . - -amlImp:Storage a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Storage" ; - rdfs:subClassOf amlImp:DiscManufacturingEquipment . - -amlImp:OTZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "OTZone" ; - rdfs:subClassOf amlImp:Zone . - -amlImp:ie_drehen_fraeser_horizontal_rot_fraes_horizontal2_AF138E59-0000-17AC-556E-B8B60000329A - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "drehen_fraeser_horizontal_rot_fraes_horizontal2" ; - amlImp:hasFrame_rx "-90"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.177"^^rdfs:Literal ; - amlImp:hasFrame_y "0.89"^^rdfs:Literal ; - amlImp:hasFrame_z "0.085"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_rot_fraes_horizontal2_CF73BB31-727D-4B97-9116-F3343744B35A , amlImp:ei_Attachment_COLLADA_rot_fraes_horizontal2_C22C35F3-FD61-4CA2-B420-B8383C863507 . - -amlImp:ie_KukaMotorWire2_76a56bb1-787b-456b-8733-b0788033a8f9 - a amlImp:MotorWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaMotorWire2" ; - aml_ontology:hasEI amlImp:ei_MotorPlug2_64b94804-57fa-46bf-88dc-c1707dcf5f3b , amlImp:ei_MotorPlug1_3cfc448e-1c96-4379-8139-03adb5ef4bb8 . - -amlImp:ie_030GRF341_Zentrierstift1_AF138E59-0000-17AC-556E-BC010000330D - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_Zentrierstift1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.424735"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.572998"^^rdfs:Literal ; - amlImp:hasFrame_z "0.605999"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Zentrierstift1_368AC9B3-3DA1-49F1-AC27-B3FDAB62234C , amlImp:ei_Attachment_Zentrierstift1_3BA752A4-2733-432C-B1DF-4B64B732FD80 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Attachment_COLLADA_Tool1_9FB385A5-79D9-4AF6-8AD5-9A6C2C766A90 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Tool1"^^rdfs:Literal . - -secont:CVE-2014-4683 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-4683"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.9"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ProcessZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ProcessZone" ; - rdfs:subClassOf amlImp:OTZone . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire4 EthernetPlug2 - EnterpiseDMZ ERP1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_cb71bfd9-e012-4a10-86f0-c4c606e1e495 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_4004db01-a168-4e93-b4b3-44494dc62463 . - -amlImp:ei_Attachment_COLLADA_A2136160067_4DB273D7-12ED-4A80-B6F5-8C8BE1E625A0 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_A2136160067" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/T510198_7_Rep.dae#T510198_7" ; - amlImp:hasTarget "./T510198_7_AttachmentPoint_A2136160067_1"^^rdfs:Literal . - -agOnt:edge_CVE-2014-0750_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ei_LogicalEndpointHTTP-2_927ed061-fa2b-47b1-b48c-bca7a559d854 - a amlImp:LogicalEndpointHTTP , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-2" . - -amlImp:SequencingLogicInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "SequencingLogicInterface" ; - rdfs:subClassOf amlImp:LogicInterface . - -amlImp:ie_ScalanceX414-3e-1Safety_916ee601-f2c8-4319-a5c3-cd3f99e5431c - a owl:NamedIndividual , amlImp:Switch ; - rdfs:comment "InternalElement" ; - rdfs:label "ScalanceX414-3e-1Safety" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "scalance_x414-3e_firmware" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "2.1.1" ; - aml_ontology:hasIE amlImp:ie_Portlist_ea23fc45-ad94-4b86-8a4c-c4d759446df2 . - -amlImp:LogicalEndpointProfinet - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointProfinet" ; - rdfs:subClassOf amlImp:LogicalEndpoint . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:InterlockingVariableInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "InterlockingVariableInterface" ; - rdfs:subClassOf amlImp:VariableInterface . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_Attachment_COLLADA_FZG0_69314A25-6306-4E29-B36C-75FCEC09F778 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_FZG0" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_FZG0"^^rdfs:Literal . - -amlImp:ei_Representation_160C2A8B-B454-4167-9405-4F182A8F2BBC - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/SafeRobotParts_Product.dae#SafeRobotParts" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_EthernetWire13_e95adefc-5e9c-4f02-b984-26206ca96785 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire13" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_eb5f8cab-ad6b-4fa0-87a1-d8d54fc229d7 , amlImp:ei_EthernetPlug1_037d7f93-efa5-4f61-b40a-107192afb27b . - -amlImp:ie_EthernetWire4_3fc70458-d951-487d-8723-6f7523425134 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_a332c210-a79b-42b7-a537-9776d2139ab0 , amlImp:ei_EthernetPlug1_7b4c288c-c4a0-434b-b92e-2376421a1813 . - -agOnt:edge_CVE-2014-4003_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4003 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2823_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2823_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -agOnt:edge_CVE-2016-8740_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8740 . - -amlImp:ie_Portlist_bd1d02e1-de6e-43c1-8d50-d0d5d306e4af - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_MotorSocket_8b7f2dde-0548-4459-9b33-bf7a7875e0ed , amlImp:ei_DataSocket_92cbf340-ae86-4bbd-9ce9-e9995c8255ff . - -amlImp:ei_Attachment_FZG0_C696797F-9B5D-4EFD-8117-EC83FFC9393E - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_FZG0" . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:SIS a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "SIS" ; - rdfs:subClassOf amlImp:Host . - -icsSecOnt:Basic128RSA15 - owl:equivalentClass amlImp:Basic128RSA15 . - -amlImp:ei_EthernetPlug2_a0c2a075-76ac-4ba9-8431-d3f34cde2777 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ie_040ABS100_AF138E59-0000-17AC-556E-BC4600003331 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "040ABS100" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-11.518965"^^rdfs:Literal ; - amlImp:hasFrame_y "4.780033"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_F19721000063203000100_001_zb_hb_ablage_001_071106.1_AF138E59-0000-17AC-556E-BC4600003334 , amlImp:ie_040ABS100_030RB_300_BA_030R3_040_W_AF138E59-0000-17AC-556E-BC4600003332 , amlImp:ie_040ABS100_Design1_AF138E59-0000-17AC-556E-BC4600003333 . - -agOnt:edge_CVE-2013-6823_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6823 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2811_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -secont:Software owl:equivalentClass amlImp:Program . - -amlImp:ie_030FG_111_030WZD111_AF138E59-0000-17AC-556E-B8880000326F - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030FG_111_030WZD111" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030WZD111_589F48BB-B346-448B-9C65-E12F58CE454A , amlImp:ei_Attachment_030WZD111_0D5E6978-CEB2-4985-BB95-31C01B2D409B . - -amlImp:EthernetWire a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "EthernetWire" ; - rdfs:subClassOf amlImp:Wire . - -icsSecOnt:UntrustedCrossZoneConnection - secont:vulnerability_on_Asset amlImp:ie_Cisco1921Router_571cf030-3f40-4866-a3b8-0a1fa0cdfe37 , amlImp:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 , amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , amlImp:ie_CiscoFirewall_a3925fe5-0ac1-487b-b18f-7cfb705ce575 , amlImp:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , amlImp:ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , amlImp:ie_Cisco1921Router_ff30129c-f56a-4593-9e06-0228c9bd14b9 , amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , amlImp:ie_ScalanceX414-3e-1_f54529af-7587-4d9f-be29-a7c8bfdc1db4 , amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -agOnt:edge_CVE-2012-3031_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3031 . - -secont:BusinessInterruption_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - - - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19732000122019015600_001_zb_gestell_fa~1.1" ; - aml_ontology:hasEI amlImp:ei_Representation_8F6D40ED-CA1B-42AC-BA35-763748533648 . - -amlImp:ie_Portlist_3a2cbfe7-ef3e-4701-8903-7c9134daaabb - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_d833a7f9-908e-4b0d-88d2-16298bb533cf . - -amlImp:Turntable a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Turntable" ; - rdfs:subClassOf amlImp:Transport . - -amlImp:ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 - a amlImp:Switch , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoCatalystSwitch" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a , amlImp:ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321 , amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "catalyst_2900" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_0b8ac3a0-75c0-4c6e-9591-bff8c66ce87c . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_3586C6BD-7D09-484A-9545-269973500836 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063203000100_001_zb_hb_ablage_001_071106_Rep.dae" . - -agOnt:edge_CVE-2019-0337_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0337 . - -amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032FA - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" ; - amlImp:hasFrame_rx "-165.687"^^rdfs:Literal ; - amlImp:hasFrame_ry "-63.064"^^rdfs:Literal ; - amlImp:hasFrame_rz "-17.354"^^rdfs:Literal ; - amlImp:hasFrame_x "0.270394"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.00653"^^rdfs:Literal ; - amlImp:hasFrame_z "2.601352"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_59FC8794-015E-47D5-B088-E91FE5B7042D ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032FB . - -amlImp:ei_Representation_BA700FEB-B272-4A2F-905A-68509906E8FB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063199800000_001_kr210_1000mm_Rep.dae" . - -amlImp:ei_DataSocket_7e49a15d-3674-4c83-9b3e-cb30a3ba0fe8 - a amlImp:DataSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - -amlImp:ie_030GST100_030RB_300_BH_030R3_030_W_AF138E59-0000-17AC-556E-BC460000332C - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_030RB_300_BH_030R3_030_W" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030RB_300_BH_030R3_030_W_20DA954A-FBD3-49B6-9E1A-D97A347A6DFE , amlImp:ei_Attachment_030RB_300_BH_030R3_030_W_C55BCE74-84C9-488D-9989-BCA6C2DC6F11 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003355 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_F54AAF7A-DC11-4E0B-BEA0-A764532134B3 . - -amlImp:ie_EKW_BR212_Kappenwechsler.1_AF138E59-0000-17AC-556E-B8B6000032A0 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EKW_BR212_Kappenwechsler.1" ; - aml_ontology:hasEI amlImp:ei_Representation_FB34922C-06B9-452B-B951-CFAF2B5B40A4 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-8587_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-8587 . - -agOnt:edge_CVE-2017-3169_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3169 . - -amlImp:ei_EthernetPlug1_14548e38-9b8c-4bb9-95bd-fa0bfa038371 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2019-0211_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0211 . - -amlImp:ie_EthernetWire3_661e424f-f88b-4502-b8b7-adc16bce1058 - a amlImp:EthernetWire , amlImp:Conduit , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_d6388a7b-6006-4e47-936e-a3da211e0f5b , amlImp:ei_EthernetPlug1_9d8f0b1c-1839-48c7-ad79-e29f222bf27e . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030DS_251_AF138E59-0000-17AC-556E-B8F6000032C7 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "030DS_251" ; - amlImp:hasFrame_rx "73.172"^^rdfs:Literal ; - amlImp:hasFrame_ry "34.473"^^rdfs:Literal ; - amlImp:hasFrame_rz "97.709"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.491077"^^rdfs:Literal ; - amlImp:hasFrame_y "3.60465"^^rdfs:Literal ; - amlImp:hasFrame_z "2.650281"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_F19704000046499800797_001_bez_axis.1_AF138E59-0000-17AC-556E-B8F6000032CC , amlImp:ie_030DS_251_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F6000032C8 , amlImp:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_AF138E59-0000-17AC-556E-B8F6000032CE . - -amlImp:Communication a owl:Class ; - rdfs:comment "RoleClass" , "InterfaceClass" ; - rdfs:label "Communication" ; - rdfs:subClassOf amlImp:ControlEquipment , amlImp:AutomationMLBaseInterface . - -secont:CVE-2014-1961 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-1961"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_6FE99409-18FD-4091-B0EB-26699CF84285 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/SafeRobotParts_4_Product.dae#SafeRobotParts_4" . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_EthernetWire5_3aba703a-de49-465f-9d41-180e2609db47 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_d0199789-9c02-44fa-9f62-dfddb1d1a47d , amlImp:ei_EthernetPlug1_9501027d-fbb2-47dd-8c06-ceb068d39fb2 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2018-2363_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-2363 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2016-8612_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8612 . - -amlImp:ei_EthernetPlug1_fc9888b3-6263-465f-b6e8-59a408c705f3 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_UnusedOpenPort_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_UnusedOpenPort_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2013-2785_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-0750_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-0751_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2019-6833_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2013-2811_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2823_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2014-2355_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:vertex_has_Weight 8.0e0 . - -agOnt:edge_CVE-2013-2823_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:ei_Attachment_COLLADA_Base1_BFB699E0-894D-4B81-9320-EB0CBB28500B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19704000046499800797_001_cgr_klebepistole_030rb300_Rep.dae#F19704000046499800797_001_cgr_klebepistole_030rb300" ; - amlImp:hasTarget "./F19704000046499800797_001_cgr_klebepistole_030rb300_FrameOfInterest_Base1"^^rdfs:Literal . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2016-8612_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8612 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003375 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_C8C9A85D-2494-493A-AD56-54509CB9A40A . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030GRF341_FZG0_AF138E59-0000-17AC-556E-BC010000330E - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030GRF341_FZG0" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.195001"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.015"^^rdfs:Literal ; - amlImp:hasFrame_z "0.697"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_FZG0_157818DD-0FDE-4F50-AF13-24339EA93F6A , amlImp:ei_Attachment_FZG0_C696797F-9B5D-4EFD-8117-EC83FFC9393E . - -amlImp:ie_Portlist_540cf162-d674-4e8f-a3cd-ed9ee550ef66 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_MotorSocket_0ccfc25b-fefa-4a39-a516-300776c0a425 , amlImp:ei_DataSocket_686ff996-1a0c-4a3a-bd0d-be67fd34cafc . - -agOnt:edge_CVE-2013-2811_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ie_EthernetWire6_98aed8ca-f5d8-49b8-b56e-e5ee1403465d - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_de1a769d-17aa-4add-a68a-b41e728abac1 , amlImp:ei_EthernetPlug1_d873bdde-d3f8-4655-b20f-11287be393e1 . - -amlImp:ei_EthernetSocket1_d507e3e3-1a9c-4957-b399-c96b9c68c09a - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ei_Attachment_ToolMountPoint_13C44878-2FB3-4BAA-BCBE-994C3E02CCA1 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_27DCE7F2-DE82-4750-92D9-EE11D2C5E865 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3" . - -agOnt:edge_UnusedOpenPort_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2017-7679_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7679 . - -amlImp:ei_Representation_EEBE0762-5E41-4D29-A7C5-BF6F2FA3389D - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:ei_LogicalEndpointHTTP-1_db5d1336-2a10-439c-9961-6450ecc7a047 - a amlImp:LogicalEndpointHTTP , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-1" . - -amlImp:ie_EthernetWire2Safety_f425474b-89ee-4930-b84f-ecd5b6df88ad - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2Safety" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_e84fe43d-40c6-4132-a8fb-f9c49fb24553 , amlImp:ei_EthernetPlug1_76e82eca-3004-4e04-9eee-abc322b491d1 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003350 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_773AC0AC-DCD8-4BEA-B7D0-AB748A336E92 . - -secont:CVE-2016-1546 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2016-1546"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_Attachment_COLLADA_Base1_2FE3CECB-4D96-48B3-A4E2-4681F86FFF38 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02" ; - amlImp:hasTarget "./JA01732_REV02_FrameOfInterest_Base1"^^rdfs:Literal . - -secont:CVE-2014-0750 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-0750"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_EthernetSocket4_1feae021-7b03-4bd6-ae49-5c2b699741a3 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033BC - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_A7E06243-E977-4994-93A5-E2B638F47BAB . - -agOnt:edge_CVE-2013-2811_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ie_drehen_fraeser_horizontal_AF138E59-0000-17AC-556E-B8B600003299 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "drehen_fraeser_horizontal" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_7ADA36A4-C4F9-48EE-8EFF-AD7AB1365BB5 ; - aml_ontology:hasIE amlImp:ie_drehen_fraeser_horizontal_rot_fraes_horizontal2_AF138E59-0000-17AC-556E-B8B60000329A . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:LogicalEndpointPROFIsafe - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointPROFIsafe" ; - rdfs:subClassOf amlImp:LogicalEndpoint . - -agOnt:edge_CVE-2016-8740_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8740 . - -amlImp:ei_Representation_24E181ED-C8B8-4D2B-9177-501EB8B6247A - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae" . - -agOnt:edge_CVE-2016-2201_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_Attachment_Tool2_C16118FE-A563-45BB-8398-B75499D64F6E - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool2" . - -amlImp:ei_Representation_2143DD72-C0EB-4D66-A177-85E964AC33EB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_InsecureProtocolUsed_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetSocket1_d833a7f9-908e-4b0d-88d2-16298bb533cf - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire5 EthernetPlug2 - EnterpiseDMZ WebserverEnterprise EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_3d19d82e-0b7d-4586-92a1-2ab4d563ab0a ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_311a9abc-3c8e-4675-a111-fd30738f2732 . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC50000033BF - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_7BA2129E-5C48-4F56-A2B9-395566413D75 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_Attachment_KRxxxRultra_6_1_72B783F2-A060-496E-812B-BF685CDDB765 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - -amlImp:ei_EthernetSocket1_6f4fad76-7a6b-4156-90be-01c354d32800 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ei_Representation_BD4A75D6-499A-4C70-978C-FF43D1C39A1B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" . - -amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a amlImp:SIS , owl:NamedIndividual , amlImp:PLC ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71510SPF1PN1" ; - amlImp:hasCpePart "o" ; - amlImp:hasCpeProduct "simatic_s7-1500_cpu_firmware" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "1.8.2" ; - aml_ontology:hasIE amlImp:ie_LogicalPortList_1f20ccd2-7dfc-43e0-beed-89d1f51a90eb , amlImp:ie_Portlist_004a5072-7168-4f4e-a8d7-208ea75f15d7 . - -agOnt:edge_CVE-2018-1312_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1312 . - -amlImp:ei_Attachment_COLLADA_020GRF141_24903B78-3EAC-4666-9C3D-46C0E34F4264 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020GRF141" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_020GRF141"^^rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug2_40cd00a0-391c-4620-9527-d78c5d3b20a2 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:Product a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Product" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2019-0283_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0283 . - -amlImp:ie_KRxxxRultra.6.1_030WZD180_AF138E59-0000-17AC-556E-B84F0000325D - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_030WZD180" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030WZD180_9F9EFDD9-AE2A-4D9E-8C0A-525EB3F51B89 , amlImp:ei_Attachment_030WZD180_82862925-A9D8-4528-B513-67818494A71A . - -agOnt:edge_UnusedOpenPort_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:ei_Attachment_Tool1_048F2A98-7E48-42BC-A8AA-2C5900776DD8 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - -agOnt:edge_CVE-2016-2201_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_Attachment_rot_fraes_horizontal2_CF73BB31-727D-4B97-9116-F3343744B35A - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_rot_fraes_horizontal2" . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire6 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket6" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_d873bdde-d3f8-4655-b20f-11287be393e1 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket6_c41d5604-d159-42c6-b3c6-2c034d52246b . - -agOnt:edge_CVE-2013-2823_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection3 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_300 030RB_300 KRC4 LogicalEndpointPROFIsafe" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointPROFIsafe1_a175d785-e4e9-4858-b4c2-1807437c1f63 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointPROFIsafe_57cb22a2-920a-4de4-9f02-52a8267b744d . - -amlImp:ie_030EKW171_AF138E59-0000-17AC-556E-B8B60000329B - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "75"^^rdfs:Literal ; - amlImp:hasFrame_x "-8.3"^^rdfs:Literal ; - amlImp:hasFrame_y "6.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_030EKW171_030RB_100_KAPPENTAUSCH_0_AF138E59-0000-17AC-556E-B8B60000329C , amlImp:ie_030EKW171_Tool2_AF138E59-0000-17AC-556E-B8B60000329E , amlImp:ie_030EKW171_Tool1_AF138E59-0000-17AC-556E-B8B60000329D , amlImp:ie_EKW_BR212_Kappenwechsler.1_AF138E59-0000-17AC-556E-B8B6000032A0 , amlImp:ie_030EKW171_Tool3_AF138E59-0000-17AC-556E-B8B60000329F . - -amlImp:ei_EthernetSocket4_1f3b99b8-9092-42d0-98c9-cecbf3b5a189 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - -amlImp:ie_030GES290_AF138E59-0000-17AC-556E-B95D000032D1 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES290" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-9.3"^^rdfs:Literal ; - amlImp:hasFrame_y "2.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_030GES290_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B95D000032D2 , amlImp:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B95D000032D3 . - -amlImp:Attachment_030RB_100_KR240R2700prime__030WZD180 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_030RB_100_KR240R2700prime__030WZD180" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_030WZD180_B71117BC-7C64-4EEA-B117-163BBF982EC8 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_030RB_100_KR240R2700prime__8BC86E1D-3F3D-4855-AAC7-BF9A8EA79675 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetSocket5_10ad4d48-9f71-4e8f-b52d-735e19c529ab - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket5" . - -amlImp:ie_020GES191_OKF_Dehnfuge_AF138E59-0000-17AC-556E-B5B30000322C - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "020GES191_OKF_Dehnfuge" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "-0.025"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_OKF_Dehnfuge_3C9C7109-3861-4AD2-BD00-0649697BD2B3 , amlImp:ei_Attachment_COLLADA_OKF_Dehnfuge_6231E7B7-B291-45A4-88B6-C880FB02C2E3 . - -agOnt:edge_CVE-2014-5074_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2013-2811_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ie_Portlist_3ac714dc-9e0c-4520-b8a6-77ef55c18b46 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_MotorSocket_c957622e-197f-485d-bec6-29f81153fb2f , amlImp:ei_EthernetSocket_3e5cccb8-098e-4e8c-b66d-0c17f7a536ca , amlImp:ei_DataSocket_807dacba-3d37-4be1-a95d-f534dc00bca4 . - -amlImp:ei_EthernetSocket_642233fd-820b-40fc-8705-9908fd914dac - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:vertex_has_Edge agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2013-2823_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2201_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-2355_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2013-2811_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2016-2200_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2200_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-5074_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_UnusedOpenPort_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2014-5074_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2014-0751_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2019-6833_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_CVE-2016-2201_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2014-5074_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2016-2200_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2013-2785_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-0750_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_UntrustedCrossZoneConnection_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:vertex_has_Weight 8.0e0 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_CVE-2017-3167_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3167 . - -amlImp:ie_Schutzgittertuer.1_AF138E59-0000-17AC-556E-BC4E00003393 - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzgittertuer.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "1.7"^^rdfs:Literal ; - amlImp:hasFrame_y "1.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_C7BDE75A-7AFF-4649-BD28-2DDC46149F36 . - -icsSecOnt:Basic256 owl:equivalentClass - amlImp:Basic256 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility CarDoorProductionLine IndustrialDMZ LogicalNetwork LogicalOPC-UAConnection1 LogicalEndpointOPC-UA-2 - CarBodyManufacturingFacility CarDoorProductionLine OperationsSupport MES1 SimaticIT LogicalPortList LogicalEndpointOPC-UA-2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC-UA-2_823520ec-9659-47e5-ad5d-1c466e824b11 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC-UA-2_cfe19784-1636-4a08-a64c-930bde597f15 . - -amlImp:ie_EthernetWire5_d67ce17b-cfab-45b6-b824-f86f63316e39 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_d2968eb1-85a0-4898-bbd3-3497cdde065d , amlImp:ei_EthernetPlug1_479ada71-c9a1-4dc7-b139-ebdcffc5e1b8 . - -secont:DataBreach_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b - a secont:DataBreach ; - secont:consequence_impacts_Asset - amlImp:ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b . - -agOnt:edge_InsecureProtocolUsed_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-1546_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-1546 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire3 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_8f5bb8d6-2553-4b91-98c5-f05b624b2f65 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_818fe45b-1f74-4b1e-8a8f-71330e70eba1 . - -agOnt:edge_CVE-2016-2201_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_ITOTCrossConnection_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability icsSecOnt:ITOTCrossConnection . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_Representation_207638C0-E1DB-4262-8122-C2683C021E85 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KL1500_3_Product.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection3 WirelessPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTSensor3 WirelessInterface1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_WirelessPlug2_1138b241-22e0-4fa1-b6ff-b3ae35dbe7da ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_WirelessInterface1_a288c0ef-c44e-4cb1-b9fe-53754023fff1 . - -amlImp:ie_Cisco1921Router_73e8aa8c-6117-476e-8b67-83a1970fc969 - a amlImp:Router , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_CiscoCatalystSwitch_afcb7be1-18d8-4789-804c-fb80a97a29c2 ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "1921_integrated_services_router" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_cb19cccd-fafb-4b38-b812-773906e1dd49 . - -amlImp:ei_Representation_C6CD5063-8F95-4C5B-BF50-ADCBAFDD77BB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire1 EthernetPlug2 - Business Cisco1921Router EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_3ecaf821-1a98-45a6-8578-d10894d44973 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_83e071e7-772b-4b50-ae5a-70f263a2bddb . - -agOnt:edge_CVE-2013-7364_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-7364 . - -agOnt:edge_CVE-2016-2201_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_Attachment_COLLADA_010RB_100_BA_010R1_010_W_865A3EED-EF8C-4AF3-8B34-29436ED3A9C1 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_010RB_100_BA_010R1_010_W" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct" ; - amlImp:hasTarget "./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_010RB_100_BA_010R1_010_W"^^rdfs:Literal . - -agOnt:edge_CVE-2013-2811_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ei_MotorSocket_0ccfc25b-fefa-4a39-a516-300776c0a425 - a amlImp:MotorSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - -amlImp:ei_MotorPlug1_3d417e2d-9b3b-4025-90c0-225d2f12ae17 - a amlImp:MotorPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug1" . - -amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F0000325C - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_saferobotparts_Tool1_1_4211FF36-1735-492B-A9B6-9827AB70D367 , amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_1A3598C7-38F2-421D-89F5-2C4B5AEB6A3C . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection3 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC2_4f4277fd-d47e-4e24-b7dd-afabc94cbe9c ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC4_9a5396fa-80d9-438e-9700-75f3a7950fe1 . - -amlImp:ei_EthernetSocket1_c80744fd-2711-491f-8aac-776e9c28c62f - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2017-15710_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15710 . - -agOnt:edge_CVE-2014-2355_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ei_LogicalEndpointPROFIsafe1_e5384131-e6eb-48e8-8b90-9ead55a16971 - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe1" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug2_2a70d441-04eb-4780-a125-a1f913f715f7 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_UnusedOpenPort_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:ie_LogicalNetwork_d42e7daa-0610-4c16-a9b5-1ed176ea36f8 - a amlImp:LogicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" . - -secont:CVE-2011-5260 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2011-5260"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -agOnt:edge_CVE-2012-3028_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3028 . - -amlImp:ei_LogicalEndpointOPC1_48993549-d4d0-4931-90b2-416e913174d0 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - -secont:CVE-2015-2823 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2015-2823"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ProductStructure - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ProductStructure" ; - rdfs:subClassOf amlImp:Structure . - -amlImp:LiftingTable a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "LiftingTable" ; - rdfs:subClassOf amlImp:Transport . - -amlImp:ei_Representation_6571DCB9-A8B9-4A6F-89A3-1229FA6138BC - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae" . - -agOnt:edge_CVE-2016-2201_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2013-2823_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:NetworkDevice a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "NetworkDevice" ; - rdfs:subClassOf icsSecOnt:OTComponent . - -amlImp:ei_DataSocket_686ff996-1a0c-4a3a-bd0d-be67fd34cafc - a amlImp:DataSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - -amlImp:ie_030RB_100_AF138E59-0000-17AC-556E-B84F00003262 - a owl:NamedIndividual , amlImp:ControlCabinet ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-4.558491"^^rdfs:Literal ; - amlImp:hasFrame_y "7.882722"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_66264A05-382C-41A1-9E78-B61C93B74A96 ; - aml_ontology:hasIE amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 . - -amlImp:ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC4B00003349 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.2" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.6"^^rdfs:Literal ; - amlImp:hasFrame_y "3.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000334B , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000334A . - -amlImp:Unloader a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Unloader" ; - rdfs:subClassOf amlImp:Storage . - -amlImp:LogicalPortList - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "LogicalPortList" . - -amlImp:ei_Representation_CFD78EB8-CA34-4CF2-B9DC-1C7F54D2520B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -agOnt:edge_UntrustedCrossZoneConnection_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_CVE-2014-1961_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-1961 . - -amlImp:ie_LogicalOPCConnection1_d8bf6b53-42b3-49c5-b7af-fb9cd1421b7e - a amlImp:OPC , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection1" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC2_73557256-bbd1-4dcf-8856-777db2b92c3d , amlImp:ei_LogicalEndpointOPC1_3af21c9e-cc80-4889-87b5-10255ec1f52f . - -amlImp:ie_030EKW171_Tool3_AF138E59-0000-17AC-556E-B8B60000329F - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171_Tool3" ; - amlImp:hasFrame_rx "-90"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "0.0705"^^rdfs:Literal ; - amlImp:hasFrame_y "0.015772"^^rdfs:Literal ; - amlImp:hasFrame_z "1.014727"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool3_374287F0-9E8B-4537-9A9E-3731543653DB . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033B9 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_569A7F6B-2B90-433C-B5CD-FD8CDD8C568B . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -secont:BusinessInterruption_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -agOnt:edge_CVE-2012-3003_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3003 . - -amlImp:ProcessStructure - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ProcessStructure" ; - rdfs:subClassOf amlImp:Structure . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2823_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:ei_MotorSocket_4d895e1a-ce3b-471b-bd55-4cd328d4bb8e - a amlImp:MotorSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - -amlImp:ei_Attachment_COLLADA_Tool1_4BCB21AF-4184-46D9-BD5E-5719AB80C0FD - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1" ; - amlImp:hasTarget "./F19721000063199800000_001.1_FrameOfInterest_Tool1"^^rdfs:Literal . - -amlImp:hasRefURI a owl:DatatypeProperty ; - rdfs:range xsd:string . - -amlImp:ie_Portlist_54a6baf3-2f81-4466-b196-76764b661550 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket4_1feae021-7b03-4bd6-ae49-5c2b699741a3 , amlImp:ei_EthernetSocket3_28d87e93-ae2d-4f6b-afef-ff28b4c995aa , amlImp:ei_EthernetSocket2_341486c1-612f-40ea-81af-36f34b6681c4 , amlImp:ei_EthernetSocket1_53a5f197-a511-4e71-84e9-2ab523099198 . - -agOnt:edge_CVE-2017-3169_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3169 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4900003347 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_2F7473F2-CB41-493A-BB44-5FEA23ABA32E . - -agOnt:edge_CVE-2014-2355_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ei_EthernetPlug1_92abd253-9f0a-45cc-a4c5-9820592a1c40 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_ITOTCrossConnection_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability icsSecOnt:ITOTCrossConnection . - -amlImp:ie_Portlist_5ae73d3b-44fd-4f42-bc1a-5c3b217ee997 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket4_5830331c-a53c-4a17-aa6d-47f99a759b32 , amlImp:ei_EthernetSocket3_2839194e-f970-4f48-9510-c8dd9d7c78f5 , amlImp:ei_EthernetSocket2_dad4357c-c01f-4c20-833e-cdda1199d5c2 , amlImp:ei_EthernetSocket1_a02963d4-9d31-4dc2-98ff-239192d33803 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -secont:CVE-2017-7668 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2017-7668"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:ie_030RB_100_KR240R2700prime__030WZD180_AF138E59-0000-17AC-556E-B84F0000325A - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100_KR240R2700prime__030WZD180" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030WZD180_8CA5E1BA-F7F7-456A-A423-D1346F8EB8E7 , amlImp:ei_Attachment_030WZD180_B71117BC-7C64-4EEA-B117-163BBF982EC8 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_030WZA180_030RB_100_tool_1_couple_sim_AF138E59-0000-17AC-556E-B8B300003282 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180_030RB_100_tool_1_couple_sim" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030RB_100_tool_1_couple_sim_3862C9A6-FF25-4F48-B866-CF7B9B76F465 , amlImp:ei_Attachment_030RB_100_tool_1_couple_sim_E0BC059A-0904-4C70-8626-146F0D882EE7 . - -amlImp:JumpServer a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "JumpServer" ; - rdfs:subClassOf amlImp:Host . - -agOnt:edge_CVE-2019-6833_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -secont:IPBreach_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 - a secont:IPBreach ; - secont:consequence_impacts_Asset - amlImp:ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 . - -amlImp:ie_030WZA181_Tool1_AF138E59-0000-17AC-556E-B8B400003288 - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_Tool1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0.325"^^rdfs:Literal ; - amlImp:hasFrame_z "1.211893"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Tool1_6EA88E61-6169-476D-A425-038DD482BA50 , amlImp:ei_Attachment_Tool1_5430BF93-D571-414C-A5BF-FBA748F8BCA1 . - -amlImp:ie_030WZA181_030RB_100_tool_2_decouple_sim_AF138E59-0000-17AC-556E-B8B40000328D - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_030RB_100_tool_2_decouple_sim" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030RB_100_tool_2_decouple_sim_DC9E1031-2B40-49E4-B0FE-DC8E7D3BFE95 , amlImp:ei_Attachment_030RB_100_tool_2_decouple_sim_A445C2AB-E18E-49C0-9166-C979457D8D18 . - -agOnt:edge_CVE-2016-1546_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-1546 . - -amlImp:ie_Schutzzaun_2000x2000.16_AF138E59-0000-17AC-556E-BC4C00003377 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.16" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.2"^^rdfs:Literal ; - amlImp:hasFrame_y "8.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003378 , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003379 . - -amlImp:Lift a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Lift" ; - rdfs:subClassOf amlImp:Transport . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_Tool2_2D787351-E036-430E-8080-D7F2BABFCBCB - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool2" . - -amlImp:WirelessConnection - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "WirelessConnection" ; - owl:disjointWith amlImp:Motor , amlImp:Wire , amlImp:PortList , amlImp:OPCUASecurityPolicy , amlImp:Ethernet , amlImp:Data , amlImp:SecurityDevice , amlImp:Protocol , amlImp:LogicalPortList , amlImp:Host , amlImp:AutomationMLBaseInterface , amlImp:NetworkDevice , amlImp:LogicalEndpoint , amlImp:Zone , amlImp:AutomationMLBaseRole , amlImp:Program , amlImp:Wireless , amlImp:Link . - -amlImp:ei_Attachment_COLLADA_030WZD111_BHF_2487E0DE-6A8B-423A-ACF3-A98105130DDD - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD111_BHF" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_AttachmentPoint_030WZD111_BHF"^^rdfs:Literal . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire3 EthernetPlug2 - OperationsSupport CiscoFirewall EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_2a3b0c7c-db96-420b-9280-49ac1764428d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_cb3518ed-a657-40f9-8c13-3cfbd60ea63a . - -agOnt:vertex_ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66 ; - agOnt:vertex_has_Edge agOnt:edge_UntrustedCrossZoneConnection_ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_ITOTCrossConnection_ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_InsecureProtocolUsed_ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:vertex_has_Weight 0.0e0 . - -amlImp:ie_LogicalPROFIsafeConnection4_5b372b58-cbf9-4654-b2ac-9355d4ffd47a - a amlImp:PROFIsafe , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPROFIsafeConnection4" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointPROFIsafe2_2a1403ac-30d9-43de-9f26-2f7cbe82c75c , amlImp:ei_LogicalEndpointPROFIsafe1_eafdfbba-1d80-48a8-b74b-3b27aaf71c8b . - -amlImp:ei_Attachment_COLLADA_030GES390_9319CFA9-1048-470F-B1F3-6A6E67A1EB37 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GES390" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_4_Product.dae#KR240R2700prime_4" ; - amlImp:hasTarget "./KR240R2700prime_4_AttachmentPoint_030GES390"^^rdfs:Literal . - -amlImp:ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003391 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_H1500xB2885.1" ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_H1500xB2885.1_AF138E59-0000-17AC-556E-BC4C00003392 . - -amlImp:ei_EthernetPlug1_527adc4b-3795-4165-83fc-dd38cafc1971 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection3 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN2 LogicalEndpointPROFIsafe" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointPROFIsafe2_7d57b69d-8413-4f16-8d00-339083413b5f ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointPROFIsafe_ae854efb-9d6b-4b00-a4da-247eaf736f6f . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_Attachment_COLLADA_OKF_Standard_9D68AEC8-E2E4-4CA3-BADA-D624279DE758 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_OKF_Standard" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KL1500_3_Product.dae#KL1500_3" ; - amlImp:hasTarget "./KL1500_3_FrameOfInterest_OKF_Standard"^^rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:hasFrame_z a owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - -amlImp:ei_EthernetSocket1_cb3518ed-a657-40f9-8c13-3cfbd60ea63a - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_UntrustedCrossZoneConnection_ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2014-5074_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2016-2200_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2013-2811_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-2355_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_CVE-2013-2785_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2016-2201_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-5074_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2016-2201_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2019-6833_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_UnusedOpenPort_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-0750_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-0751_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2016-2200_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2201_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2016-2200_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2013-2823_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2014-5074_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_UntrustedCrossZoneConnection_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:vertex_has_Weight 8.0e0 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:hasFrame_rz a owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - -amlImp:ie_Cisco1921Router_571cf030-3f40-4866-a3b8-0a1fa0cdfe37 - a amlImp:Router , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_CiscoCatalystSwitch_34fd9397-ef4d-4ece-86dc-9fad7d8da70b ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "1921_integrated_services_router" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_c5d58e92-b6d1-4239-afac-68cfeab5cf18 . - -secont:CVE-2016-4975 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2016-4975"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338A - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_6F3AEA34-D348-41A8-BA72-89D80B77D729 . - -amlImp:ei_Representation_5F0ADF50-9691-4241-89E0-E1EDA0354705 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:ei_LogicalEndpointProfinet_9512f6d4-17f5-42fe-8d41-7049e4c0a1b9 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - -amlImp:ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66 - a amlImp:PatchManagementServer , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "PatchSvr1" ; - aml_ontology:hasIE amlImp:ie_Portlist_5a5e5376-5105-4d5b-bae4-0e21a9f428ce . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire3 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 KRC4 EthernetSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_a611ffbd-b94a-466a-a224-cb2ffdd51793 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket_642233fd-820b-40fc-8705-9908fd914dac . - -amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 - a owl:NamedIndividual , amlImp:OperationsSupportZone ; - rdfs:comment "InternalElement" ; - rdfs:label "OperationsSupport" ; - aml_ontology:hasIE amlImp:ie_Cisco1921Router_ff30129c-f56a-4593-9e06-0228c9bd14b9 , amlImp:ie_LogicalNetwork_ab3bc082-0a9e-4692-9a43-7ed3263bfe6f , amlImp:ie_PhysicalNetwork_dd92139f-42d7-4312-8a80-4dc636ae0d2c , amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a , amlImp:ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321 , amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , amlImp:ie_CiscoFirewall_a3925fe5-0ac1-487b-b18f-7cfb705ce575 , amlImp:ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2017-7668_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7668 . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a owl:NamedIndividual , amlImp:PLC ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71516F_1" ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "simatic_s7-1516f-3_pn\\/dp_cpu" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_LogicalPortList_4bcbb4c2-5036-4cbc-b06e-ad542cdbb92e , amlImp:ie_Portlist_950a09af-e9d7-4f21-8acb-d46771e2f634 , amlImp:ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 . - -amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_1A3598C7-38F2-421D-89F5-2C4B5AEB6A3C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_2_Rep.dae#KR210R2700prime_KRxxxRultra.6_2" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_2_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal . - -agOnt:edge_CVE-2019-0316_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0316 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2016-2200_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_EthernetWire7_9d589b04-4912-4f7a-873a-0747ff392c67 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire7" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_0cba49f1-5272-4e65-88a2-172997506511 , amlImp:ei_EthernetPlug1_44569ec8-9862-4ac2-baf2-96a40bbd168b . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire7 EthernetPlug2 - Business BusinessMailServer1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_2a70d441-04eb-4780-a125-a1f913f715f7 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_e998d27c-161a-4bb7-85ac-41beae800ff0 . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_DataSocket_846549de-aa8c-4c87-900e-543d02116fe4 - a amlImp:DataSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire3 EthernetPlug1 - Business Cisco1921Router EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_9d8f0b1c-1839-48c7-ad79-e29f222bf27e ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_6ebaee6c-fc37-424b-b713-978397078156 . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2019-0211_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0211 . - -amlImp:ei_EthernetPlug1_8ebc5cee-11a4-4417-99a7-6f0b757282e8 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ei_Representation_96FAB428-41F9-476D-8DCF-C66F6968183C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - -amlImp:ei_Representation_E8F7757E-50FE-4AD9-89A8-30C588AE2073 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzgittertuer_Product.dae" . - -agOnt:edge_CVE-2014-5074_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F0000325B - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" ; - amlImp:hasFrame_rx "94.499"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0.033828"^^rdfs:Literal ; - amlImp:hasFrame_y "-1.220507"^^rdfs:Literal ; - amlImp:hasFrame_z "1.783415"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_96ECB4B5-6064-49F8-BA98-8E3D316FBA92 ; - aml_ontology:hasIE amlImp:ie_KRxxxRultra.6.1_030WZD180_AF138E59-0000-17AC-556E-B84F0000325D , amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F0000325C , amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B84F0000325E . - -amlImp:ie_Portlist_e4d96340-7ee4-45a1-bdc0-7d972367ccb8 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_e3204a83-9a92-404e-99ae-decdfec06045 . - -amlImp:ie_Tore_A_AF138E59-0000-17AC-556E-BC4900003342 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Tore_A" ; - aml_ontology:hasEI amlImp:ei_Representation_569A87C7-5BFB-438C-9C96-8B080C3C6569 . - -agOnt:edge_CVE-2014-5074_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2014-2355_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection5 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC2_448bc6ba-609c-4d66-87bf-f01b86c53b63 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC2_02e7b935-8067-4293-8748-0449c1144807 . - -amlImp:ei_LogicalEndpointOPC1_c8dda586-0a8d-4aed-b41b-1070f0e56e4a - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - -amlImp:ie_EthernetWire4_ac03b247-0077-4dd9-9c1a-457733e5d2f1 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire4" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_0378e1b8-e417-41d0-8e5e-6ebb9e8a816b , amlImp:ei_EthernetPlug1_cc5fabd2-7cde-485b-8843-0f082201c50d . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003356 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_3A4C1DC3-1A56-4714-B7ED-5AFB7614EEF5 . - -amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a owl:NamedIndividual , amlImp:PLC ; - rdfs:comment "InternalElement" ; - rdfs:label "KRC4_4" ; - secont:asset_logicallyConnectedTo_Asset - amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5 , amlImp:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "rc4" ; - amlImp:hasCpeVendor "kuka" ; - aml_ontology:hasIE amlImp:ie_LogicalPortList_446494df-86e8-4750-b847-7c68782aef9a , amlImp:ie_Portlist_016a33c7-29a6-414b-a3f2-18e2472815e3 . - -agOnt:edge_CVE-2016-2201_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -secont:DataBreach_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b - a secont:DataBreach ; - secont:consequence_impacts_Asset - amlImp:ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:PortConnector a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "PortConnector" ; - rdfs:subClassOf amlImp:AutomationMLBaseInterface . - -amlImp:ei_Representation_7BA2129E-5C48-4F56-A2B9-395566413D75 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - -agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2019-0282_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0278_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_InsecureProtocolUsed_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0316_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0283_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_UntrustedCrossZoneConnection_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0337_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:vertex_has_Weight 0.0e0 . - -amlImp:ei_LogicalEndpointHTTP-1_b4d46f14-64ef-466b-86c3-3ab92e1d12eb - a amlImp:LogicalEndpointHTTP , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-1" . - -amlImp:Actuator a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Actuator" ; - rdfs:subClassOf amlImp:ControlEquipment . - -amlImp:ei_EthernetPlug1_d4e83dfa-6e8a-4b50-b492-2b16780577d6 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_CVE-2013-6821_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6821 . - -amlImp:ei_EthernetSocket2_6bf6a4bd-7bef-412c-938b-4d3bde1bfa62 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -amlImp:ei_LogicalEndpointOPC-UA-2_25f02e01-a974-4880-bd72-bf584af8624d - a amlImp:LogicalEndpointOPC-UA , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-2" . - -amlImp:ei_Attachment_030WZD121_BHF_0EE264DF-39A6-4B00-884A-1E0ABD85A222 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030WZD121_BHF" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_CVE-2014-5074_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Attachment_030GRF341_6A8D3042-7201-49F5-AB08-41CF66605261 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GRF341" . - -amlImp:ie_EthernetWire2_3704e8f7-3e0d-4486-9ea5-dd16d0d54018 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_efd46995-ca03-4bf4-9491-086d617a3f0f , amlImp:ei_EthernetPlug1_5147fe00-748d-4b23-940f-95bfb75eb1c9 . - -agOnt:edge_CVE-2014-0750_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ei_Representation_300739F5-E2E8-4E0E-AB2A-BA27221C4BFB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -secont:CVE-2013-6816 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-6816"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -agOnt:edge_CVE-2014-5074_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2014-2355_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ie_Portlist_e672c177-89b1-4da0-bfb2-8bacfe18919d - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_6f4fad76-7a6b-4156-90be-01c354d32800 . - -amlImp:ei_LogicalEndpointProfinet_5e889b68-e366-4560-b3ee-318c59c8aea5 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - -amlImp:RemoteManagementSystem - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "RemoteManagementSystem" ; - rdfs:subClassOf amlImp:Host . - -agOnt:edge_InsecureProtocolUsed_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030WZA180_AF138E59-0000-17AC-556E-B8A90000327A - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA180" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.7"^^rdfs:Literal ; - amlImp:hasFrame_y "6.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_24E181ED-C8B8-4D2B-9177-501EB8B6247A ; - aml_ontology:hasIE amlImp:ie_030WZA180_Tool2_AF138E59-0000-17AC-556E-B8B30000327F , amlImp:ie_030WZA180_Tool1_AF138E59-0000-17AC-556E-B8B30000327E , amlImp:ie_030WZA180_030SWZ121_BHF_AF138E59-0000-17AC-556E-B8B300003280 , amlImp:ie_030WZA180_030RB_100_tool_1_decouple_sim_AF138E59-0000-17AC-556E-B8B300003283 , amlImp:ie_030WZA180_Base1_AF138E59-0000-17AC-556E-B8B30000327D , amlImp:ie_030WZA180_030RB_100_tool_1_couple_sim_AF138E59-0000-17AC-556E-B8B300003282 , amlImp:ie_030WZA180_030WZD121_BHF_AF138E59-0000-17AC-556E-B8B300003281 . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2018-1283_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1283 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_EthernetSocket8_393fa348-770a-4479-9dfa-a2a7786a0bda - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket8" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:Basic256SHA256 - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Basic256SHA256" ; - rdfs:subClassOf amlImp:OPCUASecurityPolicy . - -amlImp:MES a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "MES" ; - rdfs:subClassOf amlImp:Host . - -amlImp:ie_Schutzgittertuer.2_AF138E59-0000-17AC-556E-BC4F00003397 - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzgittertuer.2" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "-11.2"^^rdfs:Literal ; - amlImp:hasFrame_y "8.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_3C9EB814-E7AF-4055-A259-532B8C573B12 . - -amlImp:ei_EthernetSocket3_39ffd08b-5871-49bc-9e10-b1e340c12ac6 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003387 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_E064A3CA-9FCC-4C17-B5B4-0623F1E24608 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_010VRE100_AF138E59-0000-17AC-556E-B56E000031F3 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "010VRE100" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_T510198_7_AF138E59-0000-17AC-556E-B56E000031F5 , amlImp:ie_010VRE100_010RB_100_BH_010R1_010_W_AF138E59-0000-17AC-556E-B56E000031F4 . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003351 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_A28D9B44-DF73-480E-99AD-C2CC5E704FEE . - -amlImp:Tool a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Tool" ; - rdfs:subClassOf amlImp:DiscManufacturingEquipment . - -amlImp:ie_Schlitten_AF138E59-0000-17AC-556E-B5B30000322D - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-5.751966"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.075"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_08C53529-F700-4251-A1C8-8221E02BA4AB ; - aml_ontology:hasIE amlImp:ie_Schlitten_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B5B30000322E , amlImp:ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B5B30000322F . - -agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_UnusedOpenPort_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BD - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_56329413-4E68-4697-B325-4EB92177B090 . - -agOnt:edge_CVE-2013-2785_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ei_DataSocket_4af3778d-2956-4fdf-9345-d1fc5957528a - a amlImp:DataSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - -amlImp:Machine a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Machine" ; - rdfs:subClassOf amlImp:DiscManufacturingEquipment . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ProductionLine - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ProductionLine" ; - rdfs:subClassOf amlImp:ResourceStructure . - -amlImp:ie_F197210000631025121_001_zb_hb_zangenstaender_21.1_AF138E59-0000-17AC-556E-BC030000331C - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F197210000631025121_001_zb_hb_zangenstaender_21.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "105"^^rdfs:Literal ; - amlImp:hasFrame_x "1.976361"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.922783"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_C5A8BFF3-71E0-47B7-BC63-138E818CD550 . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_LogicalPortList_1f20ccd2-7dfc-43e0-beed-89d1f51a90eb - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointPROFIsafe_a2bd3329-93c3-4b76-9689-38069e140904 . - -amlImp:ie_030SWZ321_AF138E59-0000-17AC-556E-B99C00003300 - a amlImp:Clamp , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ321" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-60"^^rdfs:Literal ; - amlImp:hasFrame_x "-10.462436"^^rdfs:Literal ; - amlImp:hasFrame_y "6.29725"^^rdfs:Literal ; - amlImp:hasFrame_z "0.5"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_28169D3A-3C50-430D-AD23-1EB691E18F01 ; - aml_ontology:hasIE amlImp:ie_030SWZ321_Tool1_AF138E59-0000-17AC-556E-B99D00003302 , amlImp:ie_030SWZ321_Base1_AF138E59-0000-17AC-556E-B99D00003301 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire1 EthernetPlug1 - EnterpiseDMZ CiscoFirewall EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_b9ff7173-3281-4b88-92a1-b38f5215cab9 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_b02527e7-57d7-46d0-8ec5-5332cb3400f8 . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -agOnt:edge_CVE-2013-2823_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:InterlockingLogicInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "InterlockingLogicInterface" ; - rdfs:subClassOf amlImp:LogicInterface . - -agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility Business LogicalNetwork LogicalHTTPConnection1 LogicalEndpointHTTP-2 - CarBodyManufacturingFacility IndustrialDMZ Jump1 LogicalPortList LogicalEndpointHTTP " ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointHTTP-2_927ed061-fa2b-47b1-b48c-bca7a559d854 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointHTTP_263fcd54-6a0e-4fbe-a02b-49e390e00943 . - -agOnt:edge_CVE-2017-15715_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15715 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding WirelessConnection2 WirelessPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation WirelessHARTGW1 WirelessInterface2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_WirelessPlug1_3e07cf2a-89c0-4000-97fd-ff6fd3b3ba7a ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_WirelessInterface2_68cdcef0-c91a-4abb-83cb-e95450a9429d . - -amlImp:ei_EthernetSocket1_1191a78f-9c97-4b0c-bdb0-0a920a8152ff - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_LogicalPortList_c4d32fb7-0a28-4099-a8fa-0db23d405d51 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet_5e889b68-e366-4560-b3ee-318c59c8aea5 . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2013-7364_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-7364 . - -agOnt:edge_CVE-2016-2201_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_Representation_CB25117E-6041-4191-8F44-8DF18C1C0453 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_3_Product.dae" . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_030GES292_AF138E59-0000-17AC-556E-B95D000032D4 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES292" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-8.3"^^rdfs:Literal ; - amlImp:hasFrame_y "1.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_F36529100530800000000_staender_schlauchpaket_L2300_A950_H575.1_AF138E59-0000-17AC-556E-B95D000032D5 . - -amlImp:ie_HB51_A_Allgemein_AF138E59-0000-17AC-556E-BC4800003335 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "HB51_A_Allgemein" ; - aml_ontology:hasIE amlImp:ie_Foerdertechnik_Stoerkontur_A_AF138E59-0000-17AC-556E-BC4900003340 , amlImp:ie_Schaltschraenke_A_AF138E59-0000-17AC-556E-BC4800003336 , amlImp:ie_benachbarte_Zellen_A_AF138E59-0000-17AC-556E-BC490000333E , amlImp:ie_Tore_A_AF138E59-0000-17AC-556E-BC4900003342 , amlImp:ie_Peripherie_A_AF138E59-0000-17AC-556E-BC490000333F , amlImp:ie_Materialbereitstellung_A_AF138E59-0000-17AC-556E-BC4900003341 . - -secont:CVE-2014-5074 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-5074"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.1"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 . - -amlImp:ei_Attachment_Base1_4D47BAAE-7E23-491F-B0BD-1F2A7CABCF5B - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC500000339E - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_CE825AD5-1C99-47E2-B0F9-5F12D304C94C . - -agOnt:edge_CVE-2018-17199_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2018-17199 . - -agOnt:edge_CVE-2019-6833_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_EthernetSocket1_89571e9b-e0f0-4856-b72a-7897ae1cf7ad - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ei_Representation_2F7473F2-CB41-493A-BB44-5FEA23ABA32E - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2017-3167_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3167 . - -amlImp:LogicalEndpointOPC - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointOPC" ; - rdfs:subClassOf amlImp:LogicalEndpoint . - -agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -secont:CVE-2013-7364 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-7364"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:ei_EthernetPlug1_d820150e-51ac-4d9b-af41-7a8397b05d13 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_Cisco1921Router_ff30129c-f56a-4593-9e06-0228c9bd14b9 - a owl:NamedIndividual , amlImp:Router ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "1921_integrated_services_router" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_cdeea2dd-6a3e-42a3-9a70-cdaa513dcdc4 . - -amlImp:ei_EthernetPlug1_19f6da58-3759-4fa3-a5e4-b3dc3b49e58b - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:DmzZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "DmzZone" ; - rdfs:subClassOf amlImp:ITZone . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_LogicalEndpointOPC-UA_83524b62-a19a-4f1b-8038-23027d20c93c - a amlImp:LogicalEndpointOPC-UA , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA" . - -amlImp:HMI a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "HMI" ; - rdfs:subClassOf amlImp:Host , amlImp:ControlEquipment . - -agOnt:edge_CVE-2013-2823_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_UnusedOpenPort_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_CVE-2016-2201_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -icsSecOnt:Hazard_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 . - -agOnt:edge_CVE-2013-2811_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_2ED52C4B-9C55-488B-B07A-F6EF75C7D2D1 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003361 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_6F680005-56C9-4A1A-B001-659DACC930CE . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:Handheld a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Handheld" ; - rdfs:subClassOf amlImp:ControlHardware . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:WorkCell a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "WorkCell" ; - rdfs:subClassOf amlImp:ResourceStructure . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:Fixture a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Fixture" ; - rdfs:subClassOf amlImp:DiscManufacturingEquipment . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_030GES390_633BC548-00F4-4CE1-B825-BD135EF6074D - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GES390" . - -agOnt:edge_CVE-2013-3959_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-3959 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003364 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_AD2FB08A-F868-4385-8A8A-E05B681DEB5E . - -amlImp:ei_EthernetPlug2_3d19d82e-0b7d-4586-92a1-2ab4d563ab0a - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -secont:CVE-2017-15715 - a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2017-15715"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:PhysicalEndPoint - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "PhysicalEndPoint" ; - rdfs:subClassOf amlImp:Communication . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Schutzzaun_2000x2000.2_AF138E59-0000-17AC-556E-BC50000033A3 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.2" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-15.8"^^rdfs:Literal ; - amlImp:hasFrame_y "0.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2019-0337_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0337 . - -amlImp:ei_EthernetPlug2_4eb6dc2f-dff1-4bac-a865-492f1023404b - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_UntrustedCrossZoneConnection_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_A19D63AA-D0B0-459B-B1FB-1266C75C9DCA - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal . - -agOnt:edge_CVE-2016-2200_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:VariableInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "VariableInterface" ; - rdfs:subClassOf amlImp:PLCopenXMLInterface . - -secont:CVE-2012-2597 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-2597"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-4686_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4686 . - -secont:CVE-2017-3169 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2017-3169"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:ie_LogicalPortList_7119dc28-da6c-40bd-b2e5-0eaf1f545f4a - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC-UA-2_cfe19784-1636-4a08-a64c-930bde597f15 , amlImp:ei_LogicalEndpointOPC-UA-1_a04436ec-db07-4dc1-a5a1-4a0e469e2c1d . - -amlImp:ie_KukaMotorWire3_6bdf004d-2d07-4b5b-aedb-2dae69ef17a4 - a amlImp:MotorWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaMotorWire3" ; - aml_ontology:hasEI amlImp:ei_MotorPlug2_d1668324-4fcd-4002-9acb-5b6215fce49d , amlImp:ei_MotorPlug1_3d417e2d-9b3b-4025-90c0-225d2f12ae17 . - -agOnt:edge_CVE-2013-2811_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_CVE-2019-0211_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0211 . - -agOnt:edge_CVE-2016-2201_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2014-5074_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2012-1856_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-1856 . - -amlImp:ei_EthernetSocket1_e3204a83-9a92-404e-99ae-decdfec06045 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_030WZA181_030RB_100_tool_2_couple_sim_AF138E59-0000-17AC-556E-B8B40000328C - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_030RB_100_tool_2_couple_sim" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030RB_100_tool_2_couple_sim_D23BC94E-1BF7-4B26-8E15-373E34E82619 , amlImp:ei_Attachment_030RB_100_tool_2_couple_sim_DA580463-4245-43C4-AAC0-D9C908E50C4A . - -agOnt:edge_CVE-2016-2201_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_LogicalEndpointOPC5_8e747187-913d-4635-bd1b-d64e683a0a21 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC5" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "InternalLink Process - Product" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Product_1db172cd-14bc-4ce4-a9fe-bf99cc1598c0 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Process_c07c3906-8d6a-4bf5-b727-2dee27caeec2 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:Enterprise a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Enterprise" ; - rdfs:subClassOf amlImp:ResourceStructure . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-4 DataPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_300 030RB_100_KR240R2700prime_ DataSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_DataPlug1_9a404f47-0a3c-4ac6-a661-f24926d8101d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_DataSocket_686ff996-1a0c-4a3a-bd0d-be67fd34cafc . - -amlImp:ie_EthernetWire5_4d27d192-979a-4dac-8b97-b6cee0bbeff2 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_7024d245-4621-4b60-b25c-d0b72e30892e , amlImp:ei_EthernetPlug1_9c17b165-9777-4fd3-b401-6dd4dc887c0c . - -amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_6BB2D1F4-3AF8-486B-B6BD-F290485D0D7A - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal . - -amlImp:ei_EthernetSocket4_5830331c-a53c-4a17-aa6d-47f99a759b32 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - -agOnt:edge_CVE-2008-3358_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2008-3358 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire2 MotorPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 010RB_100_KR240R2700prime_ MotorSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_MotorPlug1_3cfc448e-1c96-4379-8139-03adb5ef4bb8 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_MotorSocket_4e8f851e-faac-4b92-a8db-987634653157 . - -amlImp:ei_Attachment_030RB_100_KR240R2700prime__8BC86E1D-3F3D-4855-AAC7-BF9A8EA79675 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_KR240R2700prime_" . - -amlImp:MovableTool a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "MovableTool" ; - rdfs:subClassOf amlImp:Tool . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003348 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_EA6A0D28-0713-4FC5-B4BD-8109D6117526 . - -secont:CVE-2017-15710 - a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2017-15710"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:edge_ITOTCrossConnection_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability icsSecOnt:ITOTCrossConnection . - -agOnt:edge_ITOTCrossConnection_ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability icsSecOnt:ITOTCrossConnection . - -agOnt:edge_CVE-2014-2355_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -agOnt:edge_CVE-2014-5074_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_EthernetWire6_f4d40a3c-1ba0-4591-b356-8a1705e9c8cb - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_4eb6dc2f-dff1-4bac-a865-492f1023404b , amlImp:ei_EthernetPlug1_14548e38-9b8c-4bb9-95bd-fa0bfa038371 . - -amlImp:ei_EthernetSocket3_1c9c25cb-e95a-4708-a2ca-65e252b24a3f - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -secont:BusinessInterruption_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 . - -amlImp:ei_EthernetPlug1_c2d51637-661b-4bdd-87e4-5511903613ab - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -secont:CVE-2013-0679 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-0679"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:hasCpeVendor a owl:DatatypeProperty ; - rdfs:range xsd:string . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -secont:BusinessInterruption_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 . - -amlImp:ei_LogicalRemoteEndpoint_ceca8b8d-7308-4242-868f-abc070544477 - a amlImp:LogicalRemoteEndpoint , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalRemoteEndpoint" . - -agOnt:edge_CVE-2019-10098_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10098 . - -amlImp:ei_Representation_FB34922C-06B9-452B-B951-CFAF2B5B40A4 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/EKW_BR212_Kappenwechsler_Rep.dae" . - -agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2017-15710_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_InsecureProtocolUsed_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2019-10092_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-3167_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2018-1312_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_UntrustedCrossZoneConnection_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2018-17199_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-1546_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2019-0211_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-8612_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-3169_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-7679_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-9788_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2018-1283_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-4975_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-8740_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-8743_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2019-10098_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-9798_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-7668_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-15715_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:vertex_has_Weight 7.0e0 . - -amlImp:ei_Product_1db172cd-14bc-4ce4-a9fe-bf99cc1598c0 - a amlImp:PPRConnector , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Product" . - -amlImp:ie_Cisco1921Router_f63c0f61-7317-4a01-85f1-17cf3c457962 - a amlImp:Router , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "1921_integrated_services_router" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_21b67549-def3-4a21-9db2-6e1c17daa0fc . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_Attachment_Tool1_0F420D64-D074-49B3-96C2-6DD195919A40 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool1" . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:PhysicalDevice - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PhysicalDevice" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_CVE-2017-9788_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9788 . - -secont:CVE-2016-8612 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2016-8612"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "3.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:edge_CVE-2016-8743_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8743 . - -agOnt:edge_CVE-2019-0316_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0316 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_LogicalEndpointOPC-UA-2_823520ec-9659-47e5-ad5d-1c466e824b11 - a amlImp:LogicalEndpointOPC-UA , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-2" . - -agOnt:edge_CVE-2016-2200_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug2_8750445b-c4d5-4c3e-a96a-903af449bee7 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ei_EthernetSocket2_a9bcea30-40e4-4439-a855-e4b088f1254f - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -amlImp:ei_Attachment_KRxxxRultra_6_1_827BAC0D-8EF4-4E04-819E-0442BA477256 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - -icsSecOnt:Hazard_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 . - -agOnt:edge_CVE-2016-2201_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B0000335B - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_2DF9DCC6-90F3-41CC-A729-7B75064E6738 . - -agOnt:edge_CVE-2011-4707_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2011-4707 . - -amlImp:ie_Schutzzaun_2000x2000.8_AF138E59-0000-17AC-556E-BC50000033A7 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.8" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-15.05"^^rdfs:Literal ; - amlImp:hasFrame_y "8.5"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ei_Attachment_Design1_2507C6B5-758F-4EF6-A3B9-E703DCB16513 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Design1" . - -amlImp:ei_EthernetSocket12_eedd7431-8f9c-45a7-8195-d01a4c446656 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket12" . - -amlImp:ei_LogicalEndpointOPC1_5c88241e-d581-45e0-990e-4ac58c6de838 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4B0000335E - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_041B7419-8770-4264-A1B6-C418D01A33A7 . - -agOnt:edge_CVE-2019-6833_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_CVE-2015-2823_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2015-2823 . - -agOnt:edge_CVE-2018-1312_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1312 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:RC a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "RC" ; - rdfs:subClassOf amlImp:Controller . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire5 EthernetPlug1 - OperationsSupport CiscoCatalystSwitch EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_9501027d-fbb2-47dd-8c06-ceb068d39fb2 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_39ffd08b-5871-49bc-9e10-b1e340c12ac6 . - -amlImp:LogicalRemoteEndpoint - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalRemoteEndpoint" ; - rdfs:subClassOf amlImp:LogicalEndpoint . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire1 EthernetPlug1 - DMZ CiscoFirewall EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_b8ca4279-9c8f-496f-8536-ea084e697182 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_3ec391ca-8953-416f-85ad-0c97a1a1a501 . - -amlImp:ie_PhysicalNetwork_5d714a90-b712-4c6e-89c1-1df53350637a - a amlImp:PhysicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" ; - aml_ontology:hasIE amlImp:ie_EthernetWire6_fb01531a-025e-49e4-8f4b-a5eaaf032d76 , amlImp:ie_EthernetWire5_2eef1c1c-b20e-44eb-883e-3d73bfe36aab . - -amlImp:ei_EthernetPlug2_0018de50-0c3f-4125-8dd5-3c964380196a - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:Attachment_KRxxxRultra.6.1_030WZD180 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_030WZD180" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_030WZD180_82862925-A9D8-4528-B513-67818494A71A ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_KRxxxRultra_6_1_827BAC0D-8EF4-4E04-819E-0442BA477256 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_37EE8A38-509B-49B8-8250-C2A5B87C9CC1 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800459_001_459_walther.1_Rep.dae" . - -secont:CVE-2013-0674 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-0674"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:hasRefType a owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - -amlImp:ie_030FG_111_AF138E59-0000-17AC-556E-B8810000326A - a amlImp:Clamp , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030FG_111" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "45"^^rdfs:Literal ; - amlImp:hasFrame_rz "-4.499"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.740861"^^rdfs:Literal ; - amlImp:hasFrame_y "6.408973"^^rdfs:Literal ; - amlImp:hasFrame_z "1.509727"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_96A399E2-BBD1-4049-A1BE-4FD1F48BB85B ; - aml_ontology:hasIE amlImp:ie_030FG_111_030WZD111_AF138E59-0000-17AC-556E-B8880000326F , amlImp:ie_030FG_111_Tool1_AF138E59-0000-17AC-556E-B8880000326E , amlImp:ie_030FG_111_Base1_AF138E59-0000-17AC-556E-B8880000326D . - -amlImp:ie_Schutzzaun_2000x2000.7_AF138E59-0000-17AC-556E-BC4B00003357 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.7" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-2.3"^^rdfs:Literal ; - amlImp:hasFrame_y "1.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003358 , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003359 . - -agOnt:edge_CVE-2017-3167_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3167 . - -amlImp:ie_Schutzzaun_2000x2000.13_AF138E59-0000-17AC-556E-BC4C0000336B - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.13" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "1.325"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C0000336D , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336C . - -amlImp:ei_Attachment_Zentrierstift1_CD98FEF5-3C32-4645-B5CD-63B4A4776EE0 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Zentrierstift1" . - -secont:BusinessInterruption_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 . - -amlImp:ei_Attachment_saferobotparts_Tool1_1_5EC2AB6D-9DDD-4DBB-88AF-424D6D5DFFCA - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - -amlImp:ei_Attachment_COLLADA_Tool1_6EA88E61-6169-476D-A425-038DD482BA50 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Tool1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin_2" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_2_FrameOfInterest_Tool1"^^rdfs:Literal . - -amlImp:ei_Attachment_COLLADA_Base1_8172A5D8-CB9F-4E1F-AA19-2FCF6A3E1766 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base1"^^rdfs:Literal . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337B - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_2143DD72-C0EB-4D66-A177-85E964AC33EB . - -amlImp:ei_EthernetSocket2_3ec391ca-8953-416f-85ad-0c97a1a1a501 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -secont:CVE-2014-4686 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-4686"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:EthernetSocket - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "EthernetSocket" ; - rdfs:subClassOf amlImp:Ethernet . - -secont:CVE-2012-3003 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-3003"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ie_LogicalPortList_e8ef64ac-6ce8-415a-a5e2-3ee11ba88396 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointProfinet_915ff2e6-3d5d-4681-b6e0-dbb30417dae4 , amlImp:ei_LogicalEndpointPROFIsafe_59fa5a98-b9c5-443e-a743-df56b026d9f3 , amlImp:ei_LogicalEndpointOPC_7f4077c1-4536-45d4-af0c-f516b817d3a7 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2014-0751_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -amlImp:ei_Attachment_Base1_395CD38C-0C21-4183-B681-FE4A6B0F90ED - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:Panel a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Panel" ; - rdfs:subClassOf amlImp:ControlHardware . - -amlImp:ie_030RB_200_AF138E59-0000-17AC-556E-B8F4000032C3 - a owl:NamedIndividual , amlImp:ControlCabinet ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_200" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-3.128421"^^rdfs:Literal ; - amlImp:hasFrame_y "0.936761"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_213EC99E-2846-40B6-BC4A-0887C50E6886 ; - aml_ontology:hasIE amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 . - -amlImp:ei_LogicalEndpointProfinet_2d99c617-b230-4b96-be81-8108865806cc - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire4 MotorPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_300 030RB_200_KR240R2700prime_ MotorSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_MotorPlug2_77af8496-b3af-4e27-86b0-0fdf30cc9e0f ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_MotorSocket_0ccfc25b-fefa-4a39-a516-300776c0a425 . - -amlImp:DiscManufacturingEquipment - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "DiscManufacturingEquipment" ; - rdfs:subClassOf amlImp:Resource . - -amlImp:ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B8A900003279 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F16500000115199800459_001_459_walther.1" ; - aml_ontology:hasEI amlImp:ei_Representation_F74F923B-416E-4B7E-8D27-44BA0A621A05 . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:Historian a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Historian" ; - rdfs:subClassOf amlImp:Host . - -agOnt:edge_CVE-2012-3003_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3003 . - -amlImp:ei_Representation_E9C64C01-B228-41AE-8294-050FD9C5D649 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_H1500xB2885.1_Rep.dae" . - -amlImp:ei_WirelessInterface1_a288c0ef-c44e-4cb1-b9fe-53754023fff1 - a amlImp:WirelessInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface1" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection1 LogicalEndpointOPC1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 030RB_100_KR240R2700prime_ LogicalEndpointOPC" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC1_3af21c9e-cc80-4889-87b5-10255ec1f52f ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC_7f4077c1-4536-45d4-af0c-f516b817d3a7 . - -agOnt:edge_CVE-2017-3169_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3169 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2811_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B99B000032F9 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" ; - aml_ontology:hasEI amlImp:ei_Representation_6FE99409-18FD-4091-B0EB-26699CF84285 ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032FA . - -agOnt:edge_CVE-2014-2355_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_T510198_7_A2136160067_AF138E59-0000-17AC-556E-B570000031F7 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "T510198_7_A2136160067" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_A2136160067_4DB273D7-12ED-4A80-B6F5-8C8BE1E625A0 , amlImp:ei_Attachment_A2136160067_707CBBF0-A53F-45FC-9B77-9AA06B8167A0 . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -secont:CVE-2013-3958 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-3958"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:Process a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Process" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -amlImp:ei_Attachment_KRxxxRultra_6_1_E0F4BB71-0B46-47F7-8EAB-DA15C1B77344 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_KRxxxRultra_6_1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-1 DataPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 KRC4 DataSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_DataPlug2_4ef8a268-644b-423c-9777-7e8d839f5dd1 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_DataSocket_7e49a15d-3674-4c83-9b3e-cb30a3ba0fe8 . - -amlImp:ei_Attachment_030GES190_47E90BE3-E2EB-46FD-AE00-CDD36656F0BF - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030GES190" . - -amlImp:ei_LogicalEndpointOPC2_448bc6ba-609c-4d66-87bf-f01b86c53b63 - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC2" . - -amlImp:ei_EthernetSocket1_4e373d26-b42d-4b7d-9b6b-eaf79f97a56f - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire6 EthernetPlug1 - EnterpiseDMZ CiscoCatalystSwitch EthernetSocket4" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_10541cca-9d69-4f11-a2a3-b486db56df6d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket4_5830331c-a53c-4a17-aa6d-47f99a759b32 . - -amlImp:ei_MotorPlug2_64b94804-57fa-46bf-88dc-c1707dcf5f3b - a amlImp:MotorPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug2" . - -agOnt:edge_CVE-2017-15710_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-15710 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_030RB_200_KR240R2700prime__030GES290_AF138E59-0000-17AC-556E-B8F4000032BB - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_200_KR240R2700prime__030GES290" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030GES290_9EDB471F-C9CF-4883-AAE1-17479DC5775C , amlImp:ei_Attachment_030GES290_97188306-9230-47AC-BA4B-87E8DD3FF857 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003358 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_4085F647-5ECB-4C97-B26F-AA543878A0A8 . - -amlImp:ie_Tuer_re.1_AF138E59-0000-17AC-556E-BC490000333C - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Tuer_re.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "45"^^rdfs:Literal ; - amlImp:hasFrame_x "0.345614"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.845599"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_CB398B71-D498-4994-B0EA-51B6F3D39F71 ; - aml_ontology:hasIE amlImp:ie_Tuer_re.1_ToolMountPoint_AF138E59-0000-17AC-556E-BC490000333D . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_BehaviourLogicInterfaceStateChart_cbd11478-d942-4201-9151-d2e30b2dc0bb - a amlImp:BehaviourLogicInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "BehaviourLogicInterfaceStateChart" ; - amlImp:hasRefURI "file:///LogicXML/Behaviour_Clamp_StateChart_AMLextensions.xml#UUID_001" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-3 DataPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 KRC4 DataSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_DataPlug2_f58826ef-44b9-4605-bb45-2b82cd5afb04 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_DataSocket_807dacba-3d37-4be1-a95d-f534dc00bca4 . - -amlImp:ie_Portlist_05aab978-bf3d-467f-b16f-a60ff74a5837 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket5_66987355-b53a-4fd4-af31-c78628bfbbf6 , amlImp:ei_EthernetSocket4_1f3b99b8-9092-42d0-98c9-cecbf3b5a189 , amlImp:ei_EthernetSocket3_b1f45de9-a7ae-4327-b537-ae7c5a0c13a5 , amlImp:ei_EthernetSocket2_0df11b8c-5e02-4e67-a3e9-c4588992b1b1 , amlImp:ei_EthernetSocket1_cb93258e-84a8-49b8-b7fd-63ee9eeba5b2 . - -agOnt:edge_UnusedOpenPort_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_010GRF141_Tool2_AF138E59-0000-17AC-556E-B56E000031F0 - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_Tool2" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0.583734"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.572997"^^rdfs:Literal ; - amlImp:hasFrame_z "0.765788"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool2_D32F8756-B290-460E-A668-74370A2D9F9D , amlImp:ei_Attachment_COLLADA_Tool2_655093C7-7BDB-4F13-8FC7-E89092B8E9C0 . - -agOnt:edge_CVE-2019-0282_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0282 . - -amlImp:ei_Representation_276A0F61-743E-4E2F-AE66-694592F17EF1 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -secont:CVE-2014-1964 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-1964"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:ExternalDataConnector - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "ExternalDataConnector" ; - rdfs:subClassOf amlImp:AutomationMLBaseInterface . - -agOnt:edge_CVE-2018-1283_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1283 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_EthernetWire7_0514090c-642e-4641-8d27-88259f14c373 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire7" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_2a70d441-04eb-4780-a125-a1f913f715f7 , amlImp:ei_EthernetPlug1_558636dd-7408-4de4-8e3b-14464da10877 . - -agOnt:edge_CVE-2014-5074_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_EthernetSocket1_6f2435d9-f622-4749-996c-379e9d87b83d - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_010GRF141_Base1_AF138E59-0000-17AC-556E-B56E000031ED - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_Base1" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Base1_E8C48DD4-8B87-425B-95A3-CC385AB5FACC , amlImp:ei_Attachment_Base1_EFC464FF-8599-4796-9B56-F961B443C71C . - -agOnt:edge_CVE-2013-2811_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_CVE-2016-2201_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -secont:CVE-2013-2811 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-2811"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.1"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire8 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket8" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_0b0f750d-a2fd-4a30-94d6-55f0562317c5 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket8_393fa348-770a-4479-9dfa-a2a7786a0bda . - -agOnt:vertex_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2017-3167_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-10092_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-9788_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-3169_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-10098_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-4975_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-1546_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_UntrustedCrossZoneConnection_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2018-1312_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_InsecureProtocolUsed_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2016-8743_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2018-1283_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-15710_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0278_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2016-8612_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-7679_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-15715_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0316_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2016-8740_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-7668_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0337_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2017-9798_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0283_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0211_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0282_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2018-17199_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:vertex_has_Weight 5.5e0 . - -amlImp:ei_Attachment_030RB_100_tool_2_couple_sim_DA580463-4245-43C4-AAC0-D9C908E50C4A - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_030RB_100_tool_2_couple_sim" . - -secont:CVE-2014-8587 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-8587"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:ei_LogicalEndpointPROFIsafe2_2a1403ac-30d9-43de-9f26-2f7cbe82c75c - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe2" . - -amlImp:ei_EthernetSocket1_17d6bbc4-df3d-4f05-9548-82e7227cf8bd - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_Schutzzaun_2000x2000.5_AF138E59-0000-17AC-556E-BC500000339D - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.5" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "-12.5"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC500000339F , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC500000339E . - -secont:CVE-2019-0283 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-0283"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 . - -agOnt:edge_CVE-2016-2201_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection3 LogicalEndpointProfinet2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_300 030RB_300 ControlCabinet SimaticS71516F LogicalEndpointProfinet" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointProfinet2_04af5cee-6f9d-4f44-afe9-de3393fc7bf4 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointProfinet_5e889b68-e366-4560-b3ee-318c59c8aea5 . - -amlImp:ei_Attachment_COLLADA_ToolMountPoint_DD6BF46F-DA09-4C35-BAE1-BB1EF0790387 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_1_FrameOfInterest_ToolMountPoint"^^rdfs:Literal . - -amlImp:ei_EthernetPlug1_61884fe6-00de-4e36-b9b0-ad4d74f455e0 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a owl:NamedIndividual , amlImp:PLC ; - rdfs:comment "InternalElement" ; - rdfs:label "SimaticS71516F_4" ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "simatic_s7-1516f-3_pn\\/dp_cpu" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_3336a3ca-fd3b-4277-b611-02b7a7a4d9af , amlImp:ie_LogicalPortList_90c47391-c2fd-40b9-9dc0-1ab2f2524e08 , amlImp:ie_Program_66b2195d-ec2d-472f-9407-558770fe8075 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003378 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_62B4B848-BFDC-4495-8680-8FC6872659F3 . - -amlImp:ie_CiscoFirewall_a3925fe5-0ac1-487b-b18f-7cfb705ce575 - a amlImp:Firewall , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "CiscoFirewall" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_Cisco1921Router_ff30129c-f56a-4593-9e06-0228c9bd14b9 ; - amlImp:hasCpePart "o" ; - amlImp:hasCpeProduct "adaptive_security_appliance_software" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "9.1.5.10" ; - aml_ontology:hasIE amlImp:ie_Portlist_871222d1-7d4d-412d-9c10-aeef833e4b4b . - -agOnt:edge_CVE-2016-2201_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -icsSecOnt:Hazard_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 . - -amlImp:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_2a3b0c7c-db96-420b-9280-49ac1764428d , amlImp:ei_EthernetPlug1_c2d51637-661b-4bdd-87e4-5511903613ab . - -agOnt:edge_UntrustedCrossZoneConnection_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_CVE-2014-5074_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2013-0679_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0679 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC500000339F - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_B51229A6-6E99-46CE-A079-54A47478155C . - -agOnt:edge_CVE-2016-2200_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2016-4975_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-4975 . - -agOnt:edge_CVE-2014-4682_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4682 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003353 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_42DCF521-EC77-44FA-8A81-B0CCA35E956C . - -secont:CVE-2013-6823 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-6823"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.4"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -agOnt:edge_InsecureAlgorithmUsed_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability secont:InsecureAlgorithmUsed . - -amlImp:WirelessHARTGateway - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "WirelessHARTGateway" ; - rdfs:subClassOf amlImp:NetworkDevice . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_NotSeparatedWirelessDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire1 EthernetPlug2 - DMZ Cisco1921Router EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_1614d03b-de78-4762-93d1-7ad27cf07fa6 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_2f28d804-7a56-424f-b7b7-27e66f84eb16 . - -agOnt:edge_CVE-2013-6819_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6819 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire2 EthernetPlug1 - DMZ Cisco1921Router EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_61884fe6-00de-4e36-b9b0-ad4d74f455e0 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_7db774dd-f913-4c9e-a710-881a4adf8731 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_EthernetWire1_c2af52c8-e16d-40f9-9b36-e00abb2f9d70 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_1614d03b-de78-4762-93d1-7ad27cf07fa6 , amlImp:ei_EthernetPlug1_b8ca4279-9c8f-496f-8536-ea084e697182 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ei_EthernetPlug1_9d8f0b1c-1839-48c7-ad79-e29f222bf27e - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ei_Attachment_COLLADA_Base1_28302766-3BA0-4027-8434-94686D520E36 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_FrameOfInterest_Base1"^^rdfs:Literal . - -amlImp:ie_Tuer_re.1_ToolMountPoint_AF138E59-0000-17AC-556E-BC490000333D - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "Tuer_re.1_ToolMountPoint" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "1.193536"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.005607"^^rdfs:Literal ; - amlImp:hasFrame_z "1.99"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_ToolMountPoint_13C44878-2FB3-4BAA-BCBE-994C3E02CCA1 , amlImp:ei_Attachment_COLLADA_ToolMountPoint_06A4CCB6-5171-4A64-B5A8-2C0B12D6A2B1 . - -agOnt:edge_CVE-2013-6822_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6822 . - -agOnt:edge_CVE-2013-6819_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-6819 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_EthernetPlug2_046841d8-4a43-4d61-b003-35769f7e3992 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2014-5074_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B99B000032F6 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_saferobotparts_Tool1_1_5EC2AB6D-9DDD-4DBB-88AF-424D6D5DFFCA , amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_DC9884DE-BD71-41D8-88D3-8B7FBB367265 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetSocket7_bddd02f6-f870-4457-84f6-cb18ba0b1001 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket7" . - -agOnt:edge_CVE-2016-2200_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B99B000032F8 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0.24"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_ToolMountPoint_985645AC-ED86-46F0-846E-1A7D4E8CFCB5 , amlImp:ei_Attachment_ToolMountPoint_ABBA360A-8455-4F60-818A-CB3D094EF3F6 . - -amlImp:ie_020RB_100_AF138E59-0000-17AC-556E-B57B00003200 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "020RB_100" ; - aml_ontology:hasIE amlImp:ie_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B57B00003201 , amlImp:ie_020RB_100_AF138E59-0000-17AC-556E-B5B000003222 , amlImp:ie_020GRF141_AF138E59-0000-17AC-556E-B5B300003230 , amlImp:ie_020GES191_AF138E59-0000-17AC-556E-B5B200003226 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_ToolMountPoint_86312CDD-28DE-4047-B7D9-63FF3A9946F5 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - -secont:CVE-2019-13929 - a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-13929"^^xsd:anyURI ; - secont:vulnerability_on_Asset amlImp:ie_SimaticIT_ce9c09d1-f671-4eb0-9d22-c0106e731b6f . - -agOnt:edge_CVE-2013-2811_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_CVE-2016-2200_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2013-2785_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003373 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_2E1271DE-F7D1-4D88-BD9D-619D9550B886 . - -secont:BusinessInterruption_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 . - -agOnt:edge_CVE-2016-2200_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:BusinessZone a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "BusinessZone" ; - rdfs:subClassOf amlImp:ITZone . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Peripherie_A_AF138E59-0000-17AC-556E-BC490000333F - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Peripherie_A" ; - aml_ontology:hasEI amlImp:ei_Representation_827A12D9-F83E-4276-8741-58ED0E848D0E . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B84F00003260 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" ; - amlImp:hasFrame_rx "180"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "85.501"^^rdfs:Literal ; - amlImp:hasFrame_x "0.033828"^^rdfs:Literal ; - amlImp:hasFrame_y "-1.220507"^^rdfs:Literal ; - amlImp:hasFrame_z "1.543415"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_8D4DE416-D829-48EB-BE69-C8455E4952DB ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F00003261 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_ITOTCrossConnection_ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 ; - agOnt:edge_has_Vulnerability icsSecOnt:ITOTCrossConnection . - -agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_010GRF141_AF138E59-0000-17AC-556E-B159000031E4 - a amlImp:Clamp , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141" ; - amlImp:hasFrame_rx "53.275"^^rdfs:Literal ; - amlImp:hasFrame_ry "-51.967"^^rdfs:Literal ; - amlImp:hasFrame_rz "177.879"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.413583"^^rdfs:Literal ; - amlImp:hasFrame_y "2.852547"^^rdfs:Literal ; - amlImp:hasFrame_z "3.134476"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_BehaviourLogicInterfaceStateChart_cbd11478-d942-4201-9151-d2e30b2dc0bb , amlImp:ei_Representation_6571DCB9-A8B9-4A6F-89A3-1229FA6138BC , amlImp:ei_LogicInterfaceTimingDiagram_d1622fae-7da4-49f0-b458-91d7ee25628c ; - aml_ontology:hasIE amlImp:ie_010GRF141_Tool1_AF138E59-0000-17AC-556E-B56E000031EF , amlImp:ie_010GRF141_Base1_AF138E59-0000-17AC-556E-B56E000031ED , amlImp:ie_010GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B56E000031F2 , amlImp:ie_010GRF141_Tool2_AF138E59-0000-17AC-556E-B56E000031F0 , amlImp:ie_010GRF141_Base2_AF138E59-0000-17AC-556E-B56E000031EE , amlImp:ie_010GRF141_010GRF141_A2136160067_SFK-HAB-010_AF138E59-0000-17AC-556E-B56E000031F1 . - -amlImp:ie_benachbarte_Zellen_A_AF138E59-0000-17AC-556E-BC490000333E - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "benachbarte_Zellen_A" . - -amlImp:ei_LogicInterfaceActivityOnNode_89b75af1-3a02-4d85-a4e6-c491eb2dacb3 - a amlImp:SequencingLogicInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicInterfaceActivityOnNode" ; - amlImp:hasRefURI "file:///LogicXML/Sequencing_Station_Activity-on-node-network_AMLextensions.xml#UUID_001" . - -amlImp:ei_Representation_97EC293B-56FD-4FE8-A837-981070F4B323 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_1_Product.dae" . - -amlImp:ei_Attachment_OKF_Standard_F72D600B-0F39-45E2-A217-43F7FA85DEC0 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_OKF_Standard" . - -amlImp:ei_Attachment_COLLADA_030RB_100_SWP_030R1_030_W_1331E1B0-BB11-40AF-832D-8561245D922F - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030RB_100_SWP_030R1_030_W" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - amlImp:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_030RB_100_SWP_030R1_030_W"^^rdfs:Literal . - -amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_539FEDEE-1804-41A1-A512-7CA535BB99C3 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_1_Rep.dae#KR210R2700prime_KRxxxRultra.6_1" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_1_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal . - -amlImp:Carrier a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Carrier" ; - rdfs:subClassOf amlImp:DiscManufacturingEquipment . - -amlImp:ei_MotorPlug2_d1668324-4fcd-4002-9acb-5b6215fce49d - a amlImp:MotorPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorPlug2" . - -agOnt:edge_CVE-2013-2785_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_LogicalEndpointOPC_4a38d310-5447-4ac6-88a7-74bfc25172ec - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC" . - -amlImp:ei_LogicalEndpointPROFIsafe1_eafdfbba-1d80-48a8-b74b-3b27aaf71c8b - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe1" . - -agOnt:edge_UntrustedCrossZoneConnection_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -icsSecOnt:Hazard_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a icsSecOnt:Hazard ; - secont:consequence_impacts_Asset - amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_97FE712D-73F0-4ED5-BF25-582430D8045C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_saferobotparts-Tool1.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_AttachmentPoint_saferobotparts-Tool1.1"^^rdfs:Literal . - -agOnt:edge_CVE-2014-0751_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0751 . - -agOnt:edge_CVE-2013-0679_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0679 . - -amlImp:ei_EthernetSocket_ebfabd7d-e0a0-425d-979f-88e726ba20cc - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket" . - -agOnt:edge_CVE-2017-7679_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7679 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business LogicalNetwork LogicalEndpointHTTPConnection1 LogicalEndpointHTTP-1 - Business BusinessAppServer1 LogicalPortList LogicalEndpointHTTP-2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointHTTP-1_db5d1336-2a10-439c-9961-6450ecc7a047 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointHTTP-2_bcd4438c-0472-4144-b5b3-3e05ed6bb1d2 . - -secont:CVE-2012-3918 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-3918"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_CiscoCatalystSwitch_9bfbe48e-ee94-4172-97c6-9f5505dddd90 . - -amlImp:ei_Attachment_020RB_100_BH_020R1_010_W_72D81248-6CC6-4A1C-BDAB-AB7EC677819F - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020RB_100_BH_020R1_010_W" . - -amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B5B00000321F - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" ; - aml_ontology:hasEI amlImp:ei_Representation_087655E1-F357-4975-AA12-F085961CF310 ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B5B000003220 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:Program a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Program" . - -amlImp:ie_Cisco1921Router_49a3e9c9-a693-4052-8084-3f2080bb0a16 - a owl:NamedIndividual , amlImp:Router ; - rdfs:comment "InternalElement" ; - rdfs:label "Cisco1921Router" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_CiscoCatalystSwitch_754502d8-ae61-4226-b3ca-e9f30563bfba ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "1921_integrated_services_router" ; - amlImp:hasCpeVendor "cisco" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_d6aa692a-55a6-46ed-8d0d-610e43b40ecd . - -agOnt:edge_CVE-2016-8743_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8743 . - -amlImp:CarrierHandlingSystem - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "CarrierHandlingSystem" ; - rdfs:subClassOf amlImp:Transport . - -amlImp:ie_ScalanceX414-3e-1_f54529af-7587-4d9f-be29-a7c8bfdc1db4 - a amlImp:Switch , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ScalanceX414-3e-1" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 , amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "scalance_x414-3e_firmware" ; - amlImp:hasCpeVendor "siemens" ; - amlImp:hasCpeVersion "2.1.1" ; - aml_ontology:hasIE amlImp:ie_Portlist_8ffe3a53-af7b-4bec-a3ec-29d29dfbf891 . - -agOnt:edge_CVE-2014-1960_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-1960 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection3 LogicalEndpointProfinet2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 ControlCabinet SimaticS71516F LogicalEndpointProfinet" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointProfinet2_2fc773b5-2686-4d82-bc98-5f6dc599daad ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointProfinet_7e7fba22-6784-4256-a18e-9699fe75df70 . - -amlImp:ie_KukaDataWireX21-4_398ef23d-1260-4184-9c1c-765b3ce74470 - a amlImp:DataWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaDataWireX21-4" ; - aml_ontology:hasEI amlImp:ei_DataPlug2_ec75d2b6-d66e-422a-b6a4-b8fd93fc5597 , amlImp:ei_DataPlug1_9a404f47-0a3c-4ac6-a661-f24926d8101d . - -amlImp:ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 - a amlImp:LogicalConnection , amlImp:HTTP , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalHTTPConnection1" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointHTTP-2_ede3a8fd-21f5-4d63-978e-50cd5b01e756 , amlImp:ei_LogicalEndpointHTTP-1_b4d46f14-64ef-466b-86c3-3ab92e1d12eb . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire10 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket10" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_c0f21b27-bf5a-4459-befb-23b245900980 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket10_17701d76-794d-4eda-9aa1-44dfd9ee1b18 . - -amlImp:ie_Schlitten_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B159000031E2 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten_010RB_100_KR240R2700prime_" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_010RB_100_KR240R2700prime__CE0465E3-A2EA-42E2-8086-A53E69AA7988 , amlImp:ei_Attachment_010RB_100_KR240R2700prime__F70A37BF-82A5-4540-BDEB-3B9BB23BE8BC . - -agOnt:edge_CVE-2016-2201_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ei_DataSocket_807dacba-3d37-4be1-a95d-f534dc00bca4 - a amlImp:DataSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataSocket" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -agOnt:edge_CVE-2018-17199_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-17199 . - -amlImp:ei_Attachment_OKF_Standard_17077B0A-E676-4271-9388-E3BF7C6044CA - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_OKF_Standard" . - -amlImp:ei_EthernetSocket3_b1f45de9-a7ae-4327-b537-ae7c5a0c13a5 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -amlImp:ei_WirelessInterface1_1856e465-4f19-4308-a9fb-5b903c6addf1 - a amlImp:WirelessInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessInterface1" . - -amlImp:ei_EthernetPlug1_dbdcbb3f-00e1-4c8d-a548-3dc25891facb - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaMotorWire3 MotorPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 KRC4 MotorSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_MotorPlug1_3d417e2d-9b3b-4025-90c0-225d2f12ae17 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_MotorSocket_c957622e-197f-485d-bec6-29f81153fb2f . - -amlImp:ie_EthernetWire2_e71d3e18-31a4-4133-9455-e4a54c36efe9 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire2" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_2ec69119-66c8-457e-8423-4ec33f099b20 , amlImp:ei_EthernetPlug1_e74852e8-e491-4945-91d7-8f8d4f9863cf . - -amlImp:ei_Representation_DCEE9D53-0DF2-4C1F-8C5E-0C7B2B5D5E0D - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6" . - -amlImp:ei_EthernetSocket1_2d23b693-4fdd-45f5-8541-22dfd91ad4b6 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2013-2823_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:ie_Schutzzaun_2000x1000.4_AF138E59-0000-17AC-556E-BC4F00003399 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.4" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-12.5"^^rdfs:Literal ; - amlImp:hasFrame_y "3.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4F0000339B , amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4F0000339A . - -agOnt:edge_CVE-2017-3167_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3167 . - -amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B155000031D3 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" ; - aml_ontology:hasEI amlImp:ei_Representation_160C2A8B-B454-4167-9405-4F182A8F2BBC ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D4 . - -icsSecOnt:HTTPS owl:equivalentClass amlImp:HTTPS . - -amlImp:ie_010VRE100_010RB_100_BH_010R1_010_W_AF138E59-0000-17AC-556E-B56E000031F4 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010VRE100_010RB_100_BH_010R1_010_W" ; - aml_ontology:hasEI amlImp:ei_Attachment_010RB_100_BH_010R1_010_W_F9BFE6F1-2169-4B07-B210-1C0EF6BCC960 . - -agOnt:edge_CVE-2016-2200_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B0000335C - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_91C60239-4DC6-4B63-B6A6-D4FB49CDCA2C . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4F0000339B - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_B85D2454-3205-4346-B4E5-E27451049CCA . - -agOnt:edge_CVE-2013-2811_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:ie_Portlist_75c30c18-a573-40f4-af44-7c50445b4dc4 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket2_cc03190d-ad77-410a-87c6-ce5e32fe5894 , amlImp:ei_EthernetSocket1_3b2421f0-e997-4a03-a6c3-f6959e16a1d2 . - -amlImp:ei_LogicalEndpointHTTP-2_ede3a8fd-21f5-4d63-978e-50cd5b01e756 - a amlImp:LogicalEndpointHTTP , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-2" . - -agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:vertex_has_Edge agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-0751_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2019-6833_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_UnusedOpenPort_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-0750_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2013-2823_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_CVE-2013-2785_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-2355_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_CVE-2013-2811_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NoPLCProgramCopyProtection_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:vertex_has_Weight 8.0e0 . - -amlImp:ControlEquipment - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ControlEquipment" ; - rdfs:subClassOf amlImp:Resource . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2014-4685_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4685 . - -agOnt:edge_CVE-2016-2200_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_Schlitten_020RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B5B30000322E - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten_020RB_100_KR240R2700prime_" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_020RB_100_KR240R2700prime__85BBF595-6FC5-4013-B6F5-AB2B43CAA857 , amlImp:ei_Attachment_020RB_100_KR240R2700prime__9E3A7778-5111-4959-8BE3-A2B2D70E4358 . - -amlImp:ie_Program_66b2195d-ec2d-472f-9407-558770fe8075 - a amlImp:PLCProgram , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Program" ; - amlImp:hasCopyProtection "True" ; - amlImp:hasKnowHowProtection "True" . - -agOnt:edge_CVE-2013-0678_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0678 . - -amlImp:ie_F19704000046499800797_001_bez_axis.1_AF138E59-0000-17AC-556E-B8F6000032CC - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19704000046499800797_001_bez_axis.1" ; - aml_ontology:hasEI amlImp:ei_Representation_2608F01B-0F93-4588-818C-4330BDCE0AAB . - -agOnt:edge_CVE-2013-0676_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0676 . - -amlImp:ie_Schutzzaun_2000x1000.3_AF138E59-0000-17AC-556E-BC50000033A9 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.3" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-20.05"^^rdfs:Literal ; - amlImp:hasFrame_y "8.5"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a amlImp:WirelessHARTSensor , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WHARTSensor1" ; - aml_ontology:hasIE amlImp:ie_Portlist_8961baa4-008f-4e8f-a746-d08c6e4bd536 . - -agOnt:edge_CVE-2016-2201_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Representation_BAB90778-2C84-4FF7-A237-89686A4B9A36 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_2_Product.dae" . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_EthernetSocket1_a45b3032-c03b-4410-80a0-8f69fe26fef2 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -agOnt:edge_CVE-2016-2201_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalPROFIsafeConnection4 LogicalEndpointPROFIsafe1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN3 LogicalEndpointPROFIsafe" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointPROFIsafe2_2a1403ac-30d9-43de-9f26-2f7cbe82c75c ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointPROFIsafe_f8375d35-7820-469d-9aaa-5ab3c8bb2eef . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection2 LogicalEndpointOPC1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 010RB_100_KR240R2700prime_ LogicalEndpointOPC" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC1_c8dda586-0a8d-4aed-b41b-1070f0e56e4a ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC_871d320f-b7a9-4fa2-9b23-c975da0cc485 . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug1_037d7f93-efa5-4f61-b40a-107192afb27b - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_CVE-2017-3169_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-3169 . - -agOnt:edge_CVE-2016-2201_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedWirelessDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_Portlist_ea23fc45-ad94-4b86-8a4c-c4d759446df2 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket5_7341e507-7cca-4692-90d1-7efca1a55850 , amlImp:ei_EthernetSocket4_47f2bfca-7a36-4ae8-b955-b5aa88e734b8 , amlImp:ei_EthernetSocket3_c3e33c4a-bb75-4f10-9720-c8eea6ef90c9 , amlImp:ei_EthernetSocket2_b8fd1fdb-5185-47da-a635-425c897b4a0e , amlImp:ei_EthernetSocket1_3af32e21-6a1c-4d22-aa93-ebd5f2174376 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire8 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 SimaticS71516F EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_2eb48f3e-95ff-459f-a252-3338bb312a91 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_0e28cd59-35a1-4726-b672-366db5780dd4 . - -icsSecOnt:Modbus owl:equivalentClass amlImp:Modbus . - -agOnt:edge_UnusedOpenPort_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Representation_91C60239-4DC6-4B63-B6A6-D4FB49CDCA2C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ei_Attachment_COLLADA_Base1_B037040B-1EA1-4EC9-9BA3-0B0C02C43FC6 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063199800000_001.1_Product.dae#F19721000063199800000_001.1" ; - amlImp:hasTarget "./F19721000063199800000_001.1_FrameOfInterest_Base1"^^rdfs:Literal . - -amlImp:AutomationCellZone - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "AutomationCellZone" ; - rdfs:subClassOf amlImp:OTZone . - -amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a amlImp:HMI , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "GECimplicity1" ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "intelligent_platforms_proficy_hmi\\/scada_cimplicity" ; - amlImp:hasCpeVendor "ge" ; - amlImp:hasCpeVersion "8.2" ; - aml_ontology:hasIE amlImp:ie_Portlist_5093df14-ac72-4c01-a4fb-e946b1cda940 , amlImp:ie_LogicalPortList_8195fafc-e6e3-4cc2-aebc-9b75d1c95f5d . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -aml_ontology:hasEI a owl:ObjectProperty ; - owl:inverseOf aml_ontology:hasEIInv . - -agOnt:edge_CVE-2016-8612_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8612 . - -agOnt:edge_CVE-2016-2201_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_Schutzzaun_2000x2000.15_AF138E59-0000-17AC-556E-BC50000033B4 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.15" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "-25.8"^^rdfs:Literal ; - amlImp:hasFrame_y "6.4"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -agOnt:edge_CVE-2013-2785_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ie_EthernetWire5_2eef1c1c-b20e-44eb-883e-3d73bfe36aab - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire5" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_9411fd4d-e3f0-4b82-9726-cc007318a8bf , amlImp:ei_EthernetPlug1_d4e83dfa-6e8a-4b50-b492-2b16780577d6 . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2019-0337_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0337 . - -amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_B5686DD3-ED41-45E2-BD34-08DCE24276FC - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_2_Product.dae#saferobotparts-Tool1_2" ; - amlImp:hasTarget "./saferobotparts-Tool1_2_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire4 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_200 SimaticS71516F EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_b7c90d56-3709-4acc-8562-d7116bd549d1 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_328efddb-d056-40cb-b177-4674361be7be . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Portlist_db884b3c-cf71-41ee-836e-c135f82af4b0 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_34c5a701-1da9-4a1e-b1fc-5e72091da36f . - -amlImp:ie_KukaDataWireX21-2_aa40d1e4-f5d3-4838-93f7-a7c9a7595290 - a amlImp:DataWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaDataWireX21-2" ; - aml_ontology:hasEI amlImp:ei_DataPlug2_9ac880a6-992f-4a72-93c8-697f7184b4a8 , amlImp:ei_DataPlug1_f9ce0072-4c30-4b19-ad58-13d874db959e . - -amlImp:ie_SpotWeldingStation_AF138E59-0000-17AC-556E-B1150000319C - a amlImp:Resource , amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SpotWeldingStation" ; - aml_ontology:hasEI amlImp:ei_Product_29421e10-831f-4fa1-85b0-81bb0687145c , amlImp:ei_Process_59dfad55-376c-4187-be99-f38a65f6e016 ; - aml_ontology:hasIE amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , amlImp:ie_HB51_A_Allgemein_AF138E59-0000-17AC-556E-BC4800003335 , amlImp:ie_WHARTGW1_d3669fd5-544a-4b9b-a960-6b08c6aead4f , amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , amlImp:ie_HB51_Allgemein_AF138E59-0000-17AC-556E-BC4900003343 , amlImp:ie_ST030_AF138E59-0000-17AC-556E-B81A0000323E , amlImp:ie_ControlCabinet_76059c32-6ce6-405d-a4d0-d53172324967 , amlImp:ie_ST020_AF138E59-0000-17AC-556E-B57B000031FF , amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , amlImp:ie_ScalanceX414-3e-1Safety_916ee601-f2c8-4319-a5c3-cd3f99e5431c , amlImp:ie_ST040_Uebergabe_AF138E59-0000-17AC-556E-BC4600003330 , amlImp:ie_ST010_AF138E59-0000-17AC-556E-B124000031B3 , amlImp:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 , amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000338D - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_90269BD9-D7F6-4C26-B852-5F4A9B5D4ECD . - -amlImp:ei_Attachment_COLLADA_030WZD180_8CA5E1BA-F7F7-456A-A423-D1346F8EB8E7 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD180" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_2_Product.dae#KR240R2700prime_2" ; - amlImp:hasTarget "./KR240R2700prime_2_AttachmentPoint_030WZD180"^^rdfs:Literal . - -agOnt:edge_CVE-2014-5074_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:Port a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Port" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug1_dee3d6c3-fd3b-45e8-91d0-72e1c6586630 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2018-1283_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-7668_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_InsecureProtocolUsed_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_CVE-2017-9798_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_UntrustedCrossZoneConnection_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_CVE-2016-8612_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-10092_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2018-1312_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2018-17199_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-3169_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2019-10098_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-8612_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-1546_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-9788_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_InsecureProtocolUsed_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-7668_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-8740_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-3167_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-10092_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-8740_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-3167_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-15710_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2018-1283_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-3169_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_ITOTCrossConnection_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_CVE-2017-9788_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-15710_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-10098_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2019-0211_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-8743_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-7679_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-9798_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_UntrustedCrossZoneConnection_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-4975_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-7679_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-15715_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-4975_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2018-17199_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2017-15715_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-8743_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2018-1312_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 , agOnt:edge_CVE-2016-1546_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0211_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:vertex_has_Weight 0.0e0 . - -amlImp:ie_LogicalPortList_bbc6d915-4d60-4b47-978e-5307bf4de171 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointPROFIsafe_f8375d35-7820-469d-9aaa-5ab3c8bb2eef . - -amlImp:MotorPlug a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "MotorPlug" ; - rdfs:subClassOf amlImp:Motor . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Schutzzaun_2000x1000.9_AF138E59-0000-17AC-556E-BC500000339C - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.9" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "45"^^rdfs:Literal ; - amlImp:hasFrame_x "-12.35"^^rdfs:Literal ; - amlImp:hasFrame_y "7.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -agOnt:edge_CVE-2019-0278_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0278 . - -agOnt:edge_CVE-2013-2785_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B84F00003261 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_72B783F2-A060-496E-812B-BF685CDDB765 , amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_B5686DD3-ED41-45E2-BD34-08DCE24276FC . - -amlImp:ei_Attachment_COLLADA_030DS_251_39FC9ECC-844B-4A96-A434-E19D8C64BBF7 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030DS_251" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_3_Rep.dae#KR210R2700prime_KRxxxRultra.6_3" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_3_AttachmentPoint_030DS_251"^^rdfs:Literal . - -agOnt:edge_CVE-2012-2598_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2598 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000336C - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_276A0F61-743E-4E2F-AE66-694592F17EF1 . - -amlImp:ei_WirelessPlug2_a2d38962-e093-4d87-9399-5affac4a8bef - a amlImp:WirelessPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug2" . - -agOnt:edge_CVE-2019-0282_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0282 . - -amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B5B00000321E - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0.24"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_ToolMountPoint_86312CDD-28DE-4047-B7D9-63FF3A9946F5 , amlImp:ei_Attachment_COLLADA_ToolMountPoint_DD6BF46F-DA09-4C35-BAE1-BB1EF0790387 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:MobileEngineeringWorkstation - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "MobileEngineeringWorkstation" ; - rdfs:subClassOf amlImp:EngineeringWorkstation . - -amlImp:ei_EthernetPlug1_e74852e8-e491-4945-91d7-8f8d4f9863cf - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -agOnt:edge_CVE-2014-1964_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-1964 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_LogicalEndpointHTTP-1_27371c00-7ffc-4820-b129-c971d5e6a739 - a amlImp:LogicalEndpointHTTP , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-1" . - -amlImp:ei_Attachment_010RB_100_BA_010R1_010_W_DD8D2821-6C61-4D15-B3F8-EBB55C14773D - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010RB_100_BA_010R1_010_W" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire7 EthernetPlug1 - OperationsSupport Cisco1921Router EthernetSocket4" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_9ac7da67-a7ec-4547-86fa-c7970ffc8cb9 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket4_c57b5d9b-d2a1-44cf-bb7a-57a60957247a . - -amlImp:ei_DataPlug2_4ef8a268-644b-423c-9777-7e8d839f5dd1 - a amlImp:DataPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug2" . - -agOnt:edge_CVE-2018-2363_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-2363 . - -agOnt:edge_InsecureAlgorithmUsed_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability secont:InsecureAlgorithmUsed . - -agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire3 EthernetPlug2 - DMZ CiscoFirewall EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_d6388a7b-6006-4e47-936e-a3da211e0f5b ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_d507e3e3-1a9c-4957-b399-c96b9c68c09a . - -amlImp:ei_Representation_59FC8794-015E-47D5-B088-E91FE5B7042D - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_4_Product.dae#saferobotparts-Tool1_4" . - -amlImp:ie_F16500000115199800459_001_459_walther.1_AF138E59-0000-17AC-556E-B88800003272 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F16500000115199800459_001_459_walther.1" ; - aml_ontology:hasEI amlImp:ei_Representation_37EE8A38-509B-49B8-8250-C2A5B87C9CC1 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2016-1546_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-1546 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-2785_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ei_LogicalEndpointPROFIsafe1_f03aad7a-9c5a-4f63-8261-c0d0d388e18a - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe1" . - -amlImp:ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB - a owl:NamedIndividual , amlImp:Robot ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_300_KR240R2700prime_" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-9.7"^^rdfs:Literal ; - amlImp:hasFrame_y "4.6"^^rdfs:Literal ; - amlImp:hasFrame_z "1"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_D91E4EE8-36FC-4A96-B1AD-D74806A58E83 ; - aml_ontology:hasIE amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032F5 , amlImp:ie_030RB_300_KR240R2700prime__030GES390_AF138E59-0000-17AC-556E-B99B000032F4 , amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B99B000032F9 , amlImp:ie_Portlist_540cf162-d674-4e8f-a3cd-ed9ee550ef66 . - -amlImp:ei_EthernetPlug1_cc5fabd2-7cde-485b-8843-0f082201c50d - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:ei_LogicalEndpointProfinet1_47666355-7eb2-485b-83b6-b7a83ae24175 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet1" . - -amlImp:ei_Attachment_Base1_30E2039C-1CF6-4646-8B6C-9B738B72FB7D - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -agOnt:edge_CVE-2014-5074_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -icsSecOnt:HTTP owl:equivalentClass amlImp:HTTP . - -amlImp:ie_030GST100_Fahrzeug0_AF138E59-0000-17AC-556E-BC4600003328 - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_Fahrzeug0" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.365"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "-1.795"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Fahrzeug0_77292A8A-4066-49ED-B22F-C5421BD3C570 , amlImp:ei_Attachment_COLLADA_Fahrzeug0_D0245516-3DDF-4338-9D11-3A2A76E3FDB7 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:Facet a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Facet" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2016-2201_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:hasFrame_x a owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - -amlImp:LogicalEndpointOPC-UA - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointOPC-UA" ; - rdfs:subClassOf amlImp:LogicalEndpoint . - -agOnt:edge_CVE-2016-8743_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8743 . - -secont:BusinessInterruption_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a secont:BusinessInterruption ; - secont:consequence_impacts_Asset - amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 . - -amlImp:DataWire a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "DataWire" ; - rdfs:subClassOf amlImp:Wire . - -amlImp:ei_Representation_658227F1-A512-4781-8046-1B78EAF14360 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -secont:CVE-2012-3031 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-3031"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ei_EthernetPlug2_b7c90d56-3709-4acc-8562-d7116bd549d1 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:hasFrame_rx a owl:DatatypeProperty ; - rdfs:range rdfs:Literal . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4B00003359 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_EEBE0762-5E41-4D29-A7C5-BF6F2FA3389D . - -amlImp:ei_EthernetPlug2_d0199789-9c02-44fa-9f62-dfddb1d1a47d - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_CVE-2017-9798_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9798 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D0 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_saferobotparts_Tool1_1_D92A35BF-273E-4B89-A2D0-4D2ED14E6F53 , amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_97FE712D-73F0-4ED5-BF25-582430D8045C . - -agOnt:edge_CVE-2016-2200_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_030RB_100_KR240R2700prime__030GES190_AF138E59-0000-17AC-556E-B84F00003259 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_100_KR240R2700prime__030GES190" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030GES190_C5DC63CF-707A-4E76-BF31-7EEA8F58EB17 , amlImp:ei_Attachment_030GES190_47E90BE3-E2EB-46FD-AE00-CDD36656F0BF . - -amlImp:ei_Attachment_010RB_100_BH_010R1_010_W_F9BFE6F1-2169-4B07-B210-1C0EF6BCC960 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_010RB_100_BH_010R1_010_W" . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B155000031D2 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0.24"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_ToolMountPoint_1E24DD3E-F122-4580-9B81-9AC02620DEEE , amlImp:ei_Attachment_ToolMountPoint_F8DA049F-2302-4F79-8518-ADBA2E42A7CF . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:PortList a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PortList" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire3 EthernetPlug1 - DMZ Cisco1921Router EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_c2d51637-661b-4bdd-87e4-5511903613ab ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_6e7d59c5-d96e-4e5b-814f-e94c5858faea . - -amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B99B000032FB - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_96B9C12E-D951-4BCF-908B-077CA5F64A77 , amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_5A55ABE0-BD31-4E1F-9E07-E06618B9274A . - -amlImp:WarningEquipment - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "WarningEquipment" ; - rdfs:subClassOf amlImp:HMI . - -agOnt:edge_CVE-2019-6833_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -amlImp:ei_Attachment_COLLADA_ToolMountPoint_1E24DD3E-F122-4580-9B81-9AC02620DEEE - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_ToolMountPoint" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_Rep.dae#KR210R2700prime_KRxxxRultra.6" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_FrameOfInterest_ToolMountPoint"^^rdfs:Literal . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Portlist_258962d3-f118-4c36-b219-fdf01b457dce - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket7_bddd02f6-f870-4457-84f6-cb18ba0b1001 , amlImp:ei_EthernetSocket6_c41d5604-d159-42c6-b3c6-2c034d52246b , amlImp:ei_EthernetSocket8_393fa348-770a-4479-9dfa-a2a7786a0bda , amlImp:ei_EthernetSocket11_6847e2e4-aadf-4808-aacd-aeba5837517e , amlImp:ei_EthernetSocket2_2aba6457-9137-470a-b03c-2ea7144890d6 , amlImp:ei_EthernetSocket14_6fa6d0d2-2b34-4115-a14d-18c5a224e54e , amlImp:ei_EthernetSocket13_0c1aaf7d-4170-4621-9edd-109072f8cd7e , amlImp:ei_EthernetSocket5_10ad4d48-9f71-4e8f-b52d-735e19c529ab , amlImp:ei_EthernetSocket4_c1e9b84e-e655-4dff-aa82-866445a091a3 , amlImp:ei_EthernetSocket3_818fe45b-1f74-4b1e-8a8f-71330e70eba1 , amlImp:ei_EthernetSocket9_71125503-ca69-4789-8ab6-2c12a4068e8e , amlImp:ei_EthernetSocket1_829e06ef-1ede-49f3-8e55-a6a18ffcdace , amlImp:ei_EthernetSocket12_eedd7431-8f9c-45a7-8195-d01a4c446656 , amlImp:ei_EthernetSocket10_17701d76-794d-4eda-9aa1-44dfd9ee1b18 . - -amlImp:ie_030GES390_AF138E59-0000-17AC-556E-BC0300003317 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES390" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-9.7"^^rdfs:Literal ; - amlImp:hasFrame_y "4.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_030GES390_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-BC0300003318 , amlImp:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-BC0300003319 . - -agOnt:edge_CVE-2014-2355_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -agOnt:edge_CVE-2014-4684_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4684 . - -amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D4 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "saferobotparts-Tool1.1" ; - amlImp:hasFrame_rx "53.275"^^rdfs:Literal ; - amlImp:hasFrame_ry "-51.967"^^rdfs:Literal ; - amlImp:hasFrame_rz "177.879"^^rdfs:Literal ; - amlImp:hasFrame_x "0.689546"^^rdfs:Literal ; - amlImp:hasFrame_y "0.007554"^^rdfs:Literal ; - amlImp:hasFrame_z "2.164318"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_2AB076C7-7A08-4678-8656-10F75F03EF19 ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031D5 . - -amlImp:ie_010GRF141_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B56E000031F2 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010GRF141_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_E0F4BB71-0B46-47F7-8EAB-DA15C1B77344 , amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_2ED52C4B-9C55-488B-B07A-F6EF75C7D2D1 . - -agOnt:edge_CVE-2014-0750_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:LogicElementInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicElementInterface" ; - rdfs:subClassOf amlImp:PLCopenXMLInterface . - -secont:CVE-2013-6819 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-6819"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:ie_030WZA181_Tool2_AF138E59-0000-17AC-556E-B8B400003289 - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZA181_Tool2" ; - amlImp:hasFrame_rx "-180"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0.325"^^rdfs:Literal ; - amlImp:hasFrame_z "1.3615"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Tool2_44A353F1-8BE9-4797-AE4A-7AD13EFF28F9 , amlImp:ei_Attachment_Tool2_C16118FE-A563-45BB-8398-B75499D64F6E . - -agOnt:edge_CVE-2019-0316_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0316 . - -amlImp:HMIFacet a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "HMIFacet" ; - rdfs:subClassOf amlImp:Facet . - -amlImp:ie_F19721000063102000101_001_zb_hb_gestell_01_fa.1_A2136160067_AF138E59-0000-17AC-556E-BC460000332F - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19721000063102000101_001_zb_hb_gestell_01_fa.1_A2136160067" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_A2136160067_CCE893BB-DBA0-48CB-A537-3E2074D992B1 , amlImp:ei_Attachment_A2136160067_586EE305-FD65-4CD6-BB11-46E5B713178A . - -agOnt:edge_CVE-2017-5372_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-5372 . - -agOnt:edge_CVE-2016-2200_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_Representation_B963E0D8-CD30-41A9-A720-8C7F6C246A26 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_2000x2000.1_Rep.dae" . - -amlImp:ei_LogicalEndpointOPC1_9ff435fc-52d0-4204-a2f3-4d8323e7f1fd - a amlImp:LogicalEndpointOPC , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC1" . - -secont:CVE-2013-2823 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-2823"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.7"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2013-2785_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_D9DF7FC1-FACB-44E1-8C20-72948C52CC73 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_CVE-2016-8740_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8740 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire4 EthernetPlug1 - DMZ CiscoCatalystSwitch EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_cc5fabd2-7cde-485b-8843-0f082201c50d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_341486c1-612f-40ea-81af-36f34b6681c4 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2017-9798_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9798 . - -amlImp:ei_Attachment_Base1_EFC464FF-8599-4796-9B56-F961B443C71C - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -amlImp:ie_LogicalNetwork_ab3bc082-0a9e-4692-9a43-7ed3263bfe6f - a amlImp:LogicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalNetwork" ; - aml_ontology:hasIE amlImp:ie_LogicalOPC-UAConnection_67214374-10d5-414f-b42c-2859f1fbf4c2 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2013-2811_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -amlImp:Order a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "Order" ; - rdfs:subClassOf amlImp:AutomationMLBaseInterface . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Representation_5D06EB89-14A6-45A2-B0F6-E9B81D7B0772 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" . - -amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B8F4000032C0 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "SafeRobotParts.4" ; - aml_ontology:hasEI amlImp:ei_Representation_A0F62C4D-A68D-4C23-9107-E7D8680DD97B ; - aml_ontology:hasIE amlImp:ie_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032C1 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire2 EthernetPlug1 - OperationsSupport Cisco1921Router EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_e74852e8-e491-4945-91d7-8f8d4f9863cf ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_504b0974-f88e-4a2b-9c7f-28d1b54859ce . - -agOnt:edge_CVE-2013-0677_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0677 . - -amlImp:ei_Attachment_COLLADA_020RB_100_BH_020R1_010_W_DC79E57B-40BE-4404-811E-A8A2CFC0E0BE - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020RB_100_BH_020R1_010_W" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct" ; - amlImp:hasTarget "./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_AttachmentPoint_020RB_100_BH_020R1_010_W"^^rdfs:Literal . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire5 EthernetPlug1 - DMZ CiscoCatalystSwitch EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_9c17b165-9777-4fd3-b401-6dd4dc887c0c ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_28d87e93-ae2d-4f6b-afef-ff28b4c995aa . - -agOnt:edge_CVE-2017-7668_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7668 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2014-4003_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4003 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_EthernetPlug2_7024d245-4621-4b60-b25c-d0b72e30892e - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:SCADASystem a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "SCADASystem" ; - rdfs:subClassOf amlImp:Host . - -amlImp:ei_Attachment_saferobotparts_Tool1_1_4211FF36-1735-492B-A9B6-9827AB70D367 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_saferobotparts_Tool1_1" . - -amlImp:ei_EthernetSocket1_83e071e7-772b-4b50-ae5a-70f263a2bddb - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 - a amlImp:LogicalConnection , amlImp:HTTP , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalHTTPConnection1" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointHTTP-2_927ed061-fa2b-47b1-b48c-bca7a559d854 , amlImp:ei_LogicalEndpointHTTP-1_db5d1336-2a10-439c-9961-6450ecc7a047 . - -amlImp:ie_030EKF370_Base1_AF138E59-0000-17AC-556E-BC0300003315 - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF370_Base1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-15"^^rdfs:Literal ; - amlImp:hasFrame_x "2.379211"^^rdfs:Literal ; - amlImp:hasFrame_y "2.319617"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_Base1_B037040B-1EA1-4EC9-9BA3-0B0C02C43FC6 , amlImp:ei_Attachment_Base1_DFFFD347-BA14-4528-A395-6B5BC053FEC3 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire6 EthernetPlug1 - DMZ CiscoCatalystSwitch EthernetSocket4" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_b5d14e27-a73d-475b-a565-2ed93c409c6a ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket4_1feae021-7b03-4bd6-ae49-5c2b699741a3 . - -amlImp:ie_Schutzgittertuer.3_AF138E59-0000-17AC-556E-BC50000033B7 - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzgittertuer.3" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-11.675"^^rdfs:Literal ; - amlImp:hasFrame_y "3.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_E8F7757E-50FE-4AD9-89A8-30C588AE2073 . - -amlImp:Robot a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Robot" ; - rdfs:subClassOf amlImp:DiscManufacturingEquipment . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_Attachment_Base1_DFFFD347-BA14-4528-A395-6B5BC053FEC3 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Base1" . - -agOnt:edge_CVE-2016-8743_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8743 . - -amlImp:ei_EthernetSocket1_e351e1b0-8e14-4fc5-b1b8-4d9a731afe5a - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding KukaDataWireX21-1 DataPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_100 030RB_100 030RB_100_KR240R2700prime_ DataSocket" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_DataPlug1_cf26e9b9-546f-4642-993b-59d4f504f25c ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_DataSocket_92cbf340-ae86-4bbd-9ce9-e9995c8255ff . - -amlImp:ie_Schutzzaun_2000x2000.10_AF138E59-0000-17AC-556E-BC4C00003360 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.10" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-8"^^rdfs:Literal ; - amlImp:hasFrame_y "0.9"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003361 , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003362 . - -agOnt:edge_InsecureProtocolUsed_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2011-1280_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 ; - agOnt:edge_has_Vulnerability secont:CVE-2011-1280 . - -amlImp:BehaviourLogicInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "BehaviourLogicInterface" ; - rdfs:subClassOf amlImp:LogicInterface . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire9 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket9" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_a0c2a075-76ac-4ba9-8431-d3f34cde2777 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket9_71125503-ca69-4789-8ab6-2c12a4068e8e . - -agOnt:edge_CVE-2012-2552_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2552 . - -amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a amlImp:ERP , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "ERP1" ; - amlImp:hasCpePart "a" ; - amlImp:hasCpeProduct "netweaver" ; - amlImp:hasCpeVendor "sap" ; - amlImp:hasCpeVersion "-" ; - aml_ontology:hasIE amlImp:ie_Portlist_8fe56bfd-ee80-4917-bf13-c150f58abf8d . - -agOnt:edge_ITOTCrossConnection_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability icsSecOnt:ITOTCrossConnection . - -amlImp:ei_Representation_B65169F0-9765-40BE-904A-4B9F60B3C413 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -amlImp:ei_LogicalEndpointProfinet2_7df3b19b-64c8-419f-8dba-82cd2b56aa15 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet2" . - -secont:CVE-2019-0211 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2019-0211"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.2"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -aml_ontology:hasRefPartnerSideB - a owl:ObjectProperty . - -amlImp:ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 - a amlImp:OPC , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPCConnection5" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC2_448bc6ba-609c-4d66-87bf-f01b86c53b63 , amlImp:ei_LogicalEndpointOPC1_98472cc7-8ab4-4c62-b4cf-c28f0d4ea391 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:AutomationMLBaseInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "AutomationMLBaseInterface" . - -amlImp:ei_Representation_D91E4EE8-36FC-4A96-B1AD-D74806A58E83 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR240R2700prime_4_Product.dae" . - -amlImp:AutomationMLBaseRole - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "AutomationMLBaseRole" . - -agOnt:edge_CVE-2012-2597_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2597 . - -amlImp:Group a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Group" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2016-1546_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-1546 . - -amlImp:ei_EthernetSocket1_311a9abc-3c8e-4675-a111-fd30738f2732 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - -amlImp:ie_030GST100_030RB_100_SWP_030R1_030_W_AF138E59-0000-17AC-556E-BC460000332A - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GST100_030RB_100_SWP_030R1_030_W" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030RB_100_SWP_030R1_030_W_1331E1B0-BB11-40AF-832D-8561245D922F , amlImp:ei_Attachment_030RB_100_SWP_030R1_030_W_5898418B-3444-4BA6-92A7-F86FFB3BA9EC . - -secont:CVE-2015-0675 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2015-0675"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "8.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_CiscoFirewall_a3925fe5-0ac1-487b-b18f-7cfb705ce575 , amlImp:ie_CiscoFirewall_b4fd0383-bb15-4f01-b928-7113f3604980 . - -amlImp:ei_Representation_C17256CA-C14D-482E-A569-C3F7573CEF98 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - -agOnt:edge_NoPLCProgramCopyProtection_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a amlImp:RemoteManagementSystem , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KUKAConnBox1" ; - aml_ontology:hasIE amlImp:ie_Portlist_db884b3c-cf71-41ee-836e-c135f82af4b0 , amlImp:ie_LogicalPortList_b390e821-e358-4552-b858-b6175a0299f6 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Einzelpfosten.1_AF138E59-0000-17AC-556E-BC4B00003352 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Einzelpfosten.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.6"^^rdfs:Literal ; - amlImp:hasFrame_y "5.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4B00003353 . - -agOnt:edge_CVE-2016-2201_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_InsecureProtocolUsed_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_Portlist_8ffe3a53-af7b-4bec-a3ec-29d29dfbf891 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket3_6fea490b-3e8f-4243-85b9-e6e0d8f24e18 , amlImp:ei_EthernetSocket2_a9bcea30-40e4-4439-a855-e4b088f1254f , amlImp:ei_EthernetSocket1_2d23b693-4fdd-45f5-8541-22dfd91ad4b6 . - -agOnt:edge_CVE-2012-2598_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2598 . - -amlImp:ie_030RB_200_AF138E59-0000-17AC-556E-B8BD000032A1 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_200" ; - aml_ontology:hasIE amlImp:ie_030GES290_AF138E59-0000-17AC-556E-B95D000032D1 , amlImp:ie_030DS_251_AF138E59-0000-17AC-556E-B8F6000032C7 , amlImp:ie_030RB_200_AF138E59-0000-17AC-556E-B8F4000032C3 , amlImp:ie_030GES292_AF138E59-0000-17AC-556E-B95D000032D4 , amlImp:ie_030BH_256_AF138E59-0000-17AC-556E-B961000032D6 , amlImp:ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2 . - -amlImp:Attachment_KRxxxRultra.6.1_030DS_251 - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Attachment_KRxxxRultra.6.1_030DS_251" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_Attachment_030DS_251_1CF069D2-8A94-4875-858E-495058E1D1DD ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_Attachment_KRxxxRultra_6_1_13C77DE5-A517-4144-A4B8-ABA4916BE7D1 . - -amlImp:ie_Schutzzaun_2000x2000.4_AF138E59-0000-17AC-556E-BC50000033AF - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.4" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-24.05"^^rdfs:Literal ; - amlImp:hasFrame_y "8.5"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ie_PhysicalNetwork_a7427a6c-aa57-4280-8286-3fb32644cd25 - a amlImp:PhysicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" ; - aml_ontology:hasIE amlImp:ie_EthernetWire12_7e8a0540-0b2a-4134-9104-cd90225839e7 , amlImp:ie_KukaDataWireX21-3_7abaf367-74a7-42bf-970c-3033504ba368 , amlImp:ie_KukaDataWireX21-2_aa40d1e4-f5d3-4838-93f7-a7c9a7595290 , amlImp:ie_EthernetWire7_9d589b04-4912-4f7a-873a-0747ff392c67 , amlImp:ie_WirelessConnection3_bc94cef8-7f3d-4288-97b8-ccccd9417c35 , amlImp:ie_KukaMotorWire4_77b68f44-01a4-46fd-806f-94287e36d9c0 , amlImp:ie_WirelessConnection2_51229621-463f-4525-94d5-84f953a9f332 , amlImp:ie_EthernetWire2_3704e8f7-3e0d-4486-9ea5-dd16d0d54018 , amlImp:ie_EthernetWire2Safety_f425474b-89ee-4930-b84f-ecd5b6df88ad , amlImp:ie_EthernetWire4_75212180-e95c-412f-b10b-55cdc2da17fe , amlImp:ie_EthernetWire4Safety_c6ac886e-b060-40f0-b786-29a99b3ba30d , amlImp:ie_KukaDataWireX21-1_f9bcd338-ea1c-4aa3-903a-a70a9cbea780 , amlImp:ie_EthernetWire6_98aed8ca-f5d8-49b8-b56e-e5ee1403465d , amlImp:ie_KukaDataWireX21-4_398ef23d-1260-4184-9c1c-765b3ce74470 , amlImp:ie_EthernetWire5_29fc14aa-a2e5-41bd-b367-30ad18d54ba6 , amlImp:ie_EthernetWire3_09746539-4300-43bd-ab98-d837d06720ba , amlImp:ie_KukaMotorWire3_6bdf004d-2d07-4b5b-aedb-2dae69ef17a4 , amlImp:ie_KukaMotorWire2_76a56bb1-787b-456b-8733-b0788033a8f9 , amlImp:ie_EthernetWire10_77bdf526-dfa3-4b54-af3e-3cd95da74176 , amlImp:ie_KukaMotorWire1_43ab2c52-0f69-4f39-8301-50471289f968 , amlImp:ie_EthernetWire8_e1486d13-09f8-4f73-8ec7-16c2468f4a00 , amlImp:ie_EthernetWire14_21929f93-1f05-4f5d-bd82-e6365bfae17e , amlImp:ie_EthernetWire3Safety_ce3bb8ef-6b08-4891-9251-a122f3fae37e , amlImp:ie_EthernetWire5Safety_bc0a7c8c-4372-4e43-9eef-9696da643bfb , amlImp:ie_EthernetWire11_76e8842d-07b5-42d7-9799-0afc9c9482a3 , amlImp:ie_EthernetWire13_e95adefc-5e9c-4f02-b984-26206ca96785 , amlImp:ie_WirelessConnection1_2b31412f-f823-404d-9a4f-f93197181293 , amlImp:ie_EthernetWire9_fc136087-589c-4311-aa51-174b2178a500 . - -amlImp:ei_EthernetPlug2_0378e1b8-e417-41d0-8e5e-6ebb9e8a816b - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -secont:IPBreach_ie_Program_66b2195d-ec2d-472f-9407-558770fe8075 - a secont:IPBreach ; - secont:consequence_impacts_Asset - amlImp:ie_Program_66b2195d-ec2d-472f-9407-558770fe8075 . - -secont:CVE-2016-2200 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2016-2200"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 . - -agOnt:edge_CVE-2017-7668_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2017-7668 . - -amlImp:ie_LogicalPortList_19918ced-34c6-4a99-9e35-b4b517a94461 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC-UA_105f4f40-54fe-4d8f-90d2-bcdfd30c0031 , amlImp:ei_LogicalEndpointHTTP_263fcd54-6a0e-4fbe-a02b-49e390e00943 . - -secont:DataBreach_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 - a secont:DataBreach ; - secont:consequence_impacts_Asset - amlImp:ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4 . - -agOnt:edge_CVE-2014-5074_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_LogicalPROFIsafeConnection2_3cb44b24-52c4-44a8-9be6-f33770e5a0ba - a amlImp:PROFIsafe , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPROFIsafeConnection2" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointPROFIsafe2_eda94389-af6a-4f80-9526-294676019256 , amlImp:ei_LogicalEndpointPROFIsafe1_f03aad7a-9c5a-4f63-8261-c0d0d388e18a . - -amlImp:ei_LogicalEndpointProfinet_4f19c87a-fc28-4fc3-a41f-4a1089481412 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link CarBodyManufacturingFacility CarDoorProductionLine OperationsSupport LogicalNetwork LogicalOPC-UAConnection LogicalEndpointOPC-UA-2 - CarBodyManufacturingFacility CarDoorProductionLine SCADA SimaticWinCCServer WinCC LogicalPortList LogicalEndpointOPC-UA " ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC-UA-2_25f02e01-a974-4880-bd72-bf584af8624d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC-UA_83524b62-a19a-4f1b-8038-23027d20c93c . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ei_LogicalEndpointProfinet2_302e1abe-af1d-4e16-b0ab-43d7eeac5082 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet2" . - -amlImp:ei_DataPlug1_a7bcea0f-8293-4838-870d-b1cc839f1b34 - a amlImp:DataPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "DataPlug1" . - -agOnt:edge_CVE-2016-2201_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:PLCopenXMLInterface - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "PLCopenXMLInterface" ; - rdfs:subClassOf amlImp:ExternalDataConnector . - -agOnt:edge_CVE-2016-2200_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -amlImp:ie_EthernetWire6_fb7b3ad5-3da4-46f1-8bae-fa74fa6b1432 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire6" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_04e43dbe-c305-4ce7-9a37-6966bd003a17 , amlImp:ei_EthernetPlug1_b5d14e27-a73d-475b-a565-2ed93c409c6a . - -agOnt:edge_CVE-2019-0282_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0282 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link DMZ EthernetWire4 EthernetPlug2 - DMZ Jump1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_0378e1b8-e417-41d0-8e5e-6ebb9e8a816b ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_bda9ab9d-a3e8-4753-8a32-2f460711e08c . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5 - a amlImp:Robot , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010RB_100_KR240R2700prime_" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-2.053096"^^rdfs:Literal ; - amlImp:hasFrame_y "2.923347"^^rdfs:Literal ; - amlImp:hasFrame_z "1.007"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_DE5E7FC2-D648-43E0-B047-AB7E219D5453 ; - aml_ontology:hasIE amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031CF , amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B155000031D3 , amlImp:ie_Portlist_e0f59bb3-daa6-4af9-ac74-e89e33084015 , amlImp:ie_010RB_100_KR240R2700prime__Schlitten_AF138E59-0000-17AC-556E-B155000031CE . - -amlImp:ei_EthernetSocket1_328efddb-d056-40cb-b177-4674361be7be - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket1" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection1 LogicalEndpointOPC2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation pcClientHmi1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC2_73557256-bbd1-4dcf-8856-777db2b92c3d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC1_48993549-d4d0-4931-90b2-416e913174d0 . - -amlImp:ie_Schutzzaun_2000x2000.11_AF138E59-0000-17AC-556E-BC50000033AA - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.11" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-90"^^rdfs:Literal ; - amlImp:hasFrame_x "-19.8"^^rdfs:Literal ; - amlImp:hasFrame_y "1.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -agOnt:edge_CVE-2019-6833_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-6833 . - -agOnt:edge_CVE-2015-2823_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2015-2823 . - -amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003383 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_1000" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.11"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_8D671A40-A943-4D73-A015-6C29BB33F97E . - -agOnt:edge_CVE-2016-2200_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -secont:CVE-2014-2355 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-2355"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.9"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 . - -agOnt:edge_CVE-2013-0678_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0678 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:vertex_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a ; - agOnt:vertex_has_Edge agOnt:edge_ITOTCrossConnection_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_CVE-2019-13929_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_InsecureAlgorithmUsed_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_UntrustedCrossZoneConnection_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:vertex_has_Weight 0.0e0 . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Attachment_COLLADA_Fahrzeug0_360DF559-36ED-4A15-9AB9-CA8BC0280E00 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Fahrzeug0" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_Product.dae#F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct" ; - amlImp:hasTarget "./F19721000063101500100_001_zb_hb_ablage_001_layout_kin.CATProduct_FrameOfInterest_Fahrzeug0"^^rdfs:Literal . - -amlImp:ei_Representation_B0D18424-EDDA-4427-B8FF-5F93810A1EBD - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire14 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket14" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_3ce929fc-cb81-4ddd-90c4-566a8dc9d524 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket14_6fa6d0d2-2b34-4115-a14d-18c5a224e54e . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ei_LogicalEndpointHTTP-2_bcd4438c-0472-4144-b5b3-3e05ed6bb1d2 - a amlImp:LogicalEndpointHTTP , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointHTTP-2" . - -amlImp:ei_EthernetSocket4_1a4b042a-eef5-46ce-b350-656ab2b6c060 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket4" . - -amlImp:ie_Portlist_016a33c7-29a6-414b-a3f2-18e2472815e3 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_MotorSocket_06edea8e-1bd1-43f6-a847-1d0eb58f95a9 , amlImp:ei_EthernetSocket_ebfabd7d-e0a0-425d-979f-88e726ba20cc , amlImp:ei_DataSocket_ae28eb4b-ffe8-4cb0-90ad-4b29fa94f73d . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire5 EthernetPlug1 - EnterpiseDMZ CiscoCatalystSwitch EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_6e384bf9-7850-484b-8649-78acf992f8d5 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_2839194e-f970-4f48-9510-c8dd9d7c78f5 . - -agOnt:edge_CVE-2016-8612_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8612 . - -amlImp:ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC50000033AD - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.6" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "-180"^^rdfs:Literal ; - amlImp:hasFrame_x "-17.8"^^rdfs:Literal ; - amlImp:hasFrame_y "1.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -amlImp:ie_030SWZ121_AF138E59-0000-17AC-556E-B89A00003273 - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "030SWZ121" ; - amlImp:hasFrame_rx "180"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-6.025"^^rdfs:Literal ; - amlImp:hasFrame_y "6.8"^^rdfs:Literal ; - amlImp:hasFrame_z "1.2655"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_DCD42D09-0521-4D8B-8260-0871A90200E6 ; - aml_ontology:hasIE amlImp:ie_030SWZ121_Tool1_AF138E59-0000-17AC-556E-B8A900003275 , amlImp:ie_030SWZ121_030WZD121_AF138E59-0000-17AC-556E-B8A900003276 , amlImp:ie_030SWZ121_Base1_AF138E59-0000-17AC-556E-B8A900003274 . - -agOnt:edge_CVE-2014-1964_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-1964 . - -secont:CVE-2016-1445 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2016-1445"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_CiscoFirewall_a3925fe5-0ac1-487b-b18f-7cfb705ce575 , amlImp:ie_CiscoFirewall_b4fd0383-bb15-4f01-b928-7113f3604980 . - -agOnt:edge_CVE-2016-8740_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-8740 . - -amlImp:PalletConveyor - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PalletConveyor" ; - rdfs:subClassOf amlImp:Conveyor . - -amlImp:Transport a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Transport" ; - rdfs:subClassOf amlImp:DiscManufacturingEquipment . - -amlImp:ei_Attachment_Tool2_E2758AB0-3CB2-4730-BD76-A584A0D73D79 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool2" . - -secont:CVE-2012-2595 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2012-2595"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "4.3"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ie_KRxxxRultra.6.1_030DS_251_AF138E59-0000-17AC-556E-B8F4000032BE - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_030DS_251" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030DS_251_39FC9ECC-844B-4A96-A434-E19D8C64BBF7 , amlImp:ei_Attachment_030DS_251_1CF069D2-8A94-4875-858E-495058E1D1DD . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -secont:CVE-2017-3167 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2017-3167"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "7.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -amlImp:ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2 - a owl:NamedIndividual , amlImp:Robot ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_200_KR240R2700prime_" ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-9.3"^^rdfs:Literal ; - amlImp:hasFrame_y "2.8"^^rdfs:Literal ; - amlImp:hasFrame_z "1"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_CB25117E-6041-4191-8F44-8DF18C1C0453 ; - aml_ontology:hasIE amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B8F4000032BC , amlImp:ie_Portlist_67231c27-d1ae-4b80-af71-249d4a0e5e3e , amlImp:ie_030RB_200_KR240R2700prime__030GES290_AF138E59-0000-17AC-556E-B8F4000032BB , amlImp:ie_SafeRobotParts.4_AF138E59-0000-17AC-556E-B8F4000032C0 . - -agOnt:edge_CVE-2014-5074_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ie_Portlist_deedce45-802a-4e57-9535-4cee2506156e - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_e351e1b0-8e14-4fc5-b1b8-4d9a731afe5a . - -agOnt:edge_NotSeparatedWirelessDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2012-2595_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2595 . - -amlImp:ie_LogicalPROFIsafeConnection3_006ef612-4c52-453d-b7e1-aec4495f466d - a amlImp:PROFIsafe , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPROFIsafeConnection3" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointPROFIsafe2_7d57b69d-8413-4f16-8d00-339083413b5f , amlImp:ei_LogicalEndpointPROFIsafe1_a175d785-e4e9-4858-b4c2-1807437c1f63 . - -amlImp:ei_EthernetSocket11_6847e2e4-aadf-4808-aacd-aeba5837517e - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket11" . - -amlImp:ie_Schutzzaun_2000x1000.6_AF138E59-0000-17AC-556E-BC4C00003382 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.6" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "135"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.3"^^rdfs:Literal ; - amlImp:hasFrame_y "1.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C00003384 , amlImp:ie_Schutzzaun_1000_AF138E59-0000-17AC-556E-BC4C00003383 . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4C00003376 - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - aml_ontology:hasEI amlImp:ei_Representation_B963E0D8-CD30-41A9-A720-8C7F6C246A26 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2012-3028_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3028 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -secont:CVE-2018-2363 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2018-2363"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.5"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 . - -amlImp:ProcessCell a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "ProcessCell" ; - rdfs:subClassOf amlImp:ResourceStructure . - -amlImp:ie_LogicalPortList_b390e821-e358-4552-b858-b6175a0299f6 - a amlImp:LogicalPortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalPortList" ; - aml_ontology:hasEI amlImp:ei_LogicalRemoteEndpoint_ceca8b8d-7308-4242-868f-abc070544477 . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_PhysicalNetwork_5e71c71d-ade4-4d68-a3b0-755081652f71 - a amlImp:PhysicalNetwork , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "PhysicalNetwork" ; - aml_ontology:hasIE amlImp:ie_EthernetWire1_ba567ab4-68bf-4961-8c68-999ee70644f4 . - -amlImp:ie_KukaMotorWire1_43ab2c52-0f69-4f39-8301-50471289f968 - a amlImp:MotorWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KukaMotorWire1" ; - aml_ontology:hasEI amlImp:ei_MotorPlug2_462600ad-7698-4968-9f3b-7f38052a6fc5 , amlImp:ei_MotorPlug1_cfbea44c-35e9-4230-81f9-3d799b5a87db . - -agOnt:edge_CVE-2013-0676_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0676 . - -amlImp:ei_Representation_A612DA04-C947-48BC-8556-09B6A6ED73ED - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800458_001_458_walther.1_Rep.dae" . - -agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:vertex_has_Edge agOnt:edge_UntrustedCrossZoneConnection_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_CVE-2014-0751_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2012-1856_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 , agOnt:edge_CVE-2019-13929_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_CVE-2013-2823_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-4061_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 , agOnt:edge_CVE-2013-2811_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2011-1280_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 , agOnt:edge_CVE-2012-0158_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 , agOnt:edge_InsecureAlgorithmUsed_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_CVE-2013-2785_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UntrustedCrossZoneConnection_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_ITOTCrossConnection_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 , agOnt:edge_CVE-2014-0750_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-2355_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2012-2552_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183 ; - agOnt:vertex_has_Weight 8.0e0 . - -amlImp:ei_Attachment_COLLADA_Base1_BF73B23D-DC9F-4523-903A-37ED84CE103F - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F266820012936_x_zange_kin_Product.dae#F266820012936_x_zange_kin" ; - amlImp:hasTarget "./F266820012936_x_zange_kin_FrameOfInterest_Base1"^^rdfs:Literal . - -amlImp:ei_Attachment_Fahrzeug0_77292A8A-4066-49ED-B22F-C5421BD3C570 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Fahrzeug0" . - -amlImp:StaticObject a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "StaticObject" ; - rdfs:subClassOf amlImp:DiscManufacturingEquipment . - -amlImp:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a - a amlImp:OPC-UA , amlImp:LogicalConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "LogicalOPC-UAConnection1" ; - aml_ontology:hasEI amlImp:ei_LogicalEndpointOPC-UA-2_823520ec-9659-47e5-ad5d-1c466e824b11 , amlImp:ei_LogicalEndpointOPC-UA-1_6397e1c3-f31f-49a4-a1f0-1ebb1028c4ea . - -amlImp:ie_Schlitten_Roboterposition_Stellung_A_AF138E59-0000-17AC-556E-B5B30000322F - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "Schlitten_Roboterposition_Stellung_A" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "180"^^rdfs:Literal ; - amlImp:hasFrame_x "4.109732"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0.432"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Roboterposition_Stellung_A_3064499C-E3E0-4D19-BFB6-52579034DA24 , amlImp:ei_Attachment_COLLADA_Roboterposition_Stellung_A_B8E999EC-E6C7-4203-981B-45D1993E6384 . - -agOnt:edge_CVE-2013-3958_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-3958 . - -agOnt:edge_InsecureProtocolUsed_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2013-0678_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0678 . - -agOnt:edge_CVE-2018-1283_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-1283 . - -amlImp:ei_Attachment_ToolMountPoint_98E347B5-C72C-403D-8ABF-6C554CE1AF1D - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_ToolMountPoint" . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -agOnt:edge_NoPLCProgramCopyProtection_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - -amlImp:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_AF138E59-0000-17AC-556E-B8F6000032CE - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "F19704000046499800797_001_cgr_klebepistole_030rb300.1" ; - amlImp:hasFrame_rx "58.317"^^rdfs:Literal ; - amlImp:hasFrame_ry "-65.764"^^rdfs:Literal ; - amlImp:hasFrame_rz "-96.331"^^rdfs:Literal ; - amlImp:hasFrame_x "-0.932093"^^rdfs:Literal ; - amlImp:hasFrame_y "0.629898"^^rdfs:Literal ; - amlImp:hasFrame_z "-0.99742"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_5D43F4AA-F86B-423B-9A36-49228D65F08F ; - aml_ontology:hasIE amlImp:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Base1_AF138E59-0000-17AC-556E-B95D000032CF , amlImp:ie_F19704000046499800797_001_cgr_klebepistole_030rb300.1_Tool1_AF138E59-0000-17AC-556E-B95D000032D0 . - -agOnt:edge_CVE-2013-2785_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalOPCConnection5 LogicalEndpointOPC1 - CarDoorProductionLine SCADA SimaticWinCCServer WinCC LogicalPortList LogicalEndpointOPC" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointOPC1_98472cc7-8ab4-4c62-b4cf-c28f0d4ea391 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointOPC_8910bbbb-0cda-46c5-8a5e-550068c82931 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2012-3034_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-3034 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B81A00003240_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003346 - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.1" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-1.6"^^rdfs:Literal ; - amlImp:hasFrame_y "3.8"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC4900003348 , amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4900003347 . - -amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a amlImp:PLC , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRC4_2" ; - secont:asset_logicallyConnectedTo_Asset - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - secont:asset_physicallyConnectedTo_Asset - amlImp:ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2 , amlImp:ie_ScalanceX414-3e-1_8c33cd3e-5efb-4456-957d-3cf4940c9897 ; - amlImp:hasCpePart "h" ; - amlImp:hasCpeProduct "rc4" ; - amlImp:hasCpeVendor "kuka" ; - aml_ontology:hasIE amlImp:ie_LogicalPortList_b4c2a174-58a1-45bc-a8bd-49af4e933461 , amlImp:ie_Portlist_3ac714dc-9e0c-4520-b8a6-77ef55c18b46 . - -agOnt:edge_CVE-2016-2201_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -amlImp:ie_Schutzzaun_2000x2000.3_AF138E59-0000-17AC-556E-BC50000033A4 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.3" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-11.8"^^rdfs:Literal ; - amlImp:hasFrame_y "0.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire4 EthernetPlug1 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ScalanceX414-3e-1 EthernetSocket4" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_dee3d6c3-fd3b-45e8-91d0-72e1c6586630 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket4_47f2bfca-7a36-4ae8-b955-b5aa88e734b8 . - -agOnt:edge_InsecureProtocolUsed_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link EnterpiseDMZ EthernetWire3 EthernetPlug1 - EnterpiseDMZ Cisco1921Router EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_e20e313c-f472-4a6a-9727-4982e028474f ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_e4931324-995a-4f20-ab21-384fb1ffea6d . - -agOnt:edge_NoPLCProgramKnowHowProtection_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramKnowHowProtection . - -amlImp:ei_EthernetPlug2_2a58752f-b177-4678-ae1d-fe781e8e155e - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_InsecureProtocolUsed_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_010GES191_OKF_Standard_AF138E59-0000-17AC-556E-B159000031DF - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "010GES191_OKF_Standard" ; - aml_ontology:hasEI amlImp:ei_Attachment_OKF_Standard_17077B0A-E676-4271-9388-E3BF7C6044CA , amlImp:ei_Attachment_COLLADA_OKF_Standard_1C85F2CF-41EE-4D14-B007-41D663428464 . - -amlImp:VariableList a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "VariableList" ; - rdfs:subClassOf amlImp:AutomationMLBaseRole . - -secont:CVE-2013-0677 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2013-0677"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "5.8"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC4C0000337E - a amlImp:Resource , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Pfosten" ; - aml_ontology:hasEI amlImp:ei_Representation_B65169F0-9765-40BE-904A-4B9F60B3C413 . - -agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedDeviceConnectedToExternalNetworks . - -amlImp:ie_030RB_300_AF138E59-0000-17AC-556E-B99B000032FC - a amlImp:ControlCabinet , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030RB_300" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "-4.555277"^^rdfs:Literal ; - amlImp:hasFrame_y "7.060808"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_BD4A75D6-499A-4C70-978C-FF43D1C39A1B ; - aml_ontology:hasIE amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 . - -agOnt:edge_CVE-2016-2201_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_UnusedOpenPort_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - agOnt:edge_has_Vulnerability secont:UnusedOpenPort . - -agOnt:edge_CVE-2012-2596_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2012-2596 . - -amlImp:ie_Schutzzaun_2000x2000.19_AF138E59-0000-17AC-556E-BC50000033BB - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x2000.19" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-10.5"^^rdfs:Literal ; - amlImp:hasFrame_y "3.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_Pfosten_AF138E59-0000-17AC-556E-BC50000033BC , amlImp:ie_Schutzzaun_2000x2000.1_AF138E59-0000-17AC-556E-BC50000033BD . - -agOnt:edge_NotSeparatedTemporarilyConnectedDevice_ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedTemporarilyConnectedDevice . - -amlImp:ie_030EKF170_030RB_100_KAPPENFRAESEN_AF138E59-0000-17AC-556E-B8B600003298 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF170_030RB_100_KAPPENFRAESEN" ; - aml_ontology:hasEI amlImp:ei_Attachment_COLLADA_030RB_100_KAPPENFRAESEN_44DF7F6F-DBD2-46BC-B6AF-2C165FB00B07 , amlImp:ei_Attachment_030RB_100_KAPPENFRAESEN_036534DF-B746-49E4-A2A6-673718C355A4 . - -amlImp:ie_030EKW171_Tool1_AF138E59-0000-17AC-556E-B8B60000329D - a owl:NamedIndividual , amlImp:Frame ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKW171_Tool1" ; - amlImp:hasFrame_rx "90"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "90"^^rdfs:Literal ; - amlImp:hasFrame_x "0.048"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.0798"^^rdfs:Literal ; - amlImp:hasFrame_z "0.85385"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_Tool1_048F2A98-7E48-42BC-A8AA-2C5900776DD8 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Enterprise EthernetWire1 EthernetPlug2 - EnterpriseDMZ CiscoFirewall EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_ab091654-77cb-4680-bfd9-3a1651eaf59c ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_2070bd6b-0107-425c-90e0-bfff8fd41c95 . - -amlImp:ei_Attachment_COLLADA_030SWZ121_BHF_601B6485-CF44-4919-B11B-93BC3FE21DBB - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030SWZ121_BHF" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F16500000115199800464_001_walther_Bahnhof_layout_kin_Product.dae#F16500000115199800464_001_walther_Bahnhof_layout_kin" ; - amlImp:hasTarget "./F16500000115199800464_001_walther_Bahnhof_layout_kin_AttachmentPoint_030SWZ121_BHF"^^rdfs:Literal . - -amlImp:ei_Representation_569A7F6B-2B90-433C-B5CD-FD8CDD8C568B - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_CVE-2016-2200_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ei_Attachment_COLLADA_030GRF341_24723857-915E-4B7C-9F83-52228D12256D - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030GRF341" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KR210R2700prime_KRxxxRultra.6_4_Rep.dae#KR210R2700prime_KRxxxRultra.6_4" ; - amlImp:hasTarget "./KR210R2700prime_KRxxxRultra.6_4_AttachmentPoint_030GRF341"^^rdfs:Literal . - -agOnt:edge_CVE-2019-10092_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10092 . - -agOnt:edge_CVE-2014-4686_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4686 . - -amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 - a amlImp:WorkCell , owl:NamedIndividual , amlImp:AutomationCellZone ; - rdfs:comment "InternalElement" ; - rdfs:label "CarDoorPartWelding" ; - aml_ontology:hasIE amlImp:ie_Weldment_e105bfe4-4fa2-48ba-ad51-345457474775 , amlImp:ie_SpotWelding_05c74cf1-7813-4999-9239-2259fcf63aee , amlImp:ie_SpotWeldingStation_AF138E59-0000-17AC-556E-B1150000319C , amlImp:ie_PhysicalNetwork_a7427a6c-aa57-4280-8286-3fb32644cd25 , amlImp:ie_LogicalNetwork_4f912794-d068-4f41-91cf-5359fe0e2853 . - -agOnt:edge_CVE-2018-17199_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 ; - agOnt:edge_has_Vulnerability secont:CVE-2018-17199 . - -agOnt:edge_CVE-2014-0750_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ei_WirelessPlug1_11a45cd3-d809-43a3-b4bb-082cfdb23fa7 - a amlImp:WirelessPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "WirelessPlug1" . - -agOnt:edge_CVE-2014-0750_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:PatchManagementServer - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PatchManagementServer" ; - rdfs:subClassOf amlImp:Host . - -amlImp:ie_030GES190_AF138E59-0000-17AC-556E-B8B40000328E - a amlImp:Structure , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030GES190" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-7.4"^^rdfs:Literal ; - amlImp:hasFrame_y "7.6"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasIE amlImp:ie_030GES190_030RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B8B40000328F , amlImp:ie_F19721000063199800000_001_kr210_1000mm.1_AF138E59-0000-17AC-556E-B8B400003290 . - -amlImp:ie_WebSvr1_21ef26be-2c1f-4cb3-b2fa-3718f2295ff2 - a amlImp:Webserver , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WebSvr1" ; - secont:asset_logicallyConnectedTo_Asset - amlImp:ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - aml_ontology:hasIE amlImp:ie_Portlist_a58da2cd-c3fd-4ea3-a5f1-8201c54f7a3c , amlImp:ie_LogicalPortList_6a59f1f7-e73b-40ed-9f5b-1d74bff7e60c , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:vertex_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2014-5074_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2014-5074_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 , agOnt:edge_CVE-2013-2811_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2014-5074_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f , agOnt:edge_CVE-2013-2823_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2016-2201_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_CVE-2014-5074_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_CVE-2016-2201_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2016-2200_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2200_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NoPLCProgramKnowHowProtection_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_CVE-2016-2200_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2201_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_CVE-2016-2200_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 , agOnt:edge_CVE-2014-0751_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_UntrustedCrossZoneConnection_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedDeviceConnectedToExternalNetworks_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 , agOnt:edge_UnusedOpenPort_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc , agOnt:edge_CVE-2014-2355_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_CVE-2016-2201_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52 , agOnt:edge_CVE-2019-6833_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2 , agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 , agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f , agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 , agOnt:edge_CVE-2014-0750_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_CVE-2013-2785_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 , agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 , agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f ; - agOnt:vertex_has_Weight 0.0e0 . - -amlImp:ei_Attachment_COLLADA_Base2_FD397F7F-44FB-4E25-BB76-102543881756 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Base2" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063101014100_001_zb_hb_greifer_141_layout_kin_Product.dae#F19721000063101014100_001_zb_hb_greifer_141_layout_kin" ; - amlImp:hasTarget "./F19721000063101014100_001_zb_hb_greifer_141_layout_kin_FrameOfInterest_Base2"^^rdfs:Literal . - -amlImp:ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0 - a amlImp:DmzZone , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "IndustrialDMZ" ; - aml_ontology:hasIE amlImp:ie_CiscoCatalystSwitch_34fd9397-ef4d-4ece-86dc-9fad7d8da70b , amlImp:ie_Cisco1921Router_571cf030-3f40-4866-a3b8-0a1fa0cdfe37 , amlImp:ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , amlImp:ie_LogicalNetwork_62b16a82-071a-415d-991a-a42e5536d530 , amlImp:ie_AVSvr1_c61129ec-d69c-4c8f-a1d6-2b34fc8a5154 , amlImp:ie_CiscoFirewall_7a5e9be8-2e95-49e7-bdc5-1cd6b7ef3187 , amlImp:ie_PatchSvr1_45dd2a07-4174-499a-a7d5-9e9652cecf66 , amlImp:ie_PhysicalNetwork_5229fef2-bdc3-4258-8255-01e888c5a482 . - -agOnt:edge_CVE-2014-4684_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-4684 . - -amlImp:ei_Attachment_COLLADA_Zentrierstift1_368AC9B3-3DA1-49F1-AC27-B3FDAB62234C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_Zentrierstift1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_Product.dae#F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1" ; - amlImp:hasTarget "./F19721000063102514100_001_zb_hb_greifer_141_layout_kin_1_FrameOfInterest_Zentrierstift1"^^rdfs:Literal . - -amlImp:ei_Representation_8F6D40ED-CA1B-42AC-BA35-763748533648 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19732000122019015600_001_zb_gestell_fa~1_Rep.dae" . - -amlImp:ei_Representation_8D671A40-A943-4D73-A015-6C29BB33F97E - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Schutzzaun_1000_Rep.dae" . - -agOnt:edge_CVE-2019-13929_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-13929 . - -amlImp:ei_LogicalEndpointOPC-UA-2_cfe19784-1636-4a08-a64c-930bde597f15 - a amlImp:LogicalEndpointOPC-UA , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointOPC-UA-2" . - -agOnt:edge_InsecureAlgorithmUsed_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:edge_has_Vulnerability secont:InsecureAlgorithmUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire6 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST010 010RB_100 010RB_100 SimaticS71516F EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_de1a769d-17aa-4add-a68a-b41e728abac1 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_34fe9386-a622-4165-a63b-62fe8c8ee1d6 . - -agOnt:edge_CVE-2014-2355_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ei_Attachment_020RB_100_BA_020R1_030_W_FD80D8AF-19F0-44A7-8D4D-66E43BD206FA - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_020RB_100_BA_020R1_030_W" . - -agOnt:edge_CVE-2013-2823_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2823 . - -amlImp:ie_Schutzzaun_2000x1000.10_AF138E59-0000-17AC-556E-BC50000033A1 - a owl:NamedIndividual , amlImp:Structure ; - rdfs:comment "InternalElement" ; - rdfs:label "Schutzzaun_2000x1000.10" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-11.8"^^rdfs:Literal ; - amlImp:hasFrame_y "2.55"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal . - -amlImp:ie_010ABS100_AF138E59-0000-17AC-556E-B570000031F8 - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "010ABS100" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "-4.296263"^^rdfs:Literal ; - amlImp:hasFrame_y "4.670705"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_A01832C3-2C2E-4687-A615-0F8AB2364ABC ; - aml_ontology:hasIE amlImp:ie_010ABS100_Fahrzeug0_AF138E59-0000-17AC-556E-B57B000031FC , amlImp:ie_010ABS100_020RB_100_BH_020R1_010_W_AF138E59-0000-17AC-556E-B57B000031FE , amlImp:ie_010ABS100_010RB_100_BA_010R1_010_W_AF138E59-0000-17AC-556E-B57B000031FD . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_CVE-2016-2200_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -amlImp:ie_EthernetWire3_09746539-4300-43bd-ab98-d837d06720ba - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire3" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_8f5bb8d6-2553-4b91-98c5-f05b624b2f65 , amlImp:ei_EthernetPlug1_a611ffbd-b94a-466a-a224-cb2ffdd51793 . - -agOnt:edge_CVE-2017-9788_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2017-9788 . - -agOnt:edge_CVE-2014-5074_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_Attachment_COLLADA_020RB_100_BA_020R1_030_W_8DC9CD04-338E-4FF9-B364-F1D6F49107C9 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_020RB_100_BA_020R1_030_W" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_Product.dae#F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin" ; - amlImp:hasTarget "./F19721000063102000100_001_zb_hb_vorrichtung001_layout_kin_AttachmentPoint_020RB_100_BA_020R1_030_W"^^rdfs:Literal . - -amlImp:ei_Attachment_Schlitten_FC5D79A1-AC60-478E-BCBA-D411F5E20323 - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Schlitten" . - -amlImp:ie_Portlist_a786feca-89da-4e6e-8661-4d0c3d32b922 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_bda9ab9d-a3e8-4753-8a32-2f460711e08c . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link Business EthernetWire2 EthernetPlug1 - Business Cisco1921Router EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_30ab7cca-fd5b-4f17-92c3-b13af6a203f1 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_19ba8293-31eb-4e43-a11f-7b4011957ae1 . - -secont:CVE-2014-4684 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2014-4684"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.0"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_WinCC_0852375b-044f-4664-a6a4-d62a5eeeade2 . - -amlImp:ei_MotorSocket_c957622e-197f-485d-bec6-29f81153fb2f - a amlImp:MotorSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire1 EthernetPlug1 - OperationsSupport CiscoFirewall EthernetSocket2" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_b6584936-fa1a-491b-b25e-667326c59ae4 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket2_c5abb676-677e-46f5-be24-18907e30b6dc . - -agOnt:vertex_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21 ; - agOnt:vertex_has_Edge agOnt:edge_NotSeparatedTemporarilyConnectedDevice_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a , agOnt:edge_CVE-2012-2598_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_UntrustedCrossZoneConnection_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0674_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3028_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3034_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_UnusedOpenPort_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_InsecureProtocolUsed_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_UntrustedCrossZoneConnection_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_CVE-2012-2597_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_ITOTCrossConnection_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_CVE-2013-0679_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0676_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-3957_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4686_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2015-2823_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0678_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3032_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0675_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-2596_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3030_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-3958_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4683_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3031_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-3959_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4684_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-3003_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2013-0677_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_InsecureProtocolUsed_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_JumpSvr1_ef6c51a9-7f8a-4d53-afae-b3e5eff258c4 , agOnt:edge_CVE-2014-4685_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2012-2595_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 , agOnt:edge_CVE-2014-4682_ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:vertex_has_Weight 7.0e0 . - -agOnt:edge_CVE-2014-5074_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link OperationsSupport EthernetWire3 EthernetPlug1 - OperationsSupport Cisco1921Router EthernetSocket3" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_272ee7e2-353b-41fc-a03e-38168d7b4a7f ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket3_1c9c25cb-e95a-4708-a2ca-65e252b24a3f . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -agOnt:edge_InsecureProtocolUsed_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_NoPLCProgramCopyProtection_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NoPLCProgramCopyProtection . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety EthernetWire2 EthernetPlug2 - Link ControlAndProcess CarDoorPartWelding SpotWeldingStation Safety ControlCabinet SimaticS71510SPF1PN EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_e84fe43d-40c6-4132-a8fb-f9c49fb24553 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_3ff51c5f-de99-4bb4-b326-9877d03faecb . - -agOnt:edge_CVE-2014-2355_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-2355 . - -amlImp:ei_Attachment_Tool3_374287F0-9E8B-4537-9A9E-3731543653DB - a amlImp:AttachmentInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_Tool3" . - -amlImp:MotorSocket a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "MotorSocket" ; - rdfs:subClassOf amlImp:Motor . - -amlImp:WirelessPlug a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "WirelessPlug" ; - rdfs:subClassOf amlImp:Wireless . - -agOnt:edge_CVE-2014-5074_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_EthernetSocket2_341486c1-612f-40ea-81af-36f34b6681c4 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -amlImp:Conduit a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Conduit" . - -agOnt:edge_CVE-2008-3358_ie_FileSvr1_1b1e494a-0e92-47b4-b115-ca6b3b96faf4_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_ERP1_542a0d50-212c-4965-a6a7-93e8c9f8efb4 ; - agOnt:edge_has_Vulnerability secont:CVE-2008-3358 . - -agOnt:edge_CVE-2013-2811_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2811 . - -agOnt:edge_CVE-2016-2200_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_UntrustedCrossZoneConnection_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -icsSecOnt:OPC-UA owl:equivalentClass amlImp:OPC-UA . - -amlImp:ei_EthernetPlug1_76e82eca-3004-4e04-9eee-abc322b491d1 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:Firewall a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "Firewall" ; - rdfs:subClassOf amlImp:NetworkDevice , amlImp:SecurityDevice . - -amlImp:ei_Representation_4ED6E31F-5195-4D55-995B-925FEE990FBA - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_InsecureProtocolUsed_ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_EthernetWire1_9975183e-3914-4352-9170-32ee457e7671 - a amlImp:EthernetWire , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "EthernetWire1" ; - aml_ontology:hasEI amlImp:ei_EthernetPlug2_3ecaf821-1a98-45a6-8578-d10894d44973 , amlImp:ei_EthernetPlug1_5aebb503-e90c-4b74-9607-8531a6743be6 . - -agOnt:edge_CVE-2015-2823_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2015-2823 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_Portlist_54d52d51-2455-49d0-b054-a0c1859f9f69 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_3ff51c5f-de99-4bb4-b326-9877d03faecb . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -agOnt:vertex_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b - a agOnt:Vertex ; - agOnt:vertex_has_Asset amlImp:ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b ; - agOnt:vertex_has_Edge agOnt:edge_CVE-2019-10092_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0316_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2017-3167_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-9788_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-15710_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-9798_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0337_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2017-7668_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-15715_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-4975_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0282_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2017-7679_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-10098_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-1546_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-8743_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0283_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2019-0211_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_InsecureProtocolUsed_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2018-17199_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2017-3169_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2016-8612_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2019-0278_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_UntrustedCrossZoneConnection_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 , agOnt:edge_CVE-2016-8740_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2018-1312_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db , agOnt:edge_CVE-2018-1283_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:vertex_has_Weight 5.0e0 . - -amlImp:ie_Portlist_c4178773-3a15-4cd6-b0be-c1178808e8c6 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_3ec77b75-860c-4856-a6b1-638136639ac8 . - -agOnt:edge_InsecureProtocolUsed_ie_030RB_300_KR240R2700prime__AF138E59-0000-17AC-556E-B961000032DB_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -amlImp:ie_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B155000031CF - a owl:NamedIndividual , amlImp:Resource ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1" ; - amlImp:hasFrame_rx "147.914"^^rdfs:Literal ; - amlImp:hasFrame_ry "-21.618"^^rdfs:Literal ; - amlImp:hasFrame_rz "57.439"^^rdfs:Literal ; - amlImp:hasFrame_x "0.569465"^^rdfs:Literal ; - amlImp:hasFrame_y "-0.180495"^^rdfs:Literal ; - amlImp:hasFrame_z "2.075897"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_DCEE9D53-0DF2-4C1F-8C5E-0C7B2B5D5E0D ; - aml_ontology:hasIE amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B155000031D0 , amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B155000031D2 , amlImp:ie_KRxxxRultra.6.1_010GRF141_AF138E59-0000-17AC-556E-B155000031D1 . - -agOnt:edge_CVE-2014-5074_ie_010RB_100_KR240R2700prime__AF138E59-0000-17AC-556E-B124000031B5_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-5074 . - -amlImp:ei_LogicalEndpointPROFIsafe_57cb22a2-920a-4de4-9f02-52a8267b744d - a amlImp:LogicalEndpointPROFIsafe , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointPROFIsafe" . - -amlImp:ei_LogicalEndpointProfinet1_72ed1588-3b9b-4dfe-a89a-9346bfc01530 - a amlImp:LogicalEndpointProfinet , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "LogicalEndpointProfinet1" . - -amlImp:LogicalEndpointModbus - a owl:Class ; - rdfs:comment "InterfaceClass" ; - rdfs:label "LogicalEndpointModbus" ; - rdfs:subClassOf amlImp:LogicalEndpoint . - -amlImp:ei_EthernetPlug1_9501027d-fbb2-47dd-8c06-ceb068d39fb2 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug1" . - -amlImp:BodyStore a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "BodyStore" ; - rdfs:subClassOf amlImp:Storage . - -agOnt:edge_CVE-2016-1546_ie_FileSvr2_307b5249-736c-43f9-aeb3-1d396a0ab54b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2016-1546 . - -amlImp:ei_Attachment_COLLADA_030WZD111_589F48BB-B346-448B-9C65-E12F58CE454A - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_030WZD111" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/JA01732_REV02_Product.dae#JA01732_REV02" ; - amlImp:hasTarget "./JA01732_REV02_AttachmentPoint_030WZD111"^^rdfs:Literal . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire11 EthernetPlug1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ScalanceX414-3e-1 EthernetSocket11" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug1_f7c9ed9e-7700-4469-a7de-163190ee5eb1 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket11_6847e2e4-aadf-4808-aacd-aeba5837517e . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding LogicalNetwork LogicalProfinetConnection2 LogicalEndpointProfinet1 - ControlAndProcess CarDoorPartWelding SpotWeldingStation ST030 030RB_200 030RB_200 KRC4 LogicalEndpointProfinet" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_LogicalEndpointProfinet1_9de6bd05-5336-4dd6-83d7-6eb3fdbc6c9d ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_LogicalEndpointProfinet_9512f6d4-17f5-42fe-8d41-7049e4c0a1b9 . - - - a amlImp:Link , owl:NamedIndividual ; - rdfs:comment "InternalLink" ; - rdfs:label "Link ControlAndProcess CarDoorPartWelding EthernetWire13 EthernetPlug2 - ControlAndProcess CarDoorPartWelding SpotWeldingStation OpcClientHmi1 EthernetSocket1" ; - aml_ontology:hasRefPartnerSideA - amlImp:ei_EthernetPlug2_eb5f8cab-ad6b-4fa0-87a1-d8d54fc229d7 ; - aml_ontology:hasRefPartnerSideB - amlImp:ei_EthernetSocket1_a2c82022-d2be-4355-8911-c826a52fc8b2 . - -agOnt:edge_CVE-2019-0283_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_AppSvr1_989621b1-84e2-40af-9fb2-122e3b2adac1 ; - agOnt:edge_has_Vulnerability secont:CVE-2019-0283 . - -agOnt:edge_CVE-2013-0675_ie_SIMATICHistorian1_284f5e57-9d8c-4941-8ee6-364bfba77183_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SIMATICWinCCSvr1_1c19e45f-df6e-4e92-b4dc-dd582e54d804 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-0675 . - -agOnt:edge_InsecureProtocolUsed_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:InsecureProtocolUsed . - -icsSecOnt:Basic256SHA256 - owl:equivalentClass amlImp:Basic256SHA256 . - -amlImp:ei_EthernetSocket3_6fea490b-3e8f-4243-85b9-e6e0d8f24e18 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket3" . - -amlImp:StationaryTool - a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "StationaryTool" ; - rdfs:subClassOf amlImp:Tool . - -amlImp:ei_MotorSocket_8b7f2dde-0548-4459-9b33-bf7a7875e0ed - a amlImp:MotorSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "MotorSocket" . - -agOnt:edge_CVE-2016-2201_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2201 . - -agOnt:edge_CVE-2019-10098_ie_MailSvr1_5ff2a9ff-842a-41c7-94b1-8b1d66e5738b_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WebSvr2_05599cb1-6baf-4e7d-9fc9-c123aaef52db ; - agOnt:edge_has_Vulnerability secont:CVE-2019-10098 . - -amlImp:ei_Representation_4983A3A2-9A99-476E-A259-DCC1CEDDDF55 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Pfosten.1_Rep.dae" . - -agOnt:edge_CVE-2014-0750_ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -amlImp:ei_Attachment_COLLADA_KRxxxRultra.6.1_C977F4BF-ED1A-428D-B4F8-48BC890ACB10 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Attachment_COLLADA_KRxxxRultra.6.1" ; - amlImp:hasRefType "implicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/saferobotparts-Tool1_1_Product.dae#saferobotparts-Tool1_1" ; - amlImp:hasTarget "./saferobotparts-Tool1_1_AttachmentPoint_KRxxxRultra.6.1"^^rdfs:Literal . - -agOnt:edge_UntrustedCrossZoneConnection_ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability icsSecOnt:UntrustedCrossZoneConnection . - -agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -agOnt:edge_CVE-2013-2785_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -amlImp:ei_Representation_6B6F83ED-EFBC-4EDA-9261-3A447B94DF5C - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/Materialbereitstellung_A_Rep.dae" . - -amlImp:ie_Portlist_5093df14-ac72-4c01-a4fb-e946b1cda940 - a amlImp:PortList , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "Portlist" ; - aml_ontology:hasEI amlImp:ei_EthernetSocket1_a2c82022-d2be-4355-8911-c826a52fc8b2 . - -amlImp:ei_EthernetSocket2_a95b5f98-b5cf-447b-8792-ed42e675f8b6 - a amlImp:EthernetSocket , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetSocket2" . - -secont:CVE-2017-9788 a secont:Vulnerability ; - secont:vulnerability_exploitedBy_Threat - secont:VulnerableSoftware ; - secont:vulnerability_has_Cve "http://w3id.org/sepses/resource/cve/CVE-2017-9788"^^xsd:anyURI ; - secont:vulnerability_has_SeverityValue - "6.4"^^xsd:double ; - secont:vulnerability_on_Asset amlImp:ie_ApacheHttpServer_6ed5bc74-808a-4058-ab0c-d615b197e90b , amlImp:ie_ApacheHttpServer_6aaf9e2b-d4c3-439a-9cf5-0c879749f2b1 . - -agOnt:edge_CVE-2013-2785_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2013-2785 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ie_030EKF370_AF138E59-0000-17AC-556E-BC0100003311 - a owl:NamedIndividual , amlImp:Clamp ; - rdfs:comment "InternalElement" ; - rdfs:label "030EKF370" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "0"^^rdfs:Literal ; - amlImp:hasFrame_rz "45"^^rdfs:Literal ; - amlImp:hasFrame_x "-10.299504"^^rdfs:Literal ; - amlImp:hasFrame_y "4.364677"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Representation_6FF63352-C85A-44D3-868D-F5B7B977B8BD ; - aml_ontology:hasIE amlImp:ie_030EKF370_Tool1_AF138E59-0000-17AC-556E-BC0300003316 , amlImp:ie_030EKF370_Base1_AF138E59-0000-17AC-556E-BC0300003315 . - -agOnt:edge_CVE-2016-2200_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_NotSeparatedSafetyRelatedDevice_ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedSafetyRelatedDevice . - -agOnt:edge_CVE-2016-2200_ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - agOnt:edge_has_Vulnerability secont:CVE-2016-2200 . - -agOnt:edge_CVE-2014-0750_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878 ; - agOnt:edge_has_Vulnerability secont:CVE-2014-0750 . - -agOnt:edge_NotSeparatedWirelessDevice_ie_030RB_200_KR240R2700prime__AF138E59-0000-17AC-556E-B8BD000032A2_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - a agOnt:Edge ; - agOnt:edge_has_Vertex agOnt:vertex_ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - agOnt:edge_has_Vulnerability icsSecOnt:NotSeparatedWirelessDevice . - -amlImp:ei_Representation_213EC99E-2846-40B6-BC4A-0887C50E6886 - a amlImp:COLLADAInterface , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "Representation" ; - amlImp:hasRefType "explicit"^^rdfs:Literal ; - amlImp:hasRefURI "./dae_lib/KRC4_Robotersteuerschrank_Product.dae" . - -amlImp:ie_KRxxxRultra.6.1_saferobotparts-Tool1.1_AF138E59-0000-17AC-556E-B8F4000032BD - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_saferobotparts-Tool1.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_saferobotparts_Tool1_1_DC9E93B8-98CF-4A22-927B-ED9753DEB48A , amlImp:ei_Attachment_COLLADA_saferobotparts-Tool1.1_A19D63AA-D0B0-459B-B1FB-1266C75C9DCA . - -amlImp:ie_WirelessConnection3_bc94cef8-7f3d-4288-97b8-ccccd9417c35 - a amlImp:WirelessConnection , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "WirelessConnection3" ; - aml_ontology:hasEI amlImp:ei_WirelessPlug2_1138b241-22e0-4fa1-b6ff-b3ae35dbe7da , amlImp:ei_WirelessPlug1_11a45cd3-d809-43a3-b4bb-082cfdb23fa7 . - -amlImp:RollConveyor a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "RollConveyor" ; - rdfs:subClassOf amlImp:Conveyor . - -amlImp:ei_EthernetPlug2_2ec69119-66c8-457e-8423-4ec33f099b20 - a amlImp:EthernetPlug , owl:NamedIndividual ; - rdfs:comment "ExternalInterface" ; - rdfs:label "EthernetPlug2" . - -amlImp:ie_KRxxxRultra.6.1_ToolMountPoint_AF138E59-0000-17AC-556E-B8F4000032BF - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "KRxxxRultra.6.1_ToolMountPoint" ; - amlImp:hasFrame_rx "0"^^rdfs:Literal ; - amlImp:hasFrame_ry "90"^^rdfs:Literal ; - amlImp:hasFrame_rz "0"^^rdfs:Literal ; - amlImp:hasFrame_x "0.24"^^rdfs:Literal ; - amlImp:hasFrame_y "0"^^rdfs:Literal ; - amlImp:hasFrame_z "0"^^rdfs:Literal ; - aml_ontology:hasEI amlImp:ei_Attachment_ToolMountPoint_98E347B5-C72C-403D-8ABF-6C554CE1AF1D , amlImp:ei_Attachment_COLLADA_ToolMountPoint_AAA676AB-FE9F-4559-82E8-DDF7244E9661 . - -amlImp:ie_030WZD180_KRxxxRultra.6.1_AF138E59-0000-17AC-556E-B85100003268 - a amlImp:Frame , owl:NamedIndividual ; - rdfs:comment "InternalElement" ; - rdfs:label "030WZD180_KRxxxRultra.6.1" ; - aml_ontology:hasEI amlImp:ei_Attachment_KRxxxRultra_6_1_827BAC0D-8EF4-4E04-819E-0442BA477256 . - -amlImp:PAC a owl:Class ; - rdfs:comment "RoleClass" ; - rdfs:label "PAC" ; - rdfs:subClassOf amlImp:Controller . diff --git a/amlsec/src/main/resources/application.conf b/amlsec/src/main/resources/application.conf index 345cebe..1673d55 100644 --- a/amlsec/src/main/resources/application.conf +++ b/amlsec/src/main/resources/application.conf @@ -1,34 +1,154 @@ +baseDir = ${user.home}"/amlsec/" +amlToOwlProgram = ${user.home}"/amlsec/aml_owl-0.0.1-SNAPSHOT-jar-with-dependencies.jar" +# Jena reasoner setting, for enhanced performance use the Jena's micro reasoner +## "http://jena.hpl.hp.com/2003/OWLMicroFBRuleReasoner" +## "http://jena.hpl.hp.com/2003/OWLFBRuleReasoner" +reasonerUri = "http://jena.hpl.hp.com/2003/OWLMicroFBRuleReasoner" + aml { - fileName = "aml.ttl" + filePath = ${user.home}"/amlsec/case-study/CaseStudy_A.aml" + # Deprecated now, since AML-to-OWL transformation is directly embedded + ontFilePath = ${user.home}"/amlsec/engineering_data_representation_aml.ttl" nsOnt = "http://www.ipr.kit.edu/aml_ontology" nsImp = "http://www.ipr.kit.edu/aml_importer" } secOnt { - fileName = "security-ontologies/security-ontology.owl" + filePath = ${user.home}"/amlsec/security-ontologies/security-ontology.owl" ns = "http://securityontology.com/secont" } icsSecOnt { - fileName = "security-ontologies/ics-security-ontology.owl" + filePath = ${user.home}"/amlsec/security-ontologies/ics-security-ontology.owl" ns = "http://securityontology.com/icssecont" } agOnt { - fileName = "security-ontologies/ag-ontology.owl" + filePath = ${user.home}"/amlsec/security-ontologies/ag-ontology.owl" ns = "http://securityontology.com/agont" } validation { - eng.fileName = "engineering_data_validation_rules.ttl" - sec.fileName = "security_vulnerabilities_rules.ttl" + eng.filePath = ${user.home}"/amlsec/rules/engineering_data_validation_rules.ttl" + sec.filePath = ${user.home}"/amlsec/rules/security_vulnerabilities_rules.ttl" } -outputPathEngValReport = ${user.home}"/Desktop/report_eng_val.ttl" -outputPathSecValReport = ${user.home}"/Desktop/report_sec_val.ttl" +outputPathEngValReport = ${user.home}"/amlsec/reports/report_eng_val.ttl" +outputPathSecValReport = ${user.home}"/amlsec/reports/report_sec_val.ttl" ag { - full.path = ${user.home}"/Desktop/full_ag.svg" - pruned.path = ${user.home}"/Desktop/pruned_ag.svg" - shortestPath.path = ${user.home}"/Desktop/shortest_path_ag.svg" -} \ No newline at end of file + full.path = ${user.home}"/amlsec/full_ag.svg" + pruned.path = ${user.home}"/amlsec/pruned_ag.svg" + shortestPath.path = ${user.home}"/amlsec/shortest_path_ag.svg" +} + +debug { + kb { + writeKb = true + outputPathAmlsecKb = ${user.home}"/amlsec/amlsec_kb.ttl" + } + + performance { + writePerformanceReport = true + outputPathPerformanceReport = ${user.home}"/amlsec/performance_report.txt" + } +} + +akka { + actor { + # Must be set like this to use Akka Cluster + provider = cluster + serialization-bindings { + "org.sba_research.worker.CborSerializable" = jackson-cbor + } + debug.lifecycle = on + } + + # filtered further in logback.xml + loglevel = "DEBUG" + + # Maximum serialized message size, including header data. + # Increased this value, since validation reports can get pretty large with a big AML artifact + # In the future, we should store the validation reports in a database and only send notifications of the pubsub channel + remote.artery.advanced.maximum-frame-size = 31250 KiB #256 KiB + + remote.artery.canonical { + hostname = "127.0.0.1" + # overriden in the main method + port = 2551 + } + + cluster { + # Seed nodes are a way to have a node join the cluster (or form a new cluster) from configuration. + seed-nodes = [ + "akka://ClusterSystem@127.0.0.1:2551", + "akka://ClusterSystem@127.0.0.1:3000" + ] + + # Needed when running many actor systems in the same JVM + jmx.multi-mbeans-in-same-jvm = on + + downing-provider-class = "akka.cluster.sbr.SplitBrainResolverProvider" + + failure-detector.acceptable-heartbeat-pause = 10s + } + + # use Cassandra to store both snapshots and the events of the persistent actors + persistence { + journal.plugin = "cassandra-journal" + snapshot-store.plugin = "cassandra-snapshot-store" + } + + # Run the pubsub mediator on all nodes, without any code starting it up + extensions = ["akka.cluster.pubsub.DistributedPubSub"] + + pub-sub { + # Actor name of the mediator actor, /system/distributedPubSubMediator + name = distributedPubSubMediator + + # Start the mediator on members tagged with this role. + # All members are used if undefined or empty. + role = "" + + # The routing logic to use for 'Send' + # Possible values: random, round-robin, broadcast + routing-logic = random + + # How often the DistributedPubSubMediator should send out gossip information + gossip-interval = 1s + + # Removed entries are pruned after this duration + removed-time-to-live = 120s + + # Maximum number of elements to transfer in one message when synchronizing the registries. + # Next chunk will be transferred in next round of gossip. + max-delta-elements = 3000 + + # When a message is published to a topic with no subscribers send it to the dead letters. + send-to-dead-letters-when-no-subscribers = on + + # The id of the dispatcher to use for DistributedPubSubMediator actors. + # If specified you need to define the settings of the actual dispatcher. + use-dispatcher = "akka.actor.internal-dispatcher" + } + + # Ask timeout for sending message to worker until receiving Ack from worker + # Increased this timeout from 60s to 10m for long-running work items (otherwise confirmation to work manager leads to dead-letters) + reliable-delivery.work-pulling.producer-controller.internal-ask-timeout = 10m + +} + +# Configuration related to the app is in its own namespace +distributed-workers { + # If a workload hasn't finished in this long it + # is considered failed and is retried + work-timeout = 10s + + # Timeout for worker waiting for ack from work manager + work-ack-timeout = 5s +} + +fuseki { + tdbDir = "target/fuseki-db/" + uri = "http://localhost:3030" +} diff --git a/amlsec/src/main/resources/logback.xml b/amlsec/src/main/resources/logback.xml new file mode 100644 index 0000000..0d374b4 --- /dev/null +++ b/amlsec/src/main/resources/logback.xml @@ -0,0 +1,24 @@ + + + + + + + + + [%date{ISO8601}] [%level] [%X{akkaAddress}] [%logger] [%thread] [%X{akkaSource}] - %msg%n + + + + + myApp.log + + [%date{ISO8601}] [%level] [%X{akkaAddress}] [%logger] [%thread] [%X{akkaSource}] - %msg%n + + + + + + + + diff --git a/amlsec/src/main/resources/reports/report_eng_val.ttl b/amlsec/src/main/resources/reports/report_eng_val.ttl deleted file mode 100644 index 9cb388e..0000000 --- a/amlsec/src/main/resources/reports/report_eng_val.ttl +++ /dev/null @@ -1,24 +0,0 @@ -@prefix : . -@prefix owl: . -@prefix protege: . -@prefix swrl: . -@prefix swrlb: . -@prefix xsd: . -@prefix rdfs: . -@prefix amlOnt: . -@prefix aml_ontology: . -@prefix swrla: . -@prefix aml_importer: . -@prefix amlImp: . -@prefix xsp: . -@prefix rdf: . -@prefix xml: . -@prefix sqwrl: . -@prefix secOnt: . -@prefix secont: . -@prefix owlapi: . - -[ a ; - - true -] . diff --git a/amlsec/src/main/resources/reports/report_sec_val.ttl b/amlsec/src/main/resources/reports/report_sec_val.ttl deleted file mode 100644 index 275fa01..0000000 --- a/amlsec/src/main/resources/reports/report_sec_val.ttl +++ /dev/null @@ -1,2549 +0,0 @@ -@prefix : . -@prefix owl: . -@prefix protege: . -@prefix swrl: . -@prefix swrlb: . -@prefix xsd: . -@prefix rdfs: . -@prefix amlOnt: . -@prefix aml_ontology: . -@prefix swrla: . -@prefix aml_importer: . -@prefix amlImp: . -@prefix xsp: . -@prefix rdf: . -@prefix xml: . -@prefix sqwrl: . -@prefix secOnt: . -@prefix secont: . -@prefix owlapi: . - -[ a ; - - false ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_LogicalOPCConnection2_29b6c100-4d64-4fe1-bcb2-9931b8507340 ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalOPCConnection2_29b6c100-4d64-4fe1-bcb2-9931b8507340 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 ; - - "The logical or physical connection amlImp:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 connects an ICS asset to a business or enterprise asset (zones: amlImp:ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0 and amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7)." ; - - ; - - _:b2 ; - - ; - - ; - - amlImp:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_LogicalPROFIsafeConnection3_006ef612-4c52-453d-b7e1-aec4495f466d ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalPROFIsafeConnection3_006ef612-4c52-453d-b7e1-aec4495f466d - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 ; - - "The logical or physical connection amlImp:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 connects assets of two different security zones (amlImp:ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0 and amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7) and has not been declared as a conduit." ; - - ; - - _:b4 ; - - ; - - ; - - amlImp:ie_EthernetWire3_f55ef8d4-11e4-4daa-aa34-bb4136b68770 - ] ; - - [ a ; - - amlImp:ie_LogicalProfinetConnection1_80352a47-7bae-44f1-ac8a-85d45a6d6944 ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalProfinetConnection1_80352a47-7bae-44f1-ac8a-85d45a6d6944 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_LogicalOPCConnection1_d8bf6b53-42b3-49c5-b7af-fb9cd1421b7e ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalOPCConnection1_d8bf6b53-42b3-49c5-b7af-fb9cd1421b7e - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a ; - - "The device amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a makes temporary connections within the zone amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 (other device in this zone is amlImp:ie_MES1_d186029a-3718-45c1-9170-8724a9de3d21)." ; - - ; - - _:b5 ; - - ; - - ; - - amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ei_LogicalRemoteEndpoint_ceca8b8d-7308-4242-868f-abc070544477 ; - - "Less than 1 values have shape _:e72d6f9e10d2c18fd56b21b4aa9d6152" ; - - aml_ontology:hasRefPartner ; - - ; - - ; - - - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a ; - - "The logical or physical connection amlImp:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a connects an ICS asset to a business or enterprise asset (zones: amlImp:ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0 and amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7)." ; - - ; - - _:b2 ; - - ; - - ; - - amlImp:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_EthernetWire7_78a23eb7-42df-4fb3-99b1-6e755cd22659 ; - - "The logical or physical connection amlImp:ie_EthernetWire7_78a23eb7-42df-4fb3-99b1-6e755cd22659 connects assets of two different security zones (amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 and amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91) and has not been declared as a conduit." ; - - ; - - _:b4 ; - - ; - - ; - - amlImp:ie_EthernetWire7_78a23eb7-42df-4fb3-99b1-6e755cd22659 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_LogicalOPCConnection4_a8913465-7d73-4954-8f16-179ecab519ca ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalOPCConnection4_a8913465-7d73-4954-8f16-179ecab519ca - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_Program_89b2c13b-7614-4964-be85-6d9d8505fecc ; - - "Does not have value True" ; - - amlImp:hasCopyProtection ; - - ; - - ; - - - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_Basic128RSA15_b46c3d9c-712b-4044-aa7b-eba4e1c8200e ; - - "Uses insecure algorithm" ; - - ; - - ; - - ; - - amlImp:ie_Basic128RSA15_b46c3d9c-712b-4044-aa7b-eba4e1c8200e - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 ; - - "Does not have value True" ; - - amlImp:hasKnowHowProtection ; - - ; - - ; - - - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ei_LogicalEndpointModbus_81b74a1f-b305-470b-8c8c-d6bad9103441 ; - - "Less than 1 values have shape _:e72d6f9e10d2c18fd56b21b4aa9d6152" ; - - aml_ontology:hasRefPartner ; - - ; - - ; - - - ] ; - - [ a ; - - amlImp:ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 ; - - "The logical or physical connection amlImp:ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 connects assets of two different security zones (amlImp:ie_SCADA_e3f0537e-2d70-4bb2-a538-e31e2c74d8e7 and amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91) and has not been declared as a conduit." ; - - ; - - _:b4 ; - - ; - - ; - - amlImp:ie_LogicalOPCConnection5_1a514eaf-3b17-4608-bc6c-9c8c79746247 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a ; - - "The device amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a makes temporary connections within the zone amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 (other device in this zone is amlImp:ie_AnalyticsSvr1_083ca8dc-4c21-44f0-ac6f-ce621610d321)." ; - - ; - - _:b5 ; - - ; - - ; - - amlImp:ie_SIMATICFieldPGM6_cd9a883f-873a-4a0a-980d-2f5379041b3a - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 ; - - "The logical or physical connection amlImp:ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 connects assets of two different security zones (amlImp:ie_Business_3ff407a0-13b9-43a3-a26a-850bd0288d49 and amlImp:ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0) and has not been declared as a conduit." ; - - ; - - _:b4 ; - - ; - - ; - - amlImp:ie_LogicalHTTPConnection1_8701d130-a9f1-4d64-8e7f-baa359db04b5 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_LogicalOPC-UAConnection_67214374-10d5-414f-b42c-2859f1fbf4c2 ; - - "The logical or physical connection amlImp:ie_LogicalOPC-UAConnection_67214374-10d5-414f-b42c-2859f1fbf4c2 connects assets of two different security zones (amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 and amlImp:ie_SCADA_e3f0537e-2d70-4bb2-a538-e31e2c74d8e7) and has not been declared as a conduit." ; - - ; - - _:b4 ; - - ; - - ; - - amlImp:ie_LogicalOPC-UAConnection_67214374-10d5-414f-b42c-2859f1fbf4c2 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_LogicalPROFIsafeConnection1_87d514a1-25b5-4ba4-9908-d9c000631b75 ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalPROFIsafeConnection1_87d514a1-25b5-4ba4-9908-d9c000631b75 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_LogicalProfinetConnection3_c5f12a8c-b961-4964-bbce-af3e03554cdb ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalProfinetConnection3_c5f12a8c-b961-4964-bbce-af3e03554cdb - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_LogicalPROFIsafeConnection4_5b372b58-cbf9-4654-b2ac-9355d4ffd47a ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalPROFIsafeConnection4_5b372b58-cbf9-4654-b2ac-9355d4ffd47a - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_LogicalProfinetConnection2_927b3231-91ab-4cb2-835f-f6bc3cb638aa ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalProfinetConnection2_927b3231-91ab-4cb2-835f-f6bc3cb638aa - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_LogicalOPCConnection3_589a1171-805e-4e15-8306-df9b2ed5eba2 ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalOPCConnection3_589a1171-805e-4e15-8306-df9b2ed5eba2 - ] ; - - [ a ; - - amlImp:ie_LogicalProfinetConnection4_25615c2d-21e4-4624-9ee6-ac04a596e3e1 ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalProfinetConnection4_25615c2d-21e4-4624-9ee6-ac04a596e3e1 - ] ; - - [ a ; - - amlImp:ie_Program_f4452b5e-a1e4-4921-b467-fc9c59cb8970 ; - - "Does not have value True" ; - - amlImp:hasCopyProtection ; - - ; - - ; - - - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_EthernetWire3_7e567996-bba2-43c4-b020-2912c02221dd ; - - "The logical or physical connection amlImp:ie_EthernetWire3_7e567996-bba2-43c4-b020-2912c02221dd connects assets of two different security zones (amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7 and amlImp:ie_SCADA_e3f0537e-2d70-4bb2-a538-e31e2c74d8e7) and has not been declared as a conduit." ; - - ; - - _:b4 ; - - ; - - ; - - amlImp:ie_EthernetWire3_7e567996-bba2-43c4-b020-2912c02221dd - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 ; - - "The logical or physical connection amlImp:ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 connects assets of two different security zones (amlImp:ie_EnterpriseDMZ_abdd9c9b-7894-451a-b192-a2e7a6bd24c6 and amlImp:ie_Business_3ff407a0-13b9-43a3-a26a-850bd0288d49) and has not been declared as a conduit." ; - - ; - - _:b4 ; - - ; - - ; - - amlImp:ie_LogicalHTTPConnection1_68d44684-ec56-4b7b-b9ff-545a221a9263 - ] ; - - [ a ; - - amlImp:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a ; - - "The logical or physical connection amlImp:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a connects assets of two different security zones (amlImp:ie_IndustrialDMZ_fc34b2d4-76aa-4319-b827-733f33b5b0d0 and amlImp:ie_OperationsSupport_ee482db7-3f32-40ba-be0b-2a598766abd7) and has not been declared as a conduit." ; - - ; - - _:b4 ; - - ; - - ; - - amlImp:ie_LogicalOPC-UAConnection1_dbca61ea-cf76-472b-9115-1a49881ca28a - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_4_91c2cc40-bc91-4210-bbcb-c8dee270ef7f)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_LogicalPROFIsafeConnection2_3cb44b24-52c4-44a8-9be6-f33770e5a0ba ; - - "Uses insecure protocol" ; - - ; - - ; - - ; - - amlImp:ie_LogicalPROFIsafeConnection2_3cb44b24-52c4-44a8-9be6-f33770e5a0ba - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_SimaticS71516F_1_4039125e-4cfc-4e92-bb82-14e19954f44f)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_3_551642cc-2e29-43f4-929e-ccf253e74f17)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_GECimplicity1_f5724f31-7ba4-4c92-9e33-1e0b315c2878)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor2_9c43b668-636f-4d99-99c5-9741274faec8 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc ; - - "The device amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc makes external connections within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other device in this zone is amlImp:ie_SE_XBTGT1_bfd7c0e1-9ad4-4f9f-b926-91352edb0fc2)." ; - - ; - - _:b3 ; - - ; - - ; - - amlImp:ie_KUKAConnBox1_c26762e4-12c1-46b9-89ed-8a0c95472cfc - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN1_76764e90-3339-4944-a78e-572c29a7eda6 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71516F_3_fa819ebd-d24c-405f-af26-9f1ee0d084c1)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN3_cf323106-154a-4c23-aa3b-6f2ee925cbb1 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor1_65710792-ac8c-462e-9fb9-b1d73aa1e971 - ] ; - - [ a ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 ; - - "The wireless-enabled device amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other wired device in this zone is amlImp:ie_KRC4_4_f58ddf2f-adc3-480e-b3cb-b9d34e1f7b52)." ; - - ; - - _:b0 ; - - ; - - ; - - amlImp:ie_WHARTSensor3_c7b4b099-fe0a-4e85-ac94-0e75a0dbf095 - ] ; - - [ a ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 ; - - "The safety-related device amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 is within the zone amlImp:ie_CarDoorPartWelding_d611c771-ed15-4e30-bf93-2cbd68685c91 (other non-safety-related device in this zone is amlImp:ie_KRC4_1_4e8b4f7c-35d9-43ce-95a0-f770c6dd0a18)." ; - - ; - - _:b1 ; - - ; - - ; - - amlImp:ie_SimaticS71510SPF1PN_7dc76996-b47d-4b08-adaa-8eedeb3e64d3 - ] -] . diff --git a/amlsec/src/main/resources/security-ontologies b/amlsec/src/main/resources/security-ontologies deleted file mode 120000 index 6e44df4..0000000 --- a/amlsec/src/main/resources/security-ontologies +++ /dev/null @@ -1 +0,0 @@ -../../../../security-ontologies \ No newline at end of file diff --git a/amlsec/src/main/scala/org/sba_research/Config.scala b/amlsec/src/main/scala/org/sba_research/Config.scala index 7bf6112..c4f078f 100644 --- a/amlsec/src/main/scala/org/sba_research/Config.scala +++ b/amlsec/src/main/scala/org/sba_research/Config.scala @@ -2,34 +2,68 @@ package org.sba_research import com.typesafe.config.ConfigFactory -case class Config(amlConfig: AmlConfig, secOntConfig: OntConfig, icsSecOntConfig: OntConfig, agOnt: OntConfig, engValFileName: String, secValFileName: String, outputPathEngValReport: String, outputPathSecValReport: String, agConfig: AGConfig) +case class Config(baseDir: String, + amlToOwlProgram: String, + reasonerUri: String, + debugConfig: DebugConfig, + fusekiConfig: FusekiConfig, + amlConfig: AmlConfig, + secOntConfig: OntConfig, + icsSecOntConfig: OntConfig, + agOnt: OntConfig, + engValFilePath: String, + secValFilePath: String, + outputPathEngValReport: String, + outputPathSecValReport: String, + agConfig: AGConfig) -case class AmlConfig(fileName: String, nsOnt: String, nsImp: String) +case class AmlConfig(filePath: String, ontFilePath: String, nsOnt: String, nsImp: String) -case class OntConfig(fileName: String, ns: String) +case class OntConfig(filePath: String, ns: String) case class AGConfig(fullPath: String, prunedPath: String, agShortestPath: String) +case class DebugConfig(writeKb: Boolean, + outputPathAmlsecKb: String, + writePerformanceReport: Boolean, + outputPathPerformanceReport: String) + +case class FusekiConfig(uri: String, dbPath: String) + object Config { def apply(): Config = { val conf = ConfigFactory.load() - val amlFileName = conf.getString("aml.fileName") + val baseDir = conf.getString("baseDir") + val amlToOwlProgram = conf.getString("amlToOwlProgram") + val reasonerUri = conf.getString("reasonerUri") + + val writeKb = conf.getBoolean("debug.kb.writeKb") + val outputPathAmlsecKb = conf.getString("debug.kb.outputPathAmlsecKb") + + val fusekiUri = conf.getString("fuseki.uri") + val fusekiDbPath = conf.getString("fuseki.tdbDir") + + val writePerformanceReport = conf.getBoolean("debug.performance.writePerformanceReport") + val outputPathPerformanceReport = conf.getString("debug.performance.outputPathPerformanceReport") + + val amlFilePath = conf.getString("aml.filePath") + val amlOntFilePath = conf.getString("aml.ontFilePath") val amlNsOnt = conf.getString("aml.nsOnt") val amlNsImp = conf.getString("aml.nsImp") - val secOntFileName = conf.getString("secOnt.fileName") + val secOntFilePath = conf.getString("secOnt.filePath") val secOntNs = conf.getString("secOnt.ns") - val icsSecOntFileName = conf.getString("icsSecOnt.fileName") + val icsSecOntFilePath = conf.getString("icsSecOnt.filePath") val icsSecOntNs = conf.getString("icsSecOnt.ns") - val agOntFileName = conf.getString("agOnt.fileName") + val agOntFilePath = conf.getString("agOnt.filePath") val agOntNs = conf.getString("agOnt.ns") - val engValFileName = conf.getString("validation.eng.fileName") - val secFileName = conf.getString("validation.sec.fileName") + val engValFilePath = conf.getString("validation.eng.filePath") + val secFilePath = conf.getString("validation.sec.filePath") val outputPathEngValReport = conf.getString("outputPathEngValReport") val outputPathSecValReport = conf.getString("outputPathSecValReport") @@ -38,12 +72,17 @@ object Config { val agShortestPath = conf.getString("ag.shortestPath.path") this ( - AmlConfig(amlFileName, amlNsOnt, amlNsImp), - OntConfig(secOntFileName, secOntNs), - OntConfig(icsSecOntFileName, icsSecOntNs), - OntConfig(agOntFileName, agOntNs), - engValFileName, - secFileName, + baseDir, + amlToOwlProgram, + reasonerUri, + DebugConfig(writeKb, outputPathAmlsecKb, writePerformanceReport, outputPathPerformanceReport), + FusekiConfig(fusekiUri, fusekiDbPath), + AmlConfig(amlFilePath, amlOntFilePath, amlNsOnt, amlNsImp), + OntConfig(secOntFilePath, secOntNs), + OntConfig(icsSecOntFilePath, icsSecOntNs), + OntConfig(agOntFilePath, agOntNs), + engValFilePath, + secFilePath, outputPathEngValReport, outputPathSecValReport, AGConfig(agFullPath, agPrunedPath, agShortestPath) diff --git a/amlsec/src/main/scala/org/sba_research/MainApp.scala b/amlsec/src/main/scala/org/sba_research/MainApp.scala deleted file mode 100644 index 75275bc..0000000 --- a/amlsec/src/main/scala/org/sba_research/MainApp.scala +++ /dev/null @@ -1,80 +0,0 @@ -package org.sba_research - -import com.typesafe.scalalogging.Logger -import org.apache.jena.datatypes.xsd.XSDDatatype -import org.apache.jena.ontology.OntModel -import org.apache.jena.rdf.model.ResourceFactory -import org.sba_research.model.OntModels - -object MainApp { - - def main(args: Array[String]): Unit = { - - val logger = Logger("Root") - val config = Config() - val ontModels = OntModels(config) - val augmentedOntModels = AmlOntExtension.augment(config, ontModels.aml) map (aml => OntModels(aml = aml, sec = ontModels.sec, icssec = ontModels.icssec, ag = ontModels.ag)) - - augmentedOntModels map { models => - /* Perform validation of engineering artifact. */ - Validator.validate( - config = config, - ontModels = models, - shapeModelPath = config.engValFileName, - reportPath = Some(config.outputPathEngValReport) - ) - } - val infModel = augmentedOntModels.map(models => OntModelUtils.getInfModel(models.aml)) - - // val preloadedReportModel = RDFDataMgr.loadModel(getClass.getResource("/reports/report_sec_val.ttl").toString) - val vulnerabilityReport = for { - ontM <- augmentedOntModels - infM <- infModel - } yield Validator.validate( - config = config, - ontModels = ontM, - infModel = infM, - shapeModelPath = config.secValFileName, - reportPath = Some(config.outputPathSecValReport) - ) - val vulnerabilityInstantiatedModels = - for { - // report <- Some(Validator.populateValidationReport(preloadedReportModel)) // vulnerabilityReport - report <- vulnerabilityReport - augMo <- augmentedOntModels - infM <- infModel - vulnMo <- VulnerabilityModeling.processReport(config, augMo, infM, report) - } yield vulnMo - - - val cveVulnModels = vulnerabilityInstantiatedModels flatMap { models => - VulnerabilityModeling.processCves(config, models, CveChecker.check(amlOntModel = models.aml)) - } - - val agModels = cveVulnModels flatMap { models => - AttackGraph.generate(config, models.aml) - .map(m => OntModels(aml = models.aml.add(m).asInstanceOf[OntModel], sec = ontModels.sec, icssec = ontModels.icssec, ag = ontModels.ag)) - } - - agModels foreach { m => OntModelUtils.write(m.aml, "src/main/resources/amlsec.ttl") } - - // val model: OntModel = OntModelUtils.createModel("amlsec.ttl", "aml", Some("ttl")) - // AmlOntExtension.importSecOnts(config, model) - // model.setStrictMode(false) - - // Manually adjust weights of control devices to focus on a specific part of the spot welding process - agModels foreach { m => - val vertexHasWeightProperty = m.aml.getObjectProperty(s"${config.agOnt.ns}#vertex_has_Weight") - val indvKRC4_2 = m.aml.getIndividual(s"${config.agOnt.ns}#vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60") - indvKRC4_2.setPropertyValue(vertexHasWeightProperty, ResourceFactory.createTypedLiteral("9.0", XSDDatatype.XSDdouble)) - val indvS71510_2 = m.aml.getIndividual(s"${config.agOnt.ns}#vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2") - indvS71510_2.setPropertyValue(vertexHasWeightProperty, ResourceFactory.createTypedLiteral("9.0", XSDDatatype.XSDdouble)) - val indvS7_2 = m.aml.getIndividual(s"${config.agOnt.ns}#vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8") - indvS7_2.setPropertyValue(vertexHasWeightProperty, ResourceFactory.createTypedLiteral("9.0", XSDDatatype.XSDdouble)) - - AttackGraph.plotPrunedAg(config, m.aml) - } - - } - -} diff --git a/amlsec/src/main/scala/org/sba_research/OntModelUtils.scala b/amlsec/src/main/scala/org/sba_research/OntModelUtils.scala deleted file mode 100644 index c270c25..0000000 --- a/amlsec/src/main/scala/org/sba_research/OntModelUtils.scala +++ /dev/null @@ -1,80 +0,0 @@ -package org.sba_research - - -import java.io.{BufferedWriter, File, FileWriter} - -import org.apache.jena.ontology.{OntClass, OntModel, OntModelSpec, OntResource} -import org.apache.jena.rdf.model.{InfModel, ModelFactory} -import org.apache.jena.reasoner.ReasonerRegistry -import org.apache.jena.util.SplitIRI -import org.apache.jena.util.iterator.ExtendedIterator - -import scala.annotation.tailrec - -object OntModelUtils { - - /** - * Removes the namespace from a given String. - * - * @param s the String to remove the namespace from - * @return a string without the namespace - */ - def removeNamespace(s: String): String = SplitIRI.splitpoint(s) match { - case x if x > -1 => s.substring(x) - case _ => s - } - - def getInfModel(ontModel: OntModel): InfModel = { - // val schema = FileManager.get.loadModel(path.toFile.getAbsolutePath + "/src/main/resources/amlontology.ttl") - var reasoner = ReasonerRegistry.getOWLReasoner - reasoner = reasoner.bindSchema(ontModel) - ModelFactory.createInfModel(reasoner, ontModel) - } - - def write(ontModel: OntModel, pathName: String): Unit = { - val file = new File(pathName) - val bw = new BufferedWriter(new FileWriter(file)) - ontModel.write(bw, "Turtle") - bw.close() - } - - def createModel(fileName: String, base: String, lang: Option[String] = None): OntModel = { - val m = ModelFactory.createOntologyModel(OntModelSpec.OWL_DL_MEM) - val in = getClass.getResourceAsStream(s"/$fileName") - lang match { - case Some(l) => m.read(in, base, l) - case None => m.read(in, base) - } - m.setDynamicImports(true) // Enable import processing - // cf. https://stackoverflow.com/a/17447438/5107545 - // `individual.listOntClasses(false).asScala.toList` throws - // org.apache.jena.ontology.ConversionException: Cannot convert node http://www.w3.org/2002/07/owl#NamedIndividual to OntClass: it does not have rdf:type owl:Class or equivalent - m.setStrictMode(false) - m - } - - @tailrec - def getAllSubclasses(ontCls: OntClass, l: List[OntClass] = List.empty, acc: List[OntClass] = List.empty): List[OntClass] = - acc match { - case x :: xs => - getAllSubclasses( - x, - ontCls :: l, // Prepend currently processed ontology class - xs ::: getOntResources(x.listSubClasses()) // Use elements on same hierarchy and subclasses of next element as accumulator - .flatMap(ontClsConversion)) - case Nil if ontCls.hasSubClass => // Currently processed ontology class is last one in hierarchy, go one level down as subclass exist - getAllSubclasses(ontCls, l, getOntResources(ontCls.listSubClasses()).flatMap(ontClsConversion)) - case Nil => ontCls :: l // Last element in hierarchy, no subclasses of ontology class - } - - @tailrec - def getOntResources(iter: ExtendedIterator[_ <: OntResource], l: List[OntResource] = List.empty): List[OntResource] = - if (iter.hasNext) getOntResources(iter, l ::: List(iter.next())) - else l - - private def ontClsConversion(cls: OntResource) = cls match { - case cls: OntClass => Some(cls) - case _ => None - } - -} \ No newline at end of file diff --git a/amlsec/src/main/scala/org/sba_research/Validator.scala b/amlsec/src/main/scala/org/sba_research/Validator.scala deleted file mode 100644 index b99b7be..0000000 --- a/amlsec/src/main/scala/org/sba_research/Validator.scala +++ /dev/null @@ -1,95 +0,0 @@ -package org.sba_research - -import java.io.{File, FileOutputStream} - -import com.typesafe.scalalogging.Logger -import org.apache.jena.rdf.model.{InfModel, Model, Resource} -import org.apache.jena.riot.{RDFDataMgr, RDFFormat} -import org.sba_research.model.OntModels -import org.topbraid.jenax.util.JenaUtil -import org.topbraid.shacl.util.ModelPrinter -import org.topbraid.shacl.validation.ValidationUtil -import org.topbraid.shacl.vocabulary.SH - -import collection.JavaConverters._ -import scala.util.{Failure, Success, Try} - -case class ValidationReport(conforms: Boolean, validationResults: List[ValidationResult]) - -case class ValidationResult(focusNode: String, resultMessage: String, resultPath: Option[String] = None, sourceShape: String, value: Option[String] = None) - -object Validator { - - val logger = Logger(getClass) - - val shaclNs = "http://www.w3.org/ns/shacl" - - def validate(config: Config, ontModels: OntModels, shapeModelPath: String, reportPath: Option[String]): ValidationReport = { - val infModel = OntModelUtils.getInfModel(ontModels.aml) - validate(ontModels = ontModels, infModel = infModel, shapeModelPath = shapeModelPath, reportPath) - } - - def validate(config: Config, ontModels: OntModels, infModel: InfModel, shapeModelPath: String, reportPath: Option[String]): ValidationReport = - validate(ontModels = ontModels, infModel = infModel, shapeModelPath = shapeModelPath, reportPath) - - private def validate(ontModels: OntModels, infModel: InfModel, shapeModelPath: String, reportPath: Option[String]): ValidationReport = { - val shapeModel = JenaUtil.createDefaultModel - shapeModel.read(shapeModelPath) - - val reportResource = ValidationUtil.validateModel(infModel, shapeModel, true) - val reportModel = reportResource.getModel - reportPath match { - case Some(path) => writeReport(path, reportResource) - case _ => - } - populateValidationReport(reportModel) - } - - def populateValidationReport(reportModel: Model): ValidationReport = { - logger.info(ModelPrinter.get.print(reportModel)) - val conforms = reportModel - .listObjectsOfProperty(SH.conforms).asScala.nextOption() - .getOrElse(throw new IllegalStateException("Could not retrieve 'conforms' value from report.")) - .asLiteral().getBoolean - logger.debug(s"Conforms = $conforms.") - val resultNodeIterator = reportModel.listObjectsOfProperty(SH.result) - val validationResults = - resultNodeIterator.asScala.toList.map { x => - ValidationResult( - focusNode = x.asResource().getProperty(SH.focusNode).getObject.toString, - resultMessage = x.asResource().getProperty(SH.resultMessage).getObject.toString, - resultPath = Option(x.asResource().getProperty(SH.resultPath)).map(_.getObject.toString), - sourceShape = x.asResource().getProperty(SH.sourceShape).getObject.toString, - value = Option(x.asResource().getProperty(SH.value)).map(_.getObject.toString), - ) - } - - validationResults.foreach(x => logger.debug(s"Retrieved ${x.toString}.")) - - ValidationReport(conforms = conforms, validationResults = validationResults) - } - - private def writeReport(outputPathReport: String, reportResource: Resource): Unit = { - logger.debug(s"Writing validation report to $outputPathReport.") - val reportFile = new File(outputPathReport) - val createFile: Try[Boolean] = Try { - reportFile.createNewFile - } - createFile match { - case Success(_) => - logger.debug(s"Successfully created report file.") - val reportOutputStream: Try[FileOutputStream] = Try { - new FileOutputStream(reportFile) - } - reportOutputStream match { - case Success(stream) => - RDFDataMgr.write(stream, reportResource.getModel, RDFFormat.TTL) - logger.debug(s"Wrote report file to $outputPathReport.") - case Failure(t) => logger.error(s"$t") - } - case Failure(t) => logger.error(s"Failed to create report file: $t") - } - } - - -} diff --git a/amlsec/src/main/scala/org/sba_research/VulnerabilityModeling.scala b/amlsec/src/main/scala/org/sba_research/VulnerabilityModeling.scala deleted file mode 100644 index ad0199e..0000000 --- a/amlsec/src/main/scala/org/sba_research/VulnerabilityModeling.scala +++ /dev/null @@ -1,282 +0,0 @@ -package org.sba_research - -import com.typesafe.scalalogging.Logger -import org.apache.jena.datatypes.xsd.XSDDatatype -import org.apache.jena.ontology.OntModel -import org.apache.jena.rdf.model.{InfModel, RDFNode, ResourceFactory} -import org.sba_research.model.OntModels - -import scala.annotation.tailrec -import scala.collection.JavaConverters._ - -object VulnerabilityModeling { - - val logger = Logger(getClass) - - val cveVulnIndvPrefix = "Vulnerability" - - def processReport(config: Config, ontModels: OntModels, infModel: InfModel, validationReport: ValidationReport): Option[OntModels] = - performReportProcessing(config, Some(ontModels), infModel, validationReport.validationResults) - - @tailrec - private def performReportProcessing(config: Config, ontModels: Option[OntModels], infModel: InfModel, validationResults: List[ValidationResult]): Option[OntModels] = - validationResults match { - case x :: xs => OntModelUtils.removeNamespace(x.sourceShape) match { - case "ActiveCopyProtection" => - performReportProcessing(config, instantiateVulnerabilityNoPlcProgramCopyProtection(config, ontModels, x.focusNode), infModel, xs) - case "ActiveKnowHowProtection" => - performReportProcessing(config, instantiateVulnerabilityNoPlcProgramKnowHowProtection(config, ontModels, x.focusNode), infModel, xs) - case "HasRefPartnerLinkMin1Shape" => - performReportProcessing(config, instantiateVulnerabilityUnusedOpenPort(config, ontModels, infModel, x.focusNode), infModel, xs) - case "InsecureProtocolInUse" => - performReportProcessing(config, instantiateVulnerabilityInsecureProtocolUsed(config, ontModels, infModel, x.focusNode), infModel, xs) - case "InsecureAlgorithmInUse" => - performReportProcessing(config, instantiateVulnerabilityInsecureAlgorithmUsed(config, ontModels, infModel, x.focusNode), infModel, xs) - case "CrossZoneConnections" => - performReportProcessing(config, instantiateVulnerabilityUntrustedCrossZoneConnection(config, ontModels, infModel, x.focusNode), infModel, xs) - case "ITOTCrossConnections" => - performReportProcessing(config, instantiateVulnerabilityItOtCrossConnection(config, ontModels, infModel, x.focusNode), infModel, xs) - case "TempConnections" => - performReportProcessing(config, instantiateVulnerabilityTemporaryConnection(config, ontModels, infModel, x.focusNode), infModel, xs) - case "ExtConnections" => - performReportProcessing(config, instantiateVulnerabilityExtConnection(config, ontModels, infModel, x.focusNode), infModel, xs) - case "SafetyAssetsZone" => - performReportProcessing(config, instantiateVulnerabilitySafetyAssetsZone(config, ontModels, infModel, x.focusNode), infModel, xs) - case "SafetyAssetsConnectionZone" => - performReportProcessing(config, instantiateVulnerabilitySafetyNonSafetyZoneCrossConnection(config, ontModels, infModel, x.focusNode), infModel, xs) - case "WirelessAssetsZone" => - performReportProcessing(config, instantiateVulnerabilityNotSeparatedWirelessDevice(config, ontModels, infModel, x.focusNode), infModel, xs) - case "WirelessAssetsConnectionZone" => - performReportProcessing(config, instantiateVulnerabilityWirelessWiredZoneCrossConnection(config, ontModels, infModel, x.focusNode), infModel, xs) - } - case Nil => ontModels - } - - - private def instantiateVulnerabilityNoPlcProgramCopyProtection(config: Config, ontModels: Option[OntModels], focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#NoPLCProgramCopyProtection") - val focusIndv = o.aml.getIndividual(focusNode) - vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), focusIndv) - o - } - - private def instantiateVulnerabilityNoPlcProgramKnowHowProtection(config: Config, ontModels: Option[OntModels], focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#NoPLCProgramKnowHowProtection") - val focusIndv = o.aml.getIndividual(focusNode) - vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), focusIndv) - o - } - - private def instantiateVulnerabilityUnusedOpenPort(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.secOntConfig.ns}#UnusedOpenPort") - /* Obtaining the asset from the logical endpoint. */ - val focusIndv = infModel.getDeductionsModel.getResource(focusNode) - val hasEIInvProperty = infModel.getDeductionsModel.getProperty(s"${config.amlConfig.nsOnt}#hasEIInv") - val hasIEInvProperty = infModel.getDeductionsModel.getProperty(s"${config.amlConfig.nsOnt}#hasIEInv") - val asset = infModel - /* Based on logical endpoint, get logical portlist */ - .listStatements(focusIndv, hasEIInvProperty, null) - .asScala.nextOption() - .map(_.getObject) - .flatMap { logicalPortList => - /* Go even one hierarchy up to obtain the asset. */ - infModel.listStatements(logicalPortList.asResource(), hasIEInvProperty, null).asScala.nextOption.map(_.getObject) - } - asset map { a => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), a.asResource) } - o - } - - private def instantiateVulnerabilityInsecureProtocolUsed(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.secOntConfig.ns}#InsecureProtocolUsed") - val assets = getAssetFromLogicalOrPhysicalConnection(config, o.aml, infModel, focusNode) - assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), asset)) - o - } - - private def instantiateVulnerabilityInsecureAlgorithmUsed(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.secOntConfig.ns}#InsecureAlgorithmUsed") - val focusIndv = o.aml.getIndividual(focusNode) - val queryResult = QueryExecutor.query( - s = - s""" - |PREFIX rdf: - |PREFIX rdfs: - |PREFIX owl: - |PREFIX amlImp: - |PREFIX amlOnt: - |PREFIX icsSecOnt: - |PREFIX secOnt: - |SELECT DISTINCT ?asset - | WHERE { - | ?asset rdf:type ?assetType . - | ?assetType rdfs:subClassOf* secOnt:Asset . - | ?asset amlOnt:hasIE+ <${focusIndv.toString}> . - | } - """.stripMargin, - infModel = infModel, - resBinding = None - ) - queryResult.values.foreach { binding => - val value = queryResult.variables.find(_.getVarName == "asset").map(binding.get) - value.map(v => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), o.aml.getIndividual(v.getURI))) - } - o - } - - private def instantiateVulnerabilityUntrustedCrossZoneConnection(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#UntrustedCrossZoneConnection") - val assets = getAssetFromLogicalOrPhysicalConnection(config, o.aml, infModel, focusNode) - assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), asset)) - o - } - - private def instantiateVulnerabilityItOtCrossConnection(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#ITOTCrossConnection") - val assets = getAssetFromLogicalOrPhysicalConnection(config, o.aml, infModel, focusNode) - assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), asset)) - o - } - - private def instantiateVulnerabilityTemporaryConnection(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#NotSeparatedTemporarilyConnectedDevice") - val focusIndv = o.aml.getIndividual(focusNode) - vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), focusIndv) - o - } - - private def instantiateVulnerabilityExtConnection(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#NotSeparatedDeviceConnectedToExternalNetworks") - val focusIndv = o.aml.getIndividual(focusNode) - vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), focusIndv) - o - } - - private def instantiateVulnerabilitySafetyAssetsZone(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#NotSeparatedSafetyRelatedDevice") - val focusIndv = o.aml.getIndividual(focusNode) - vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), focusIndv) - o - } - - private def instantiateVulnerabilitySafetyNonSafetyZoneCrossConnection(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#SafetyNonSafetyZoneCrossConnection") - val assets = getAssetFromLogicalOrPhysicalConnection(config, o.aml, infModel, focusNode) - assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), asset)) - o - } - - private def instantiateVulnerabilityNotSeparatedWirelessDevice(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#NotSeparatedWirelessDevice") - val focusIndv = o.aml.getIndividual(focusNode) - vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), focusIndv) - o - } - - private def instantiateVulnerabilityWirelessWiredZoneCrossConnection(config: Config, ontModels: Option[OntModels], infModel: InfModel, focusNode: String): Option[OntModels] = ontModels map { o => - val vulnIndv = o.aml.getIndividual(s"${config.icsSecOntConfig.ns}#WirelessWiredZoneCrossConnection") - val assets = getAssetFromLogicalOrPhysicalConnection(config, o.aml, infModel, focusNode) - assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, o), asset)) - o - } - - private def getAssetFromLogicalOrPhysicalConnection(config: Config, ontModel: OntModel, infModel: InfModel, focusNode: String): Iterator[RDFNode] = { - val focusIndv = ontModel.getIndividual(focusNode) - val hasEIProperty = ontModel.getObjectProperty(s"${config.amlConfig.nsOnt}#hasEI") - // val hasIEProperty = ontModel.getObjectProperty(s"${config.amlConfig.nsOnt}#hasIE") - val hasEIInvProperty = infModel.getDeductionsModel.getProperty(s"${config.amlConfig.nsOnt}#hasEIInv") - val hasIEInvProperty = infModel.getDeductionsModel.getProperty(s"${config.amlConfig.nsOnt}#hasIEInv") - val hasRefPartnerProperty = infModel.getDeductionsModel.getProperty(s"${config.amlConfig.nsOnt}#hasRefPartner") - val hasRefPartnerSideAProperty = infModel.getDeductionsModel.getProperty(s"${config.amlConfig.nsOnt}#hasRefPartnerSideA") - val assets = - /* Obtain logical endpoint from logical or physical connection. */ - focusIndv.listProperties(hasEIProperty).asScala - .map(_.getObject) - .flatMap { endpointA => - /* Obtain link. */ - infModel - .listStatements(endpointA.asResource(), hasRefPartnerProperty, null) - .asScala.nextOption() - .map(_.getObject) - .flatMap { link => - /* Obtain object of hasRefPartnerSideA (but exclude currently processed logical endpoint). */ - infModel - .listStatements(link.asResource(), hasRefPartnerSideAProperty, null).asScala - .map(_.getObject) - .filterNot(rdfNode => rdfNode.toString.equals(endpointA.toString)) - .nextOption() - } - .flatMap { endpointB => - /* Obtain object logical or physical portlist. */ - infModel - .listStatements(endpointB.asResource(), hasEIInvProperty, null) - .asScala.nextOption() - .map(_.getObject) - } - .flatMap { portlist => - /* Finally, obtain asset. */ - infModel - .listStatements(portlist.asResource(), hasIEInvProperty, null) - .asScala.nextOption() - .map(_.getObject) - } - } - assets - } - - private def getVulnerabilityOnAssetObjectProperty(config: Config, ontModels: OntModels) = - ontModels.aml.getObjectProperty(s"${config.secOntConfig.ns}#vulnerability_on_Asset") - - private def getVulnerabilityExploitedByThreatObjectProperty(config: Config, ontModels: OntModels) = - ontModels.aml.getObjectProperty(s"${config.secOntConfig.ns}#vulnerability_exploitedBy_Threat") - - def processCves(config: Config, ontModels: OntModels, resultSetBinding: ResultSetBinding): Option[OntModels] = { - val queryResult = QueryExecutor.query( - s = - s""" - |PREFIX rdf: - |PREFIX rdfs: - |PREFIX owl: - |PREFIX amlImp: - |PREFIX amlOnt: - |PREFIX icsSecOnt: - |PREFIX secOnt: - |SELECT DISTINCT ?cve ?cveId ?cpe ?version ?other ?part ?product ?productName ?vendor ?vendorName ?indvAml ?cvss ?cvssBaseScore - | WHERE { - | ?indvAml amlImp:hasCpePart ?part. - | ?indvAml amlImp:hasCpeVendor ?vendorName. - | ?indvAml amlImp:hasCpeProduct ?productName. - | ?indvAml amlImp:hasCpeVersion ?version. - | } - """.stripMargin, - ontModel = ontModels.aml, - Some(resultSetBinding) - ) - val vulnOntCls = ontModels.aml.getOntClass(s"${config.secOntConfig.ns}#Vulnerability") - val vulnerableSoftwareIndv = ontModels.aml.getIndividual(s"${config.secOntConfig.ns}#VulnerableSoftware") - val vulnerabilityCveDataProperty = ontModels.aml.getDatatypeProperty(s"${config.secOntConfig.ns}#vulnerability_has_Cve") - val vulnerabilityCvssDataProperty = ontModels.aml.getDatatypeProperty(s"${config.secOntConfig.ns}#vulnerability_has_SeverityValue") - - queryResult.values.foreach { binding => - val cveIdentifier = queryResult.variables.find(_.getVarName == "cveId").map(binding.get) - val amlIndv = queryResult.variables.find(_.getVarName == "indvAml").map(binding.get) - val sepsesCveIndv = queryResult.variables.find(_.getVarName == "cve").map(binding.get) - val sepsesCvssBaseScore = queryResult.variables.find(_.getVarName == "cvssBaseScore").flatMap(x => Option(binding.get(x))) // can be null, wrap with Option - for { - cveId <- cveIdentifier - amlI <- amlIndv - cveI <- sepsesCveIndv - vulnIndv <- Some(ontModels.aml.createIndividual(s"${config.secOntConfig.ns}#${cveId.toString.replace("\"", "")}", vulnOntCls)) - } yield { - vulnIndv.addProperty(getVulnerabilityExploitedByThreatObjectProperty(config, ontModels), vulnerableSoftwareIndv) - vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, ontModels), ontModels.aml.getIndividual(amlI.getURI)) - vulnIndv.addProperty(vulnerabilityCveDataProperty, ResourceFactory.createTypedLiteral(cveI.getURI, XSDDatatype.XSDanyURI)) - // In case CVSS exists, add property - sepsesCvssBaseScore foreach { - cvss => vulnIndv.addProperty(vulnerabilityCvssDataProperty, ResourceFactory.createTypedLiteral(cvss.getLiteral.getValue.toString, XSDDatatype.XSDdouble)) - } - } - } - Some(ontModels) - } - -} diff --git a/amlsec/src/main/scala/org/sba_research/AttackGraph.scala b/amlsec/src/main/scala/org/sba_research/ag/AttackGraph.scala similarity index 78% rename from amlsec/src/main/scala/org/sba_research/AttackGraph.scala rename to amlsec/src/main/scala/org/sba_research/ag/AttackGraph.scala index a0ed4ed..2d7a4b9 100644 --- a/amlsec/src/main/scala/org/sba_research/AttackGraph.scala +++ b/amlsec/src/main/scala/org/sba_research/ag/AttackGraph.scala @@ -1,4 +1,4 @@ -package org.sba_research +package org.sba_research.ag import java.io.File @@ -10,16 +10,17 @@ import guru.nidi.graphviz.model.Factory._ import guru.nidi.graphviz.model.Node import org.apache.jena.ontology.{Individual, OntClass, OntModel, OntTools} import org.apache.jena.rdf.model.{InfModel, Model, Property, Resource} +import org.sba_research.Config +import org.sba_research.utils.{OntModelUtils, QueryExecutor} import scala.annotation.tailrec -import scala.collection.JavaConverters._ +import scala.jdk.CollectionConverters._ object AttackGraph { val logger = Logger(getClass) - - def generate(config: Config, ontModel: OntModel): Option[Model] = { + def generate(config: Config, model: Model, withInference: Boolean = true): Option[Model] = { QueryExecutor.construct( s = """ @@ -159,7 +160,8 @@ object AttackGraph { | |} """.stripMargin, - ontModel = ontModel + model = model, + reasonerUri = if (withInference) Some(config.reasonerUri) else None ) } @@ -222,7 +224,7 @@ object AttackGraph { | ?vulnerability a secOnt:Vulnerability. | } """.stripMargin, - ontModel = model, + model = model, resBinding = None ) @@ -257,9 +259,9 @@ object AttackGraph { () } - def plotPrunedAg(config: Config, model: OntModel): Unit = { + def plotPrunedAg(config: Config, model: OntModel, withInference: Boolean = true): Unit = { - val infModel = OntModelUtils.getInfModel(model) + val infModel = if (withInference) OntModelUtils.getInfModel(model, config.reasonerUri) else model val queryResult = QueryExecutor.query( s = @@ -275,51 +277,53 @@ object AttackGraph { |PREFIX agOnt: |SELECT DISTINCT ?asset1 ?vulnerability ?asset2 ?vulnScore ?v1Weight ?v2Weight | WHERE { - | ?v1 agOnt:vertex_has_Edge ?e. - | ?v1 agOnt:vertex_has_Asset ?asset1. - | ?e agOnt:edge_has_Vertex ?v2. - | ?v2 agOnt:vertex_has_Asset ?asset2. - | ?e agOnt:edge_has_Vulnerability ?vulnerability. - | ?v1 a agOnt:Vertex. - | ?v2 a agOnt:Vertex. - | ?e a agOnt:Edge. - | ?asset1 rdf:type ?assetType. - | ?asset2 rdf:type ?assetType. - | ?assetType rdfs:subClassOf* secOnt:Asset. - | ?vulnerability a secOnt:Vulnerability. - | ?vulnerability secOnt:vulnerability_has_SeverityValue ?vulnScore. - | ?v1 agOnt:vertex_has_Weight ?v1Weight. - | ?v2 agOnt:vertex_has_Weight ?v2Weight. + | ?v1 agOnt:vertex_has_Edge ?e ; + | agOnt:vertex_has_Asset ?asset1 . + | ?e agOnt:edge_has_Vertex ?v2 ; + | agOnt:edge_has_Vulnerability ?vulnerability . + | ?v2 agOnt:vertex_has_Asset ?asset2 . + | ?v1 a agOnt:Vertex . + | ?v2 a agOnt:Vertex . + | ?e a agOnt:Edge . + | ?asset1 rdf:type ?assetType . + | ?asset2 rdf:type ?assetType . + | ?assetType rdfs:subClassOf* secOnt:Asset . + | ?vulnerability a secOnt:Vulnerability ; + | secOnt:vulnerability_has_SeverityValue ?vulnScore . + | ?v1 agOnt:vertex_has_Weight ?v1Weight . + | ?v2 agOnt:vertex_has_Weight ?v2Weight . | | FILTER NOT EXISTS { - | ?asset1 a amlImp:Robot. - | } - | FILTER NOT EXISTS { - | ?asset1 a amlImp:PLC. - | } - | FILTER NOT EXISTS { - | ?asset1 a amlImp:SIS. - | } - | FILTER NOT EXISTS { - | ?asset1 a amlImp:WirelessHARTSensor. + | { ?asset1 a amlImp:Robot . } + | UNION + | { ?asset1 a amlImp:PLC . } + | UNION + | { ?asset1 a amlImp:SIS . } + | UNION + | { ?asset1 a amlImp:WirelessHARTSensor . } | } | | FILTER NOT EXISTS { - | ?asset2 a amlImp:PLC. - | FILTER( ?v2Weight < "9.0"^^xsd:double ) - | } - | FILTER NOT EXISTS { - | ?asset2 a amlImp:SIS. - | FILTER( ?v2Weight < "9.0"^^xsd:double ) - | } - | FILTER NOT EXISTS { - | ?asset2 a amlImp:WirelessHARTSensor. + | { ?asset2 a amlImp:PLC . } + | UNION + | { ?asset2 a amlImp:SIS . } + | UNION + | { ?asset2 a amlImp:WirelessHARTSensor . } | FILTER( ?v2Weight < "9.0"^^xsd:double ) | } | + | ?v1 (agOnt:vertex_has_Edge/agOnt:edge_has_Vertex)+ ?vOfInterest . + | ?vOfInterest agOnt:vertex_has_Asset ?assetOfInterest ; + | agOnt:vertex_has_Weight ?vOfInterestWeight . + | FILTER( ?vOfInterestWeight >= "9.0"^^xsd:double ) + | { ?assetOfInterest a amlImp:PLC . } + | UNION + | { ?assetOfInterest a amlImp:SIS . } + | UNION + | { ?assetOfInterest a amlImp:WirelessHARTSensor . } | } """.stripMargin, - infModel = infModel, + model = infModel, resBinding = None ) @@ -355,26 +359,26 @@ object AttackGraph { // Only keep edges that connect asset1 and asset2 if they are in the same zone layer or if asset2 is in a zone below asset1 .flatMap { case (v1, v2, vuln, score) => - val zoneOfAsset1 = getZoneFromAsset(config, model, infModel, v1) - val zoneOfAsset2 = getZoneFromAsset(config, model, infModel, v2) - - logger.info(s"$v1 (zone: $zoneOfAsset1), $v2 (zone: $zoneOfAsset2), $vuln, $score") - - // Check whether asset 1 is in higher or same layer than asset 2 - if (zoneHierarchy.indexOf(zoneOfAsset1) <= zoneHierarchy.indexOf(zoneOfAsset2)) { - val v1Lbl = getNodeLabel(v1) - val v2Lbl = getNodeLabel(v2) - val vulLbl = getNodeLabel(vuln) - Some( - node(v1Lbl).`with`(Font.name("Times New Roman")) - .link( - to(node(v2Lbl).`with`(Font.name("Times New Roman"))) - .`with`(Style.SOLID, Label.of(vulLbl), Color.BLACK, Font.name("Times New Roman")) - ) - ) - } else None // Asset 1 is in a 'lower' zone than asset 2 (--> do not create an edge) + val zoneOfAsset1 = getZoneFromAsset(config, model, infModel, v1) + val zoneOfAsset2 = getZoneFromAsset(config, model, infModel, v2) + + logger.info(s"$v1 (zone: $zoneOfAsset1), $v2 (zone: $zoneOfAsset2), $vuln, $score") + + // Check whether asset 1 is in higher or same layer than asset 2 + if (zoneHierarchy.indexOf(zoneOfAsset1) <= zoneHierarchy.indexOf(zoneOfAsset2)) { + val v1Lbl = getNodeLabel(v1) + val v2Lbl = getNodeLabel(v2) + val vulLbl = getNodeLabel(vuln) + Some( + node(v1Lbl).`with`(Font.name("Times New Roman")) + .link( + to(node(v2Lbl).`with`(Font.name("Times New Roman"))) + .`with`(Style.SOLID, Label.of(vulLbl), Color.BLACK, Font.name("Times New Roman")) + ) + ) + } else None // Asset 1 is in a 'lower' zone than asset 2 (--> do not create an edge) - }.toList + }.toList val g = graph("pruned_ag") .directed @@ -398,6 +402,8 @@ object AttackGraph { val hasIEInvObjectProperty = infModel.getProperty(s"${config.amlConfig.nsOnt}#hasIEInv") val zoneClass = ontModel.getOntClass(s"${config.amlConfig.nsImp}#Zone") val zoneClasses = OntModelUtils.getAllSubclasses(zoneClass) + /* We have to filter out the very same Zone class, because when we materialize the inferences beforehand, it will have a subclass with itself. */ + .filterNot(_ == zoneClass) val assetRes = infModel.getResource(asset.getURI) @tailrec @@ -408,8 +414,22 @@ object AttackGraph { val ieInvIndv = ontModel.getIndividual(ieInvResource.getURI) /* Retrieve all classes of individual. */ val ieInvIndvClasses: List[OntClass] = ieInvIndv.listOntClasses(false).asScala.toList - /* Find a zone class from the individual's classes. */ - val cls = ieInvIndvClasses.find(zoneClasses.contains) + /* Get only the classes of the individual that are actually a zone. */ + /* This is necessary if we materialize the inferences beforehand, since there will be then multiple non-relevant classes (e.g., owl:Thing, rdfs:Resource). */ + val ieInvIndvZoneClasses = ieInvIndvClasses + /* Filter out all non-zone classes. */ + .filter(zoneClasses.contains(_)) + val cls = + /* If individual has more than one zone class, we know that we have materialized the inferences before. */ + if (ieInvIndvZoneClasses.size > 1) + /* Find the one zone that has no subclasses. */ + ieInvIndvZoneClasses.find { clzz => + /* First filter out the current zone class. */ + ieInvIndvZoneClasses.filterNot(_ == clzz) + /* Then, check if there exists a zone class that has the current zone class as a subclass. */ + .exists(_.hasSubClass(clzz)) + } else /* No prior materialization of inferences; thus, we have only one zone class. Take the head. */ + ieInvIndvZoneClasses.headOption cls match { case Some(ontclzz: OntClass) => ontclzz // Zone found, return case None => diff --git a/amlsec/src/main/scala/org/sba_research/casestudy/CaseStudy.scala b/amlsec/src/main/scala/org/sba_research/casestudy/CaseStudy.scala new file mode 100644 index 0000000..8c417ff --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/casestudy/CaseStudy.scala @@ -0,0 +1,31 @@ +package org.sba_research.casestudy + +import org.apache.jena.datatypes.xsd.XSDDatatype +import org.apache.jena.ontology.OntModel +import org.apache.jena.rdf.model.ResourceFactory +import org.sba_research.Config +import org.sba_research.ag.AttackGraph + +object CaseStudy { + + /** + * Plots a CPAG with manually adjusted weights of control devices to focus on a specific part of the spot welding process. + * + * @param config the configurations + * @param model the ontology model + */ + def plotCpag(config: Config, model: OntModel, withInference: Boolean = true): Unit = { + val vertexHasWeightUri = s"${config.agOnt.ns}#vertex_has_Weight" + val vertexHasWeightProperty = Option(model.getObjectProperty(vertexHasWeightUri)).getOrElse(model.getDatatypeProperty(vertexHasWeightUri)) + + val indvKRC4_2 = model.getIndividual(s"${config.agOnt.ns}#vertex_ie_KRC4_2_483b250d-bc7e-411d-976c-9dea138fbc60") + indvKRC4_2.setPropertyValue(vertexHasWeightProperty, ResourceFactory.createTypedLiteral("9.0", XSDDatatype.XSDdouble)) + val indvS71510_2 = model.getIndividual(s"${config.agOnt.ns}#vertex_ie_SimaticS71510SPF1PN2_3cf68364-1144-4262-b3c6-b050303c5ef2") + indvS71510_2.setPropertyValue(vertexHasWeightProperty, ResourceFactory.createTypedLiteral("9.0", XSDDatatype.XSDdouble)) + val indvS7_2 = model.getIndividual(s"${config.agOnt.ns}#vertex_ie_SimaticS71516F_2_c403dd71-4d52-4d22-a917-e2a991008be8") + indvS7_2.setPropertyValue(vertexHasWeightProperty, ResourceFactory.createTypedLiteral("9.0", XSDDatatype.XSDdouble)) + + AttackGraph.plotPrunedAg(config, model, withInference) + } + +} diff --git a/amlsec/src/main/scala/org/sba_research/casestudy/CaseStudyConsequenceIdentificationDemoApp.scala b/amlsec/src/main/scala/org/sba_research/casestudy/CaseStudyConsequenceIdentificationDemoApp.scala new file mode 100644 index 0000000..0f8766e --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/casestudy/CaseStudyConsequenceIdentificationDemoApp.scala @@ -0,0 +1,81 @@ +package org.sba_research.casestudy + +import com.typesafe.scalalogging.Logger +import org.apache.jena.ontology.OntModel +import org.sba_research.Config +import org.sba_research.model.{AmlOntExtension, OntModels} +import org.sba_research.utils.{OntModelUtils, QueryExecutor} + +object CaseStudyConsequenceIdentificationDemoApp { + + def main(args: Array[String]): Unit = { + + val logger = Logger("Root") + val config = Config() + // We still have to populate the ontology models in order to setup the alternative location mappings (otherwise the ontologies cannot be found) + val ontModels = OntModels(config) + + val model: OntModel = OntModelUtils.createModel("generated/amlsec.ttl", "aml", Some("ttl")) + AmlOntExtension.importSecOnts(config, model) + model.setStrictMode(false) + + QueryExecutor.query( + s = + """ + |PREFIX rdf: + |PREFIX rdfs: + |PREFIX owl: + |PREFIX amlImp: + |PREFIX amlOnt: + |PREFIX secOnt: + |PREFIX icsSecOnt: + |SELECT DISTINCT ?actuator ?vulnerableDevice1 ?vulnerabilityOfDevice1 ?vulnerableDevice2 ?vulnerabilityOfDevice2 + | WHERE { + | ?hazardConsequence1 rdf:type/rdfs:subClassOf* icsSecOnt:Hazard . + | ?vulnerableDevice1 secOnt:asset_impactedBy_Consequence ?hazardConsequence1 ; + | secOnt:asset_has_Vulnerability ?vulnerabilityOfDevice1 ; + | amlOnt:hasIE/amlOnt:hasEI ?socket1 . + | + | ?motorWireConnection a amlImp:MotorWire ; + | amlOnt:hasEI ?plug1, ?plug2 . + | + | ?plug1 amlOnt:hasRefPartner ?link1 . + | ?plug2 amlOnt:hasRefPartner ?link2 . + | ?socket1 amlOnt:hasRefPartner ?link1 . + | ?socket2 amlOnt:hasRefPartner ?link2 . + | + | FILTER ( ?plug1 != ?socket1 ) . + | FILTER ( ?plug2 != ?socket2 ) . + | + | ?actuator amlOnt:hasIE/amlOnt:hasEI ?socket2 . + | + | FILTER ( ?vulnerableDevice1 != ?actuator ). + | + | OPTIONAL { + | ?logicalConnection a amlImp:LogicalConnection ; + | amlOnt:hasEI ?plug3, ?plug4 . + | + | FILTER ( str(?plug3) < str(?plug4) ) . + | + | ?plug3 amlOnt:hasRefPartner ?link3 . + | ?plug4 amlOnt:hasRefPartner ?link4 . + | ?socket3 amlOnt:hasRefPartner ?link3 . + | ?socket4 amlOnt:hasRefPartner ?link4 . + | FILTER ( ?plug3 != ?socket3 ) . + | FILTER ( ?plug4 != ?socket4 ) . + | + | ?vulnerableDevice1 amlOnt:hasIE/amlOnt:hasEI ?socket3 . + | ?vulnerableDevice2 amlOnt:hasIE/amlOnt:hasEI ?socket4 . + | + | ?hazardConsequence2 rdf:type/rdfs:subClassOf* icsSecOnt:Hazard . + | ?vulnerableDevice2 secOnt:asset_impactedBy_Consequence ?hazardConsequence2 ; + | secOnt:asset_has_Vulnerability ?vulnerabilityOfDevice2 . + | } + | } + """.stripMargin, + model = model, + resBinding = None + ) + } + +} diff --git a/amlsec/src/main/scala/org/sba_research/AmlOntExtension.scala b/amlsec/src/main/scala/org/sba_research/model/AmlOntExtension.scala similarity index 72% rename from amlsec/src/main/scala/org/sba_research/AmlOntExtension.scala rename to amlsec/src/main/scala/org/sba_research/model/AmlOntExtension.scala index a1661e3..d18054e 100644 --- a/amlsec/src/main/scala/org/sba_research/AmlOntExtension.scala +++ b/amlsec/src/main/scala/org/sba_research/model/AmlOntExtension.scala @@ -1,13 +1,25 @@ -package org.sba_research +package org.sba_research.model import org.apache.jena.ontology.{OntClass, OntModel, OntResource} -import org.apache.jena.rdf.model.ResourceFactory +import org.apache.jena.rdf.model.{Model, ResourceFactory} import org.apache.jena.util.iterator.ExtendedIterator import org.apache.jena.vocabulary.OWL2 +import org.sba_research.Config +import org.sba_research.utils.{OntModelUtils, QueryExecutor} object AmlOntExtension { def augment(config: Config, ontModel: OntModel): Option[OntModel] = + for { + model <- addOntAxioms(config, ontModel) + /* Add object properties 'asset_physicallyConnectedTo_Asset' */ + ontModelAssetConnectedToAssetRoles <- addAssetPhysicallyConnectedToAssetRoles(config, model).map(m => model.add(m).asInstanceOf[OntModel]) + /* Add object properties 'asset_logicallyConnectedTo_Asset' */ + ontModelAssetLogicallyConnectedToAssetRoles <- addAssetLogicallyConnectedToAssetRoles(config, ontModelAssetConnectedToAssetRoles).map(m => ontModel.add(m).asInstanceOf[OntModel]) + } yield ontModelAssetLogicallyConnectedToAssetRoles + + + def addOntAxioms(config: Config, ontModel: OntModel): Option[OntModel] = for { /* TBox and RBox axioms to establish clean semantics */ ontModelInvPartnerObject <- addInverseOfRefPartnerObjectProperty(config, ontModel) // Add `inverseOf` to `refPartnerSideA` and `refPartnerSideB` @@ -32,12 +44,7 @@ object AmlOntExtension { ontModelConceptEquivs <- addConceptEquivalenceAcrossNs(config, ontModelConsequencesIndv) /* Add subclass of axioms for assets network device, host, and security device */ ontModelAssetsSubclasses <- addAssetsSubclasses(config, ontModelConceptEquivs) - /* Add object properties 'asset_physicallyConnectedTo_Asset' */ - ontModelAssetConnectedToAssetRoles <- addAssetPhysicallyConnectedToAssetRoles(config, ontModelAssetsSubclasses) - /* Add object properties 'asset_logicallyConnectedTo_Asset' */ - ontModelAssetLogicallyConnectedToAssetRoles <- addAssetLogicallyConnectedToAssetRoles(config, ontModelAssetConnectedToAssetRoles) - } yield ontModelAssetLogicallyConnectedToAssetRoles - + } yield ontModelAssetsSubclasses private def addInverseOfRefPartnerObjectProperty(config: Config, ontModel: OntModel): Option[OntModel] = { val refPartnerSideA = ontModel.getObjectProperty(config.amlConfig.nsOnt + "#hasRefPartnerSideA") @@ -125,7 +132,15 @@ object AmlOntExtension { private def addDisjointWithAllOtherClasses(config: Config, ontModel: OntModel, className: String, excludedClasses: List[OntClass] = List.empty): Option[OntModel] = { val cls = ontModel.getOntClass(config.amlConfig.nsImp + "#" + className) val classes = OntModelUtils.getOntResources(ontModel.listHierarchyRootClasses()) map { case c: OntClass => c } - classes.filterNot { x => x == cls || x.hasSubClass(cls) || x.hasSuperClass(cls) || excludedClasses.contains(x) }.foreach(cls.addDisjointWith) + classes + .filterNot { + x => + x == cls || + x.hasSubClass(cls) || + x.hasSuperClass(cls) || + excludedClasses.contains(x) || + x.getNameSpace != (config.amlConfig.nsImp + "#") // We also want to exclude classes that are not from the engineering ontology + }.foreach(cls.addDisjointWith) Some(ontModel) } @@ -285,135 +300,140 @@ object AmlOntExtension { Some(ontModel) } - private def addAssetPhysicallyConnectedToAssetRoles(config: Config, ontModel: OntModel): Option[OntModel] = { + def getAddAssetPhysicallyConnectedToAssetRolesQueryString(): String = + """ + |PREFIX rdf: + |PREFIX rdfs: + |PREFIX owl: + |PREFIX amlImp: + |PREFIX amlOnt: + |PREFIX secOnt: + |CONSTRUCT { ?asset1 secOnt:asset_physicallyConnectedTo_Asset ?asset2 } + | WHERE { + | { + | ?conn rdf:type ?wireType. + | ?wireType rdfs:subClassOf* amlImp:Wire. + | } + | UNION + | { + | ?conn a amlImp:WirelessConnection. + | } + | + | ?conn amlOnt:hasEI ?plug1, ?plug2. + | FILTER ( str(?plug1) < str(?plug2) ). + | + | ?plug1 amlOnt:hasRefPartner ?link1. + | ?plug2 amlOnt:hasRefPartner ?link2. + | + | ?link1 a amlImp:Link. + | ?link2 a amlImp:Link. + | + | ?socket1 amlOnt:hasRefPartner ?link1. + | ?socket2 amlOnt:hasRefPartner ?link2. + | FILTER ( ?plug1 != ?socket1 ). + | FILTER ( ?plug2 != ?socket2 ). + | + | ?portList1 amlOnt:hasEI ?socket1. + | ?portList2 amlOnt:hasEI ?socket2. + | + | ?asset1 amlOnt:hasIE ?portList1. + | ?asset2 amlOnt:hasIE ?portList2. + | + | ?zone1 amlOnt:hasIE+ ?asset1. + | ?zone2 amlOnt:hasIE+ ?asset2. + | + | ?zone1 rdf:type ?zoneType. + | ?zone2 rdf:type ?zoneType. + | ?zoneType rdfs:subClassOf* amlImp:Zone. + | + | FILTER NOT EXISTS { + | ?zone1 amlOnt:hasIE+ ?anyZone1. + | ?anyZone1 amlOnt:hasIE+ ?asset1. + | ?anyZone1 rdf:type ?anyZoneType. + | ?anyZoneType rdfs:subClassOf* amlImp:Zone. + | } + | + | FILTER NOT EXISTS { + | ?zone2 amlOnt:hasIE+ ?anyZone2. + | ?anyZone2 amlOnt:hasIE+ ?asset2. + | ?anyZone2 rdf:type ?anyZoneType. + | ?anyZoneType rdfs:subClassOf* amlImp:Zone. + | } + | + | FILTER NOT EXISTS { + | ?asset1 rdf:type ?physicalNetworkType. + | ?physicalNetworkType rdfs:subClassOf* amlImp:PhysicalNetwork. + | } + | + | FILTER NOT EXISTS { + | ?asset2 rdf:type ?physicalNetworkType. + | ?physicalNetworkType rdfs:subClassOf* amlImp:PhysicalNetwork. + | } + | + | FILTER ( ?zone1 = ?zone2 ). + | } + """.stripMargin + + def addAssetPhysicallyConnectedToAssetRoles(config: Config, model: Model, withInference: Boolean = true): Option[Model] = { QueryExecutor.construct( - s = - """ - |PREFIX rdf: - |PREFIX rdfs: - |PREFIX owl: - |PREFIX amlImp: - |PREFIX amlOnt: - |PREFIX secOnt: - |CONSTRUCT { ?asset1 secOnt:asset_physicallyConnectedTo_Asset ?asset2 } - | WHERE { - | { - | ?conn rdf:type ?wireType. - | ?wireType rdfs:subClassOf* amlImp:Wire. - | } - | UNION - | { - | ?conn a amlImp:WirelessConnection. - | } - | - | ?conn amlOnt:hasEI ?plug1, ?plug2. - | FILTER ( str(?plug1) < str(?plug2) ). - | - | ?plug1 amlOnt:hasRefPartner ?link1. - | ?plug2 amlOnt:hasRefPartner ?link2. - | - | ?link1 a amlImp:Link. - | ?link2 a amlImp:Link. - | - | ?socket1 amlOnt:hasRefPartner ?link1. - | ?socket2 amlOnt:hasRefPartner ?link2. - | FILTER ( ?plug1 != ?socket1 ). - | FILTER ( ?plug2 != ?socket2 ). - | - | ?portList1 amlOnt:hasEI ?socket1. - | ?portList2 amlOnt:hasEI ?socket2. - | - | ?asset1 amlOnt:hasIE ?portList1. - | ?asset2 amlOnt:hasIE ?portList2. - | - | ?zone1 amlOnt:hasIE+ ?asset1. - | ?zone2 amlOnt:hasIE+ ?asset2. - | - | ?zone1 rdf:type ?zoneType. - | ?zone2 rdf:type ?zoneType. - | ?zoneType rdfs:subClassOf* amlImp:Zone. - | - | FILTER NOT EXISTS { - | ?zone1 amlOnt:hasIE+ ?anyZone1. - | ?anyZone1 amlOnt:hasIE+ ?asset1. - | ?anyZone1 rdf:type ?anyZoneType. - | ?anyZoneType rdfs:subClassOf* amlImp:Zone. - | } - | - | FILTER NOT EXISTS { - | ?zone2 amlOnt:hasIE+ ?anyZone2. - | ?anyZone2 amlOnt:hasIE+ ?asset2. - | ?anyZone2 rdf:type ?anyZoneType. - | ?anyZoneType rdfs:subClassOf* amlImp:Zone. - | } - | - | FILTER ( ?zone1 = ?zone2 ). - | } - """.stripMargin, - ontModel = ontModel - ).map(m => ontModel.add(m).asInstanceOf[OntModel]) + s = getAddAssetPhysicallyConnectedToAssetRolesQueryString(), + model = model, + reasonerUri = if (withInference) Some(config.reasonerUri) else None + ) } - private def addAssetLogicallyConnectedToAssetRoles(config: Config, ontModel: OntModel): Option[OntModel] = { + def getAddAssetLogicallyConnectedToAssetRolesQueryString(): String = + """ + |PREFIX rdf: + |PREFIX rdfs: + |PREFIX owl: + |PREFIX amlImp: + |PREFIX amlOnt: + |PREFIX secOnt: + |CONSTRUCT { ?asset1 secOnt:asset_logicallyConnectedTo_Asset ?asset2 } + | WHERE { + | ?conn a amlImp:LogicalConnection. + | + | ?conn amlOnt:hasEI ?plug1, ?plug2. + | FILTER ( str(?plug1) < str(?plug2) ). + | + | ?plug1 amlOnt:hasRefPartner ?link1. + | ?plug2 amlOnt:hasRefPartner ?link2. + | + | ?link1 a amlImp:Link. + | ?link2 a amlImp:Link. + | + | ?socket1 amlOnt:hasRefPartner ?link1. + | ?socket2 amlOnt:hasRefPartner ?link2. + | FILTER ( ?plug1 != ?socket1 ). + | FILTER ( ?plug2 != ?socket2 ). + | + | ?portList1 amlOnt:hasEI ?socket1. + | ?portList2 amlOnt:hasEI ?socket2. + | + | ?asset1 amlOnt:hasIE ?portList1. + | ?asset2 amlOnt:hasIE ?portList2. + | + | FILTER NOT EXISTS { + | ?asset1 rdf:type ?logicalNetworkType. + | ?logicalNetworkType rdfs:subClassOf* amlImp:LogicalNetwork. + | } + | + | FILTER NOT EXISTS { + | ?asset2 rdf:type ?logicalNetworkType. + | ?logicalNetworkType rdfs:subClassOf* amlImp:LogicalNetwork. + | } + | + | } + """.stripMargin + + def addAssetLogicallyConnectedToAssetRoles(config: Config, model: Model, withInference: Boolean = true): Option[Model] = { QueryExecutor.construct( - s = - """ - |PREFIX rdf: - |PREFIX rdfs: - |PREFIX owl: - |PREFIX amlImp: - |PREFIX amlOnt: - |PREFIX secOnt: - |CONSTRUCT { ?asset1 secOnt:asset_logicallyConnectedTo_Asset ?asset2 } - | WHERE { - | ?conn a amlImp:LogicalConnection. - | - | ?conn amlOnt:hasEI ?plug1, ?plug2. - | FILTER ( str(?plug1) < str(?plug2) ). - | - | ?plug1 amlOnt:hasRefPartner ?link1. - | ?plug2 amlOnt:hasRefPartner ?link2. - | - | ?link1 a amlImp:Link. - | ?link2 a amlImp:Link. - | - | ?socket1 amlOnt:hasRefPartner ?link1. - | ?socket2 amlOnt:hasRefPartner ?link2. - | FILTER ( ?plug1 != ?socket1 ). - | FILTER ( ?plug2 != ?socket2 ). - | - | ?portList1 amlOnt:hasEI ?socket1. - | ?portList2 amlOnt:hasEI ?socket2. - | - | ?asset1 amlOnt:hasIE ?portList1. - | ?asset2 amlOnt:hasIE ?portList2. - | - | ?zone1 amlOnt:hasIE+ ?asset1. - | ?zone2 amlOnt:hasIE+ ?asset2. - | - | ?zone1 rdf:type ?zoneType. - | ?zone2 rdf:type ?zoneType. - | ?zoneType rdfs:subClassOf* amlImp:Zone. - | - | FILTER NOT EXISTS { - | ?zone1 amlOnt:hasIE+ ?anyZone1. - | ?anyZone1 amlOnt:hasIE+ ?asset1. - | ?anyZone1 rdf:type ?anyZoneType. - | ?anyZoneType rdfs:subClassOf* amlImp:Zone. - | } - | - | FILTER NOT EXISTS { - | ?zone2 amlOnt:hasIE+ ?anyZone2. - | ?anyZone2 amlOnt:hasIE+ ?asset2. - | ?anyZone2 rdf:type ?anyZoneType. - | ?anyZoneType rdfs:subClassOf* amlImp:Zone. - | } - | - | } - """.stripMargin, - ontModel = ontModel - ).map(m => ontModel.add(m).asInstanceOf[OntModel]) + s = getAddAssetLogicallyConnectedToAssetRolesQueryString(), + model = model, + reasonerUri = if (withInference) Some(config.reasonerUri) else None + ) } } diff --git a/amlsec/src/main/scala/org/sba_research/model/OntModels.scala b/amlsec/src/main/scala/org/sba_research/model/OntModels.scala index 86dc971..4289103 100644 --- a/amlsec/src/main/scala/org/sba_research/model/OntModels.scala +++ b/amlsec/src/main/scala/org/sba_research/model/OntModels.scala @@ -1,9 +1,8 @@ package org.sba_research.model - -import org.apache.jena.ontology.{OntDocumentManager, OntModel} -import org.apache.jena.util.{FileManager, LocationMapper} -import org.sba_research.{Config, OntModelUtils} +import org.apache.jena.ontology.OntModel +import org.sba_research.Config +import org.sba_research.utils.OntModelUtils case class OntModels(aml: OntModel, sec: OntModel, icssec: OntModel, ag: OntModel) @@ -11,25 +10,12 @@ object OntModels { def apply(config: Config): OntModels = { - /** - * Sets up the appropriate mappings from IRIs to local files. - */ - def setupLocationMappings(): Unit = { - val locMgr = new LocationMapper() - locMgr.addAltEntry(config.secOntConfig.ns, getClass.getResource("/" + config.secOntConfig.fileName).toString) - locMgr.addAltEntry(config.icsSecOntConfig.ns, getClass.getResource("/" + config.icsSecOntConfig.fileName).toString) - locMgr.addAltEntry(config.agOnt.ns, getClass.getResource("/" + config.agOnt.fileName).toString) - FileManager.get.setLocationMapper(locMgr) - // Ensure that the document manager directly uses the global file manager (see JavaDoc of OntDocumentManager) - OntDocumentManager.getInstance.setFileManager(FileManager.get) - } - - setupLocationMappings() + OntModelUtils.setupLocationMappings(config) - val amlOntModel = OntModelUtils.createModel(config.amlConfig.fileName, "aml", Some("Turtle")) - val secOntModel = OntModelUtils.createModel(config.secOntConfig.fileName, "sec") - val icsSecOntModel = OntModelUtils.createModel(config.icsSecOntConfig.fileName, "icssec") - val agOntModel = OntModelUtils.createModel(config.agOnt.fileName, "ag") + val amlOntModel = OntModelUtils.createModel(config.amlConfig.ontFilePath, "aml", Some("Turtle")) + val secOntModel = OntModelUtils.createModel(config.secOntConfig.filePath, "sec") + val icsSecOntModel = OntModelUtils.createModel(config.icsSecOntConfig.filePath, "icssec") + val agOntModel = OntModelUtils.createModel(config.agOnt.filePath, "ag") this (amlOntModel, secOntModel, icsSecOntModel, agOntModel) } diff --git a/amlsec/src/main/scala/org/sba_research/utils/OntModelUtils.scala b/amlsec/src/main/scala/org/sba_research/utils/OntModelUtils.scala new file mode 100644 index 0000000..e65d0cc --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/utils/OntModelUtils.scala @@ -0,0 +1,109 @@ +package org.sba_research.utils + +import java.io.{BufferedWriter, File, FileInputStream, FileWriter} + +import com.typesafe.scalalogging.Logger +import org.apache.jena.ontology._ +import org.apache.jena.rdf.model.{InfModel, Model, ModelFactory} +import org.apache.jena.reasoner.rulesys.{OWLFBRuleReasonerFactory, OWLMicroReasonerFactory, OWLMiniReasonerFactory, RDFSRuleReasonerFactory} +import org.apache.jena.reasoner.transitiveReasoner.TransitiveReasonerFactory +import org.apache.jena.reasoner.{Reasoner, ReasonerRegistry} +import org.apache.jena.util.iterator.ExtendedIterator +import org.apache.jena.util.{FileManager, LocationMapper, SplitIRI} +import org.sba_research.Config + +import scala.annotation.tailrec + +object OntModelUtils { + + val logger = Logger(getClass) + + /** + * Removes the namespace from a given String. + * + * @param s the String to remove the namespace from + * @return a string without the namespace + */ + def removeNamespace(s: String): String = SplitIRI.splitpoint(s) match { + case x if x > -1 => s.substring(x) + case _ => s + } + + def getInfModel(model: Model, reasonerUri: String): InfModel = { + // val schema = FileManager.get.loadModel(path.toFile.getAbsolutePath + "/src/main/resources/amlontology.ttl") + val reasoner: Reasoner = reasonerUri match { + case TransitiveReasonerFactory.URI => ReasonerRegistry.getTransitiveReasoner + case RDFSRuleReasonerFactory.URI => ReasonerRegistry.getRDFSReasoner + case OWLFBRuleReasonerFactory.URI => ReasonerRegistry.getOWLReasoner + case OWLMicroReasonerFactory.URI => ReasonerRegistry.getOWLMicroReasoner + case OWLMiniReasonerFactory.URI => ReasonerRegistry.getOWLMiniReasoner + case _ => + logger.error(s"Could not match $reasonerUri to reasoner, falling back to ${OWLFBRuleReasonerFactory.URI}.") + ReasonerRegistry.getOWLReasoner + } + //var reasoner = ReasonerRegistry.getOWLReasoner + //reasoner = reasoner.bindSchema(model) + ModelFactory.createInfModel(reasoner, model) + } + + def write(ontModel: Model, pathName: String): Unit = { + val file = new File(pathName) + val bw = new BufferedWriter(new FileWriter(file)) + ontModel.write(bw, "Turtle") + bw.close() + } + + def createModel(filePath: String, base: String, lang: Option[String] = None): OntModel = { + val m = ModelFactory.createOntologyModel(OntModelSpec.OWL_DL_MEM) + val f = new File(filePath) + val in = new FileInputStream(f) + lang match { + case Some(l) => m.read(in, base, l) + case None => m.read(in, base) + } + m.setDynamicImports(true) // Enable import processing + // cf. https://stackoverflow.com/a/17447438/5107545 + // `individual.listOntClasses(false).asScala.toList` throws + // org.apache.jena.ontology.ConversionException: Cannot convert node http://www.w3.org/2002/07/owl#NamedIndividual to OntClass: it does not have rdf:type owl:Class or equivalent + m.setStrictMode(false) + m + } + + @tailrec + def getAllSubclasses(ontCls: OntClass, l: List[OntClass] = List.empty, acc: List[OntClass] = List.empty): List[OntClass] = + acc match { + case x :: xs => + getAllSubclasses( + x, + ontCls :: l, // Prepend currently processed ontology class + xs ::: getOntResources(x.listSubClasses()) // Use elements on same hierarchy and subclasses of next element as accumulator + .flatMap(ontClsConversion)) + case Nil if ontCls.hasSubClass && !ontCls.listSubClasses().toList.isEmpty => // Currently processed ontology class is last one in hierarchy, go one level down as subclass exist + getAllSubclasses(ontCls, l, getOntResources(ontCls.listSubClasses()).flatMap(ontClsConversion)) + case Nil => ontCls :: l // Last element in hierarchy, no subclasses of ontology class + } + + @tailrec + def getOntResources(iter: ExtendedIterator[_ <: OntResource], l: List[OntResource] = List.empty): List[OntResource] = + if (iter.hasNext) getOntResources(iter, l ::: List(iter.next())) + else l + + private def ontClsConversion(cls: OntResource) = cls match { + case cls: OntClass => Some(cls) + case _ => None + } + + /** + * Sets up the appropriate mappings from IRIs to local files. + */ + def setupLocationMappings(config: Config): Unit = { + val locMgr = new LocationMapper() + locMgr.addAltEntry(config.secOntConfig.ns, config.secOntConfig.filePath) + locMgr.addAltEntry(config.icsSecOntConfig.ns, config.icsSecOntConfig.filePath) + locMgr.addAltEntry(config.agOnt.ns, config.agOnt.filePath) + FileManager.get.setLocationMapper(locMgr) + // Ensure that the document manager directly uses the global file manager (see JavaDoc of OntDocumentManager) + OntDocumentManager.getInstance.setFileManager(FileManager.get) + } + +} \ No newline at end of file diff --git a/amlsec/src/main/scala/org/sba_research/utils/PerformanceMeasurement.scala b/amlsec/src/main/scala/org/sba_research/utils/PerformanceMeasurement.scala new file mode 100644 index 0000000..5d886a4 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/utils/PerformanceMeasurement.scala @@ -0,0 +1,34 @@ +package org.sba_research.utils + +import java.io.{File, FileWriter} + +import org.sba_research.Config + +object PerformanceMeasurement { + + // cf. https://stackoverflow.com/a/9160068/5107545 + def time[R](label: Option[String] = None, block: => R): R = { + val t0 = System.nanoTime() + val result = block // call-by-name + val t1 = System.nanoTime() + val config = Config() + if (config.debugConfig.writePerformanceReport) + writeElapsedTimeToFile(label, (t1 - t0), config.debugConfig.outputPathPerformanceReport) + result + } + + def writeElapsedTimeToFile(label: Option[String], time: Long, performanceReportFilePath: String): Unit = { + val performanceReportFile = new File(performanceReportFilePath) + // Create all the parent's directories, if needed + performanceReportFile.getParentFile.mkdirs() + // Will do nothing, if file already exists + performanceReportFile.createNewFile + val fw = new FileWriter(performanceReportFile, true) + try { + label.foreach(l => fw.write(s"$l:\n")) + fw.write(s"Elapsed time: $time ns\n") + } + finally fw.close() + } + +} diff --git a/amlsec/src/main/scala/org/sba_research/QueryExecutor.scala b/amlsec/src/main/scala/org/sba_research/utils/QueryExecutor.scala similarity index 78% rename from amlsec/src/main/scala/org/sba_research/QueryExecutor.scala rename to amlsec/src/main/scala/org/sba_research/utils/QueryExecutor.scala index b2d927e..8ac3d8e 100644 --- a/amlsec/src/main/scala/org/sba_research/QueryExecutor.scala +++ b/amlsec/src/main/scala/org/sba_research/utils/QueryExecutor.scala @@ -1,14 +1,13 @@ -package org.sba_research +package org.sba_research.utils import com.typesafe.scalalogging.Logger -import org.apache.jena.ontology.OntModel import org.apache.jena.query._ -import org.apache.jena.rdf.model.{InfModel, Model} +import org.apache.jena.rdf.model.Model import org.apache.jena.sparql.core.Var import org.apache.jena.sparql.engine.binding.Binding -import collection.JavaConverters._ import scala.annotation.tailrec +import scala.collection.JavaConverters._ import scala.util.{Failure, Success, Try} case class ResultSetBinding(variables: List[Var], values: List[Binding]) @@ -17,7 +16,7 @@ object QueryExecutor { val logger = Logger(getClass) - def query(s: String, service: String) = { + def query(s: String, service: String): Unit = { val q = QueryFactory.create(s) val qexec: QueryExecution = QueryExecutionFactory.sparqlService(service, q) val result: Try[ResultSet] = Try(qexec.execSelect()) @@ -29,20 +28,15 @@ object QueryExecutor { qexec.close() } - def query(s: String, ontModel: OntModel, resBinding: Option[ResultSetBinding]): ResultSetBinding = { - val infModel = OntModelUtils.getInfModel(ontModel) - query(s, infModel, resBinding) - } - @tailrec private def getValuesFromResultSet(r: ResultSet, l: List[Binding] = List.empty): List[Binding] = if (r.hasNext) getValuesFromResultSet(r, l ::: List(r.nextBinding())) else l - def query(s: String, infModel: InfModel, resBinding: Option[ResultSetBinding]): ResultSetBinding = { + def query(s: String, model: Model, resBinding: Option[ResultSetBinding]): ResultSetBinding = { val q = QueryFactory.create(s) resBinding.foreach(r => q.setValuesDataBlock(r.variables.asJava, r.values.asJava)) - val qexec = QueryExecutionFactory.create(q, infModel) + val qexec = QueryExecutionFactory.create(q, model) executeSelectQuery(q, qexec) } @@ -74,10 +68,10 @@ object QueryExecutor { ret } - def construct(s: String, ontModel: OntModel, withInference: Boolean = true): Option[Model] = { + def construct(s: String, model: Model, reasonerUri: Option[String]): Option[Model] = { val q = QueryFactory.create(s) - val model: Model = if (withInference) OntModelUtils.getInfModel(ontModel) else ontModel - val qexec = QueryExecutionFactory.create(q, model) + val m: Model = reasonerUri.map(OntModelUtils.getInfModel(model, _)).getOrElse(model) + val qexec = QueryExecutionFactory.create(q, m) executeConstructQuery(q, qexec) } diff --git a/amlsec/src/main/scala/org/sba_research/utils/ShapeFilterByUri.scala b/amlsec/src/main/scala/org/sba_research/utils/ShapeFilterByUri.scala new file mode 100644 index 0000000..37819e5 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/utils/ShapeFilterByUri.scala @@ -0,0 +1,39 @@ +package org.sba_research.utils + +import java.util.function.Predicate + +import com.typesafe.scalalogging.Logger +import org.topbraid.shacl.engine.Shape +import org.topbraid.shacl.model.SHShape + +object ShapeFilterByUri { + def apply(rootShapes: List[Shape], shapeUri: String): ShapeFilterByUri = new ShapeFilterByUri(rootShapes, shapeUri) +} + +class ShapeFilterByUri(rootShapes: List[Shape], shapeUri: String) extends Predicate[SHShape] { + val logger = Logger(getClass) + + /** + * Tests whether the SHACL shape should be included for the model validation. + * This method is used to filter out all other shapes in the file, except the one with the matching org.sba_research.utils.ShapeFilterByUri#shapeUri. + * + * @param t the SHACL shape being tested + * @return `true` if the SHACL shape should be included for the model validation + */ + override def test(t: SHShape): Boolean = { + val shapeUnderTestIsRootShape = rootShapes.exists { s => + Option(s.getShapeResource) match { + case Some(res) => res.getURI == t.getURI + case None => false + } + } + if (t.asNode().isURI && shapeUnderTestIsRootShape) { // We only want to exclude root shapes (not shapes that are actually referenced by other shapes) + shapeUri.split("#").toList.lift(0).map { ns => + if (t.getNameSpace == ns.concat("#")) { + logger.debug(s"Applying shape filter: ${t.asNode().getURI} == $shapeUri: ${t.asNode().getURI == shapeUri}") + t.asNode().getURI == shapeUri + } else true // Include SHACL shape, because it's not one of our engineering/security rules + }.getOrElse(true) + } else true + } +} diff --git a/amlsec/src/main/scala/org/sba_research/utils/Validator.scala b/amlsec/src/main/scala/org/sba_research/utils/Validator.scala new file mode 100644 index 0000000..d1833ff --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/utils/Validator.scala @@ -0,0 +1,362 @@ +package org.sba_research.utils + +import java.io.{File, FileOutputStream} + +import com.fasterxml.jackson.core.{JsonGenerator, JsonParser} +import com.fasterxml.jackson.databind.{DeserializationContext, JsonDeserializer, JsonSerializer, SerializerProvider} +import com.fasterxml.jackson.databind.annotation.{JsonDeserialize, JsonSerialize} +import com.typesafe.scalalogging.Logger +import org.apache.jena.rdf.model.{InfModel, Model, Resource} +import org.apache.jena.reasoner.ValidityReport +import org.apache.jena.riot.{RDFDataMgr, RDFFormat} +import org.apache.jena.shacl.{ShaclValidator, Shapes} +import org.apache.jena.vocabulary.RDFS +import org.sba_research.model.OntModels +import org.sba_research.worker.CborSerializable +import org.topbraid.jenax.util.{ARQFactory, JenaUtil} +import org.topbraid.shacl.arq.SHACLFunctions +import org.topbraid.shacl.engine.{Shape, ShapesGraph} +import org.topbraid.shacl.model.SHFactory +import org.topbraid.shacl.util.{ModelPrinter, SHACLUtil} +import org.topbraid.shacl.validation.{ValidationEngine, ValidationEngineConfiguration, ValidationEngineFactory, ValidationUtil} +import org.topbraid.shacl.vocabulary.SH + +import scala.jdk.CollectionConverters._ +import scala.util.{Failure, Success, Try} + +@JsonSerialize(using = classOf[ValidationResultSerializer]) +@JsonDeserialize(using = classOf[ValidationResultDeserializer]) +sealed trait ValidationResult extends CborSerializable + +case class ValidationReport(conforms: Boolean, validationResults: List[ValidationResult]) + +case class ShaclValidationResult(focusNode: String, resultMessage: String, resultPath: Option[String] = None, sourceShape: String, value: Option[String] = None) extends ValidationResult + +case class ReasonerValidationResult(`type`: String, isError: Boolean, description: String) extends ValidationResult + +object Validator { + + val logger = Logger(getClass) + + // var classesCache: Option[ClassesCache] = None + + def validate(ontModels: OntModels, shapesModelPath: String, reportPath: Option[String], reasonerUri: String): ValidationReport = { + val infModel = OntModelUtils.getInfModel(ontModels.aml, reasonerUri) + validateUsingValidationUtil(infModel = infModel, shapesModelPath = shapesModelPath, reportPath) + } + + def validate(infModel: InfModel, shapesModelPath: String, reportPath: Option[String]): ValidationReport = { + validateUsingValidationUtil(infModel = infModel, shapesModelPath = shapesModelPath, reportPath) + } + + def validate2(infModel: InfModel, shapesModelPath: String, reportPath: Option[String]): ValidationReport = { + val shapes = Shapes.parse(shapesModelPath) + val report = ShaclValidator.get().validate(shapes, infModel.getGraph) + reportPath match { + case Some(path) => writeReport(path, report.getResource) + case _ => + } + val validationResults = report.getEntries.asScala.toList.map { entry => + ShaclValidationResult( + focusNode = entry.focusNode().toString, + resultMessage = entry.message(), + resultPath = Option(entry.resultPath()).map(_.toString), + sourceShape = entry.source().toString, + value = Option(entry.value()).map(_.toString()) + ) + } + ValidationReport( + conforms = report.conforms(), + validationResults = validationResults + ) + } + + def validate(dataModel: Model, shapesModelPath: String, reportPath: Option[String], shapeUri: String): Option[ValidationReport] = { + def performValidation(validationEngine: ValidationEngine): Try[Resource] = Try { + validationEngine.applyEntailments() + validationEngine.validateAll + } + + val shapesModel = JenaUtil.createDefaultModel + shapesModel.read(shapesModelPath) + val validationEngine = createTopBraidValidationEngine(dataModel, shapesModel, shapeUri) + performValidation(validationEngine) match { + case Success(reportResource) => + val reportModel = reportResource.getModel + reportPath match { + case Some(path) => writeReport(path, reportResource, Some(shapeUri)) + case _ => + } + Some(populateLeanValidationReport(reportModel)) + case Failure(e) => + logger.error(s"Could not validate with shapes model using $shapeUri.", e) + None + } + } + + /** + * This method is mostly a re-implementation of [[org.topbraid.shacl.engine.ShapesGraph#getRootShapes()]]. + * Unfortunately, we cannot call `shapesGraph.getRootShapes.asScala.toList` directly, since the original method also sets the root shapes and thereby applies the filter. + * Thus, we would filter out already the initial root shapes. + * + * @param shapesModel the shapes model + * @param shapesGraph the shapes graph + * @return a list of root shapes + */ + private def getRootShapes(shapesModel: Model, shapesGraph: ShapesGraph): List[Shape] = { + val candidates: List[Resource] = + shapesModel.listSubjectsWithProperty(SH.target).asScala.toList ::: shapesModel.listSubjectsWithProperty(SH.targetClass).asScala.toList ::: shapesModel.listSubjectsWithProperty(SH.targetNode).asScala.toList ::: shapesModel.listSubjectsWithProperty(SH.targetObjectsOf).asScala.toList ::: + shapesModel.listSubjectsWithProperty(SH.targetSubjectsOf).asScala.toList ::: + JenaUtil.getAllInstances(shapesModel.getResource(SH.NodeShape.getURI())).asScala.toList.filter(JenaUtil.hasIndirectType(_, RDFS.Class)) ::: + JenaUtil.getAllInstances(shapesModel.getResource(SH.PropertyShape.getURI())).asScala.toList.filter(JenaUtil.hasIndirectType(_, RDFS.Class)) + + candidates.map { s => + shapesGraph.getShape(SHFactory.asShape(s).asNode()) + } + } + + /** + * This method is a proxy method for [[org.topbraid.shacl.validation.ValidationUtil#createValidationEngine(org.apache.jena.rdf.model.Model, org.apache.jena.rdf.model.Model, org.topbraid.shacl.validation.ValidationEngineConfiguration)]] to hook in our custom shapes filter, i.e., org.sba_research.utils.ShapeFilterByUri. + * + * @param dataModel the data model + * @param shapesModel the shapes model + * @param shapeUri the URI of the shape to filter + * @param configuration the configuration + * @return a SHACL validation engine + */ + private def createTopBraidValidationEngine(dataModel: Model, shapesModel: Model, shapeUri: String, configuration: ValidationEngineConfiguration = new ValidationEngineConfiguration().setValidateShapes(true)): ValidationEngine = { + val sm = ValidationUtil.ensureToshTriplesExist(shapesModel) + SHACLFunctions.registerFunctions(sm) + val shapesGraphURI = SHACLUtil.createRandomShapesGraphURI() + val dataset = ARQFactory.get().getDataset(dataModel) + dataset.addNamedModel(shapesGraphURI.toString(), sm) + //val config = Config() // TODO: REMOVE + //PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Creation of Shapes Graph $shapeUri START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val shapesGraph = new ShapesGraph(sm) + + //PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Creation of Shapes Graph $shapeUri END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + //val rootShapes = duplicateShapesGraphWithAllRootShapes.getRootShapes.asScala.toList + shapesGraph.setShapeFilter(ShapeFilterByUri(getRootShapes(shapesModel, shapesGraph), shapeUri)) + //PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Creation of validation engine $shapeUri START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val engine = ValidationEngineFactory.get().create(dataset, shapesGraphURI, shapesGraph, null) + //PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Creation of validation engine $shapeUri END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + engine.setConfiguration(configuration) + /* + classesCache.foreach { c => + engine.setClassesCache(c) + logger.info("Setting cache {}", c.toString) + } + */ + engine + } + + @Deprecated + def validate3(infModel: InfModel, shapesModelPath: String, reportPath: Option[String], shapeUri: String): Some[ValidationReport] = { + val shapes = Shapes.parse(shapesModelPath) + val report = ShaclValidator.get().validate(shapes.getGraph, infModel.getGraph) + val validationResults = report.getEntries.asScala.toList.map { entry => + ShaclValidationResult( + focusNode = entry.focusNode().toString, + resultMessage = entry.message(), + resultPath = Option(entry.resultPath()).map(_.toString), + sourceShape = entry.source().toString, + value = Option(entry.value()).map(_.toString()) + ) + } + val r = ValidationReport( + conforms = report.conforms(), + validationResults = validationResults + ) + Some(r) + } + + @Deprecated + def validate2(infModel: InfModel, shapesModelPath: String, reportPath: Option[String], shapeUri: String): ValidationReport = { + val shapes = Shapes.parse(shapesModelPath) + + val report = shapes.getRootShapes.asScala.find(_.getShapeNode.getURI == shapeUri).map { shape => + logger.info(s"Validating shape $shape.") + logger.info(shape.getShapeGraph.toString) + + ShaclValidator.get().validate(shape.getShapeGraph, infModel.getGraph) + }.getOrElse(throw new IllegalArgumentException(s"Could not find shape URI $shapeUri in shapes model.")) + val validationResults = report.getEntries.asScala.toList.map { entry => + ShaclValidationResult( + focusNode = entry.focusNode().toString, + resultMessage = entry.message(), + resultPath = Option(entry.resultPath()).map(_.toString), + sourceShape = entry.source().toString, + value = Option(entry.value()).map(_.toString()) + ) + } + ValidationReport( + conforms = report.conforms(), + validationResults = validationResults + ) + } + + @Deprecated + def validateUsingValidationUtil(infModel: InfModel, shapesModelPath: String, reportPath: Option[String]): ValidationReport = { + val shapeModel = JenaUtil.createDefaultModel + shapeModel.read(shapesModelPath) + //ExecStatisticsManager.get().setRecording(true) + val reportResource = ValidationUtil.validateModel(infModel, shapeModel, true) + //ExecStatisticsManager.get().getStatistics.forEach(s => logger.info(s"label=${s.getLabel} queryText=${s.getQueryText} node=${s.getContext} duration=${s.getDuration}")) + val reportModel = reportResource.getModel + reportPath match { + case Some(path) => writeReport(path, reportResource) + case _ => + } + populateValidationReport(reportModel) + } + + def populateValidationReport(reportModel: Model): ValidationReport = { + logger.info(ModelPrinter.get.print(reportModel)) + val conforms = reportModel + .listObjectsOfProperty(SH.conforms).asScala.nextOption() + .getOrElse(throw new IllegalStateException("Could not retrieve 'conforms' value from report.")) + .asLiteral().getBoolean + logger.debug(s"Conforms = $conforms.") + val resultNodeIterator = reportModel.listObjectsOfProperty(SH.result) + val validationResults = + resultNodeIterator.asScala.toList.map { x => + ShaclValidationResult( + focusNode = x.asResource().getProperty(SH.focusNode).getObject.toString, + resultMessage = x.asResource().getProperty(SH.resultMessage).getObject.toString, + resultPath = Option(x.asResource().getProperty(SH.resultPath)).map(_.getObject.toString), + sourceShape = x.asResource().getProperty(SH.sourceShape).getObject.toString, + value = Option(x.asResource().getProperty(SH.value)).map(_.getObject.toString), + ) + } + + validationResults.foreach(x => logger.debug(s"Retrieved ${x.toString}.")) + + ValidationReport(conforms = conforms, validationResults = validationResults) + } + + def populateLeanValidationReport(reportModel: Model): ValidationReport = { + val conforms = reportModel + .listObjectsOfProperty(SH.conforms).asScala.nextOption() + .getOrElse(throw new IllegalStateException("Could not retrieve 'conforms' value from report.")) + .asLiteral().getBoolean + logger.debug(s"Conforms = $conforms.") + val resultNodeIterator = reportModel.listObjectsOfProperty(SH.result) + val validationResults = + resultNodeIterator.asScala.toList.map { x => + ShaclValidationResult( + focusNode = x.asResource().getProperty(SH.focusNode).getObject.toString, + resultMessage = "", // Intentionally left empty + resultPath = None, // Intentionally left empty + sourceShape = x.asResource().getProperty(SH.sourceShape).getObject.toString, + value = None, // Intentionally left empty + ) + } + validationResults.foreach(x => logger.debug(s"Retrieved ${x.toString}.")) + ValidationReport(conforms = conforms, validationResults = validationResults) + } + + def processReasonerValidityReports(validityReports: List[ValidityReport.Report]): ValidationReport = + ValidationReport( + conforms = false, + validityReports.map(r => ReasonerValidationResult(r.`type`, r.isError, r.description)) + ) + + private def writeReport(outputPathReport: String, reportResource: Resource, shapeUri: Option[String] = None): Unit = { + val path = shapeUri match { + case Some(s) => + s.split("#").toList.lift(1).map { shapeUriPostfix => + val outputPathExtension = outputPathReport.split("\\.").toList.last + val outputPathWithoutExtension = outputPathReport.dropRight(outputPathReport.length - outputPathReport.lastIndexOf(".")) + s"${outputPathWithoutExtension}_${shapeUriPostfix}.${outputPathExtension}" + }.getOrElse(outputPathReport) + case None => outputPathReport + } + logger.debug(s"Writing validation report to $path.") + val reportFile = new File(path) + val createFile: Try[Boolean] = Try { + reportFile.createNewFile + } + createFile match { + case Success(_) => + logger.debug(s"Successfully created report file.") + val reportOutputStream: Try[FileOutputStream] = Try { + new FileOutputStream(reportFile) + } + reportOutputStream match { + case Success(stream) => + RDFDataMgr.write(stream, reportResource.getModel, RDFFormat.TTL) + logger.debug(s"Wrote report file to $path.") + case Failure(t) => logger.error(s"$t") + } + case Failure(t) => logger.error(s"Failed to create report file: $t") + } + } + +} + +class ValidationResultSerializer extends JsonSerializer[ValidationResult] { + val logger = Logger(getClass) + + override def serialize( + v: ValidationResult, + json: JsonGenerator, + provider: SerializerProvider + ): Unit = { + json.writeStartObject() + v match { + case s: ShaclValidationResult => + json.writeFieldName("focus_node") + json.writeString(s.focusNode) + // focusNode: String, resultMessage: String, resultPath: Option[String] = None, sourceShape: String, value: Option[String] = None + json.writeFieldName("result_message") + json.writeString(s.resultMessage) + s.resultPath.foreach { rp => + json.writeFieldName("result_path") + json.writeString(rp) + } + json.writeFieldName("source_shape") + json.writeString(s.sourceShape) + s.value.foreach { v => + json.writeFieldName("value") + json.writeString(v) + } + case r: ReasonerValidationResult => + json.writeFieldName("type") + json.writeString(r.`type`) + json.writeFieldName("is_error") + json.writeBoolean(r.isError) + json.writeFieldName("description") + json.writeString(r.description) + } + json.writeEndObject() + } +} + +class ValidationResultDeserializer extends JsonDeserializer[ValidationResult] { + override def deserialize(p: JsonParser, ctxt: DeserializationContext): ValidationResult = { + import com.fasterxml.jackson.databind.JsonNode + val node: JsonNode = p.getCodec.readTree(p) + if (node.has("focus_node")) { // Check if we need to deserialize a SHACL Result + val focusNodeField = node.get("focus_node") + val focusNode = focusNodeField.asText() + val resultMessageField = node.get("result_message") + val resultMessage = resultMessageField.asText() + val resultPathField = Option(node.get("result_path")) + val resultPath = resultPathField.map(_.asText) + val sourceShapeField = node.get("source_shape") + val sourceShape = sourceShapeField.asText() + val valueField = Option(node.get("value")) + val value = valueField.map(_.asText) + ShaclValidationResult(focusNode, resultMessage, resultPath, sourceShape, value) + } else if (node.has("type")) { // Reasoner result + val typeField = node.get("type") + val `type` = typeField.asText() + val isErrorField = node.get("is_error") + val isError = isErrorField.asBoolean() + val descriptionField = node.get("description") + val description = descriptionField.asText + ReasonerValidationResult(`type` = `type`, isError, description) + } + else throw new IllegalStateException("Unknown validation result instance.") + } +} diff --git a/amlsec/src/main/scala/org/sba_research/CveChecker.scala b/amlsec/src/main/scala/org/sba_research/vuln/CveChecker.scala similarity index 90% rename from amlsec/src/main/scala/org/sba_research/CveChecker.scala rename to amlsec/src/main/scala/org/sba_research/vuln/CveChecker.scala index 55ee71d..a4dd94e 100644 --- a/amlsec/src/main/scala/org/sba_research/CveChecker.scala +++ b/amlsec/src/main/scala/org/sba_research/vuln/CveChecker.scala @@ -1,11 +1,12 @@ -package org.sba_research +package org.sba_research.vuln -import org.apache.jena.ontology.OntModel +import org.apache.jena.rdf.model.Model +import org.sba_research.utils.{QueryExecutor, ResultSetBinding} object CveChecker { - def check(amlOntModel: OntModel): ResultSetBinding = { + def check(model: Model): ResultSetBinding = { val resBinding = QueryExecutor.query( s = """ @@ -21,7 +22,7 @@ object CveChecker { | ?indvAml aml:hasCpeVersion ?version. | } """.stripMargin, - ontModel = amlOntModel, + model = model, resBinding = None ) diff --git a/amlsec/src/main/scala/org/sba_research/vuln/VulnerabilityModeling.scala b/amlsec/src/main/scala/org/sba_research/vuln/VulnerabilityModeling.scala new file mode 100644 index 0000000..e52c7e8 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/vuln/VulnerabilityModeling.scala @@ -0,0 +1,315 @@ +package org.sba_research.vuln + +import com.typesafe.scalalogging.Logger +import org.apache.jena.datatypes.xsd.XSDDatatype +import org.apache.jena.ontology.OntModel +import org.apache.jena.rdf.model.{InfModel, RDFNode, ResourceFactory} +import org.sba_research.Config +import org.sba_research.utils._ + +import scala.annotation.tailrec +import scala.jdk.CollectionConverters._ + +object VulnerabilityModeling { + + val logger = Logger(getClass) + + val cveVulnIndvPrefix = "Vulnerability" + + def processReport(config: Config, ontModel: OntModel, infModel: Option[InfModel], validationReport: ValidationReport): Option[OntModel] = validationReport.validationResults match { + case l: List[_] => + val shaclValidationResultList = l.map { case s: ShaclValidationResult => s } + performReportProcessing(config, Some(ontModel), infModel, shaclValidationResultList) + case _ => + logger.error("Could not match validation results to list composed of SHACL validation results.") + None + } + + + @tailrec + def processReports(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], validationReports: List[ValidationReport]): Option[OntModel] = + validationReports match { + case x :: xs => + x.validationResults match { + case l: List[_] => + val shaclValidationResultList = l.map { case s: ShaclValidationResult => s } + processReports(config, performReportProcessing(config, ontModel, infModel, shaclValidationResultList), infModel, xs) + case _ => + logger.error("Could not match validation results to list composed of SHACL validation results.") + processReports(config, ontModel, infModel, xs) + } + case Nil => ontModel + } + + + @tailrec + private def performReportProcessing(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], validationResults: List[ShaclValidationResult]): Option[OntModel] = + validationResults match { + case x :: xs => OntModelUtils.removeNamespace(x.sourceShape) match { + case "ActiveCopyProtection" => + performReportProcessing(config, instantiateVulnerabilityNoPlcProgramCopyProtection(config, ontModel, x.focusNode), infModel, xs) + case "ActiveKnowHowProtection" => + performReportProcessing(config, instantiateVulnerabilityNoPlcProgramKnowHowProtection(config, ontModel, x.focusNode), infModel, xs) + case "HasRefPartnerLinkMin1Shape" => + performReportProcessing(config, instantiateVulnerabilityUnusedOpenPort(config, ontModel, infModel, x.focusNode), infModel, xs) + case "InsecureProtocolInUse" => + performReportProcessing(config, instantiateVulnerabilityInsecureProtocolUsed(config, ontModel, infModel, x.focusNode), infModel, xs) + case "InsecureAlgorithmInUse" => + performReportProcessing(config, instantiateVulnerabilityInsecureAlgorithmUsed(config, ontModel, infModel, x.focusNode), infModel, xs) + case "CrossZoneConnections" => + performReportProcessing(config, instantiateVulnerabilityUntrustedCrossZoneConnection(config, ontModel, infModel, x.focusNode), infModel, xs) + case "ITOTCrossConnections" => + performReportProcessing(config, instantiateVulnerabilityItOtCrossConnection(config, ontModel, infModel, x.focusNode), infModel, xs) + case "TempConnections" => + performReportProcessing(config, instantiateVulnerabilityTemporaryConnection(config, ontModel, infModel, x.focusNode), infModel, xs) + case "ExtConnections" => + performReportProcessing(config, instantiateVulnerabilityExtConnection(config, ontModel, infModel, x.focusNode), infModel, xs) + case "SafetyAssetsZone" => + performReportProcessing(config, instantiateVulnerabilitySafetyAssetsZone(config, ontModel, infModel, x.focusNode), infModel, xs) + case "SafetyAssetsConnectionZone" => + performReportProcessing(config, instantiateVulnerabilitySafetyNonSafetyZoneCrossConnection(config, ontModel, infModel, x.focusNode), infModel, xs) + case "WirelessAssetsZone" => + performReportProcessing(config, instantiateVulnerabilityNotSeparatedWirelessDevice(config, ontModel, infModel, x.focusNode), infModel, xs) + case "WirelessAssetsConnectionZone" => + performReportProcessing(config, instantiateVulnerabilityWirelessWiredZoneCrossConnection(config, ontModel, infModel, x.focusNode), infModel, xs) + } + case Nil => ontModel + } + + + private def instantiateVulnerabilityNoPlcProgramCopyProtection(config: Config, ontModel: Option[OntModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#NoPLCProgramCopyProtection") + val focusIndv = om.getIndividual(focusNode) + vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), focusIndv) + om + } + + private def instantiateVulnerabilityNoPlcProgramKnowHowProtection(config: Config, ontModel: Option[OntModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#NoPLCProgramKnowHowProtection") + val focusIndv = om.getIndividual(focusNode) + vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), focusIndv) + om + } + + private def instantiateVulnerabilityUnusedOpenPort(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.secOntConfig.ns}#UnusedOpenPort") + /* If inference model exists, we assume that no materialization has been done beforehand in ontModel. */ + val deductionsModelOrMaterializedOntModel = infModel.map(_.getDeductionsModel).getOrElse(om) + val infModelOrMaterializedOntModel = infModel.getOrElse(om) + /* Obtaining the asset from the logical endpoint. */ + val focusIndv = deductionsModelOrMaterializedOntModel.getResource(focusNode) + val hasEIInvProperty = deductionsModelOrMaterializedOntModel.getProperty(s"${config.amlConfig.nsOnt}#hasEIInv") + val hasIEInvProperty = deductionsModelOrMaterializedOntModel.getProperty(s"${config.amlConfig.nsOnt}#hasIEInv") + val asset = infModelOrMaterializedOntModel + /* Based on logical endpoint, get logical portlist */ + .listStatements(focusIndv, hasEIInvProperty, null) + .asScala.nextOption() + .map(_.getObject) + .flatMap { logicalPortList => + /* Go even one hierarchy up to obtain the asset. */ + infModelOrMaterializedOntModel.listStatements(logicalPortList.asResource(), hasIEInvProperty, null).asScala.nextOption.map(_.getObject) + } + asset map { a => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), a.asResource) } + om + } + + private def instantiateVulnerabilityInsecureProtocolUsed(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.secOntConfig.ns}#InsecureProtocolUsed") + val assets = getAssetFromLogicalOrPhysicalConnection(config, om, infModel, focusNode) + assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), asset)) + om + } + + private def instantiateVulnerabilityInsecureAlgorithmUsed(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + /* If inference model exists, we assume that no materialization has been done beforehand in ontModel. */ + val infModelOrMaterializedOntModel = infModel.getOrElse(om) + val vulnIndv = om.getIndividual(s"${config.secOntConfig.ns}#InsecureAlgorithmUsed") + val focusIndv = om.getIndividual(focusNode) + val queryResult = QueryExecutor.query( + s = + s""" + |PREFIX rdf: + |PREFIX rdfs: + |PREFIX owl: + |PREFIX amlImp: + |PREFIX amlOnt: + |PREFIX icsSecOnt: + |PREFIX secOnt: + |SELECT DISTINCT ?asset + | WHERE { + | ?asset rdf:type ?assetType . + | ?assetType rdfs:subClassOf* secOnt:Asset . + | ?asset amlOnt:hasIE+ <${focusIndv.toString}> . + | } + """.stripMargin, + model = infModelOrMaterializedOntModel, + resBinding = None + ) + queryResult.values.foreach { binding => + val value = queryResult.variables.find(_.getVarName == "asset").map(binding.get) + value.map(v => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), om.getIndividual(v.getURI))) + } + om + } + + private def instantiateVulnerabilityUntrustedCrossZoneConnection(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#UntrustedCrossZoneConnection") + val assets = getAssetFromLogicalOrPhysicalConnection(config, om, infModel, focusNode) + assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), asset)) + om + } + + private def instantiateVulnerabilityItOtCrossConnection(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#ITOTCrossConnection") + val assets = getAssetFromLogicalOrPhysicalConnection(config, om, infModel, focusNode) + assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), asset)) + om + } + + private def instantiateVulnerabilityTemporaryConnection(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#NotSeparatedTemporarilyConnectedDevice") + val focusIndv = om.getIndividual(focusNode) + vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), focusIndv) + om + } + + private def instantiateVulnerabilityExtConnection(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#NotSeparatedDeviceConnectedToExternalNetworks") + val focusIndv = om.getIndividual(focusNode) + vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), focusIndv) + om + } + + private def instantiateVulnerabilitySafetyAssetsZone(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#NotSeparatedSafetyRelatedDevice") + val focusIndv = om.getIndividual(focusNode) + vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), focusIndv) + om + } + + private def instantiateVulnerabilitySafetyNonSafetyZoneCrossConnection(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#SafetyNonSafetyZoneCrossConnection") + val assets = getAssetFromLogicalOrPhysicalConnection(config, om, infModel, focusNode) + assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), asset)) + om + } + + private def instantiateVulnerabilityNotSeparatedWirelessDevice(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#NotSeparatedWirelessDevice") + val focusIndv = om.getIndividual(focusNode) + vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), focusIndv) + om + } + + private def instantiateVulnerabilityWirelessWiredZoneCrossConnection(config: Config, ontModel: Option[OntModel], infModel: Option[InfModel], focusNode: String): Option[OntModel] = ontModel map { om => + val vulnIndv = om.getIndividual(s"${config.icsSecOntConfig.ns}#WirelessWiredZoneCrossConnection") + val assets = getAssetFromLogicalOrPhysicalConnection(config, om, infModel, focusNode) + assets.foreach(asset => vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, om), asset)) + om + } + + private def getAssetFromLogicalOrPhysicalConnection(config: Config, ontModel: OntModel, infModel: Option[InfModel], focusNode: String): Iterator[RDFNode] = { + /* If inference model exists, we assume that no materialization has been done beforehand in ontModel. */ + val deductionsModelOrMaterializedOntModel = infModel.map(_.getDeductionsModel).getOrElse(ontModel) + val infModelOrMaterializedOntModel = infModel.getOrElse(ontModel) + val focusIndv = ontModel.getIndividual(focusNode) + val hasEIProperty = ontModel.getObjectProperty(s"${config.amlConfig.nsOnt}#hasEI") + // val hasIEProperty = ontModel.getObjectProperty(s"${config.amlConfig.nsOnt}#hasIE") + val hasEIInvProperty = deductionsModelOrMaterializedOntModel.getProperty(s"${config.amlConfig.nsOnt}#hasEIInv") + val hasIEInvProperty = deductionsModelOrMaterializedOntModel.getProperty(s"${config.amlConfig.nsOnt}#hasIEInv") + val hasRefPartnerProperty = deductionsModelOrMaterializedOntModel.getProperty(s"${config.amlConfig.nsOnt}#hasRefPartner") + val hasRefPartnerSideAProperty = deductionsModelOrMaterializedOntModel.getProperty(s"${config.amlConfig.nsOnt}#hasRefPartnerSideA") + val assets = + /* Obtain logical endpoint from logical or physical connection. */ + focusIndv.listProperties(hasEIProperty).asScala + .map(_.getObject) + .flatMap { endpointA => + /* Obtain link. */ + infModelOrMaterializedOntModel + .listStatements(endpointA.asResource(), hasRefPartnerProperty, null) + .asScala.nextOption() + .map(_.getObject) + .flatMap { link => + /* Obtain object of hasRefPartnerSideA (but exclude currently processed logical endpoint). */ + infModelOrMaterializedOntModel + .listStatements(link.asResource(), hasRefPartnerSideAProperty, null).asScala + .map(_.getObject) + .filterNot(rdfNode => rdfNode.toString.equals(endpointA.toString)) + .nextOption() + } + .flatMap { endpointB => + /* Obtain object logical or physical portlist. */ + infModelOrMaterializedOntModel + .listStatements(endpointB.asResource(), hasEIInvProperty, null) + .asScala.nextOption() + .map(_.getObject) + } + .flatMap { portlist => + /* Finally, obtain asset. */ + infModelOrMaterializedOntModel + .listStatements(portlist.asResource(), hasIEInvProperty, null) + .asScala.nextOption() + .map(_.getObject) + } + } + assets + } + + private def getVulnerabilityOnAssetObjectProperty(config: Config, ontModel: OntModel) = + ontModel.getObjectProperty(s"${config.secOntConfig.ns}#vulnerability_on_Asset") + + private def getVulnerabilityExploitedByThreatObjectProperty(config: Config, ontModel: OntModel) = + ontModel.getObjectProperty(s"${config.secOntConfig.ns}#vulnerability_exploitedBy_Threat") + + def processCves(config: Config, ontModel: OntModel, resultSetBinding: ResultSetBinding): Option[OntModel] = { + val queryResult = QueryExecutor.query( + s = + s""" + |PREFIX rdf: + |PREFIX rdfs: + |PREFIX owl: + |PREFIX amlImp: + |PREFIX amlOnt: + |PREFIX icsSecOnt: + |PREFIX secOnt: + |SELECT DISTINCT ?cve ?cveId ?cpe ?version ?other ?part ?product ?productName ?vendor ?vendorName ?indvAml ?cvss ?cvssBaseScore + | WHERE { + | ?indvAml amlImp:hasCpePart ?part. + | ?indvAml amlImp:hasCpeVendor ?vendorName. + | ?indvAml amlImp:hasCpeProduct ?productName. + | ?indvAml amlImp:hasCpeVersion ?version. + | } + """.stripMargin, + model = ontModel, + Some(resultSetBinding) + ) + val vulnOntCls = ontModel.getOntClass(s"${config.secOntConfig.ns}#Vulnerability") + val vulnerableSoftwareIndv = ontModel.getIndividual(s"${config.secOntConfig.ns}#VulnerableSoftware") + val vulnerabilityCveDataProperty = ontModel.getDatatypeProperty(s"${config.secOntConfig.ns}#vulnerability_has_Cve") + val vulnerabilityCvssDataProperty = ontModel.getDatatypeProperty(s"${config.secOntConfig.ns}#vulnerability_has_SeverityValue") + + queryResult.values.foreach { binding => + val cveIdentifier = queryResult.variables.find(_.getVarName == "cveId").map(binding.get) + val amlIndv = queryResult.variables.find(_.getVarName == "indvAml").map(binding.get) + val sepsesCveIndv = queryResult.variables.find(_.getVarName == "cve").map(binding.get) + val sepsesCvssBaseScore = queryResult.variables.find(_.getVarName == "cvssBaseScore").flatMap(x => Option(binding.get(x))) // can be null, wrap with Option + for { + cveId <- cveIdentifier + amlI <- amlIndv + cveI <- sepsesCveIndv + vulnIndv <- Some(ontModel.createIndividual(s"${config.secOntConfig.ns}#${cveId.toString.replace("\"", "")}", vulnOntCls)) + } yield { + vulnIndv.addProperty(getVulnerabilityExploitedByThreatObjectProperty(config, ontModel), vulnerableSoftwareIndv) + vulnIndv.addProperty(getVulnerabilityOnAssetObjectProperty(config, ontModel), ontModel.getIndividual(amlI.getURI)) + vulnIndv.addProperty(vulnerabilityCveDataProperty, ResourceFactory.createTypedLiteral(cveI.getURI, XSDDatatype.XSDanyURI)) + // In case CVSS exists, add property + sepsesCvssBaseScore foreach { + cvss => vulnIndv.addProperty(vulnerabilityCvssDataProperty, ResourceFactory.createTypedLiteral(cvss.getLiteral.getValue.toString, XSDDatatype.XSDdouble)) + } + } + } + Some(ontModel) + } + + +} diff --git a/amlsec/src/main/scala/org/sba_research/worker/CborSerializable.scala b/amlsec/src/main/scala/org/sba_research/worker/CborSerializable.scala new file mode 100644 index 0000000..b3b8d71 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/CborSerializable.scala @@ -0,0 +1,7 @@ +package org.sba_research.worker + +/** + * Marker trait for serialization with Jackson CBOR + * cf. https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala + */ +trait CborSerializable diff --git a/amlsec/src/main/scala/org/sba_research/worker/FrontEnd.scala b/amlsec/src/main/scala/org/sba_research/worker/FrontEnd.scala new file mode 100644 index 0000000..1e15620 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/FrontEnd.scala @@ -0,0 +1,240 @@ +package org.sba_research.worker + +import java.util.UUID + +import akka.actor.typed.pubsub.Topic +import akka.actor.typed.scaladsl.{ActorContext, Behaviors, TimerScheduler} +import akka.actor.typed.{Behavior, _} +import akka.util.Timeout +import org.apache.jena.shacl.Shapes +import org.sba_research.Config +import org.sba_research.utils.{PerformanceMeasurement, ReasonerValidationResult} +import org.sba_research.worker.FrontEnd.WorkFinished +import org.sba_research.worker.WorkManager.SubmitWork + +import scala.concurrent.duration._ +import scala.util.{Failure, Success} + +/** + * Front-end actor that sends risk identification workload to the work manager. + * cf. https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala + */ +object FrontEnd { + + sealed trait Command + + case object StartRiskIdentification extends Command + + case class Failed(work: Work) extends Command + + case class Retry(work: Work) extends Command + + case class WorkAccepted(work: Work) extends Command + + case class WorkFinished(work: Work, result: WorkResult) extends Command with CborSerializable + + sealed trait WorkStatus + + case object ToSubmit extends WorkStatus + + case object Accepted extends WorkStatus + + case object Completed extends WorkStatus + + private def nextId(): String = UUID.randomUUID().toString + + private def nextWorkId(): String = nextId() + + private def nextJobId(): String = nextId() + + def apply(workManager: ActorRef[SubmitWork], resultTopicActor: ActorRef[Topic.Command[WorkFinished]]): Behavior[Command] = Behaviors.setup { ctx => + Behaviors.setup { ctx => + Behaviors.withTimers { timers => + new FrontEnd(workManager, ctx, timers, resultTopicActor).start() + } + } + } + +} + +class FrontEnd private(workManager: ActorRef[SubmitWork], + ctx: ActorContext[FrontEnd.Command], + timers: TimerScheduler[FrontEnd.Command], + resultTopicActor: ActorRef[Topic.Command[WorkFinished]]) { + + import FrontEnd._ + + val config = Config() + + def start(): Behavior[Command] = { + ctx.log.info("Subscribing to result topic.") + resultTopicActor ! Topic.Subscribe(ctx.self) + ctx.self ! StartRiskIdentification + + //timers.startSingleTimer("start", StartRiskIdentification, 60.seconds) + + Behaviors.receiveMessage { + case StartRiskIdentification => + ctx.log.info("Starting risk identification...") + busy(Map(WorkCreateRemoteDataset(nextJobId(), nextWorkId()) -> ToSubmit), Map.empty[Work, Option[WorkResult]]) + case _ => Behaviors.unhandled + } + } + + def idle(): Behavior[Command] = { + Behaviors.receiveMessage { + case StartRiskIdentification => start() + case _ => Behaviors.unhandled + } + } + + def busy(workItems: Map[Work, WorkStatus], workResults: Map[Work, Option[WorkResult]] = Map.empty[Work, Option[WorkResult]]): Behavior[Command] = { + ctx.log.info("Current work items {}", workItems) + ctx.log.info("Current work results {}", workResults) + + def sendMultipleWorkItems(work: Work, wi: Map[Work, WorkStatus], wr: Map[Work, Option[WorkResult]] = Map.empty[Work, Option[WorkResult]], workResult: Option[WorkResult] = None): Behavior[Command] = { + /* If work item exists in work status map, update its status to completed. */ + val updatedWorkItems = if (wi.get(work).isDefined) wi + (work -> Completed) else wi + /* If work item exists in work result map, update its result. */ + val updatedWorkResults = wr + (work -> workResult) + /* Process updated work items. */ + busy(updatedWorkItems, updatedWorkResults) + } + + def sendWorkItem(work: Work): Unit = { + implicit val timeout: Timeout = Timeout(30.seconds) + ctx.ask[SubmitWork, WorkManager.Ack](workManager, replyTo => SubmitWork(work, replyTo)) { + case Success(ack) => WorkAccepted(ack.work) + case Failure(_) => Failed(work) + } + } + + def getEngineeringDataValidationWorkItems(jobId: String): Map[Work, WorkStatus] = { + import scala.jdk.CollectionConverters._ + val shapes = Shapes.parse(config.engValFilePath) + shapes.getRootShapes.asScala.map { shape => WorkValidateEngineeringData(jobId, nextWorkId(), shape.getShapeNode.getURI) -> ToSubmit }.toMap + } + + def getSecurityValidationWorkItems(jobId: String): Map[Work, WorkStatus] = { + import scala.jdk.CollectionConverters._ + val shapes = Shapes.parse(config.secValFilePath) + shapes.getRootShapes.asScala.map { shape => WorkValidateWithSecurityRule(jobId, nextWorkId(), shape.getShapeNode.getURI) -> ToSubmit }.toMap + } + + def validationAndRiskIdentificationResultProcessing(work: Work, result: WorkResult): Behavior[Command] = { + val allJobsFinished = workItems.filter(_._2 != Completed).forall(_._1 == work) + /* We are not yet done, update work status and stay in busy to wait for completion of remaining work items. */ + if (!allJobsFinished) + sendMultipleWorkItems(work, workItems, workResults, Some(result)) + else { + /* Let's check all validation results. */ + val updatedWorkResults = workResults + (work -> Some(result)) + val firstValidationError = updatedWorkResults.find { + case (work, Some(result: ValidationOfEngineeringDataSuccessful)) => !result.validationReport.conforms + case (work, Some(result: ValidationWithSecurityRuleSuccessful)) => false + case _ => false + } + firstValidationError match { + case Some(WorkValidateEngineeringData(_, _, shapeUri) -> Some(ValidationOfEngineeringDataSuccessful(r))) => + ctx.log.info("Changing behavior to idle (i.e., stopping risk identification) since engineering data representation does not conform shape '{}'. Results: {}.", shapeUri, r.validationResults) + idle() + case _ => + ctx.log.info("Validation of engineering data was successful (all tests passed).") + ctx.log.info("All results: {}", updatedWorkResults) + val securityValidationReports = updatedWorkResults.flatMap { + case (_: WorkValidateWithSecurityRule, result: Option[_]) => + result.map { case wr: ValidationWithSecurityRuleSuccessful => wr.validationReport } + case _ => None + }.toList + if (securityValidationReports.nonEmpty) { + ctx.log.info("Starting to submit work to instantiate vulnerabilities based on reports {}", securityValidationReports) + busy(Map(WorkInstantiateVulnerabilities(work.jobId, nextWorkId(), securityValidationReports) -> ToSubmit)) + } + else { + ctx.log.info("No security reports received, changing behavior to idle. ") + idle() // No security validation report(s), changing to idle + } + } + } + } + + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] ${workItems.size} START"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + /* Submit work items one by one (after Ack is received, the next work item will be submitted). */ + workItems.find(_._2 == ToSubmit).foreach { workToSubmit => + ctx.log.info("Submitting work item {}.", workToSubmit._1) + sendWorkItem(workToSubmit._1) + } + + Behaviors.receiveMessage { + case Failed(work) => + ctx.log.info("Work [jobId={}, workId={}] not accepted, retry after a while", work.jobId, work.workId) + timers.startSingleTimer("retry", Retry(work), 3.seconds) + Behaviors.same + case WorkAccepted(work) => + ctx.log.info("Got ack for [jobId={}, workId={}]", work.jobId, work.workId) + busy(workItems + (work -> Accepted), workResults) + case Retry(work) => + ctx.log.info("Retrying work [jobId={}, workId={}]", work.jobId, work.workId) + sendWorkItem(work) + Behaviors.same + case WorkFinished(work, result) => + ctx.log.info("Consumed result: {}", result) + result match { + case FusekiDatasetCreationSuccessful => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Create Remote Dataset END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Received work result (Fuseki dataset creation was successful).") + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Push Model to Remote Dataset START"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + busy(Map(WorkPushModelToRemoteDataset(work.jobId, nextWorkId(), config.amlConfig.filePath) -> ToSubmit)) + case FusekiPushModelToRemoteDatasetSuccessful => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Push Model to Remote Dataset END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Received work result (Fuseki push model to remote dataset was successful).") + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Augment Model START"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + busy(Map(WorkAugmentModel(work.jobId, nextWorkId()) -> ToSubmit)) + case ModelAugmentationSuccessful => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Augment Model END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Received work result (model augmentation was successful).") + sendMultipleWorkItems( + work, + getEngineeringDataValidationWorkItems(work.jobId) ++ + getSecurityValidationWorkItems(work.jobId) ++ + Map(WorkCveCheck(work.jobId, nextWorkId()) -> ToSubmit) + ) + case ValidationOfEngineeringDataSuccessful(report) => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Validation of engineering data END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Received work result (validation of engineering data was successful) '{}'.", report) + val reasonerValidationResult = report.validationResults.exists(r => r match { + case res: ReasonerValidationResult => res.isError + case _ => false + }) + if (reasonerValidationResult) { + ctx.log.info("Changing behavior to idle (i.e., stopping risk identification) since engineering data representation is not valid. Results: {}.", report.validationResults.toString) + idle() + } else + validationAndRiskIdentificationResultProcessing(work, result) + case ValidationWithSecurityRuleSuccessful(report) => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Validation with security rule END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Received work result (validation with security rule was successful) '{}'.", report) + validationAndRiskIdentificationResultProcessing(work, result) + case CveCheckSuccessful => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] CVE Check END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Received work result (CVE check was successful).") + validationAndRiskIdentificationResultProcessing(work, result) + case InstantiationOfVulnerabilitiesSuccessful => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Instantiation of vulnerabilities END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Received work result (vulnerability instantiation was successful).") + busy(Map(WorkGenerateAttackGraph(work.jobId, nextWorkId()) -> ToSubmit)) + case GenerationOfAttackGraphSuccessful => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Attack graph generation END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Received work result (generation of attack graph was successful).") + busy(Map(WorkExecuteCaseStudy(work.jobId, nextWorkId()) -> ToSubmit)) + case ExecutionOfCaseStudySuccessful => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Execution of case study END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Received work result (execution of case study was successful).") + idle() + case _ => Behaviors.unhandled + } + case StartRiskIdentification => Behaviors.unhandled + } + } + +} diff --git a/amlsec/src/main/scala/org/sba_research/worker/Main.scala b/amlsec/src/main/scala/org/sba_research/worker/Main.scala new file mode 100644 index 0000000..5d71d0b --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/Main.scala @@ -0,0 +1,115 @@ +package org.sba_research.worker + +import java.io.File +import java.util.concurrent.CountDownLatch + +import akka.actor.typed.ActorSystem +import akka.actor.typed.pubsub.Topic +import akka.actor.typed.scaladsl.Behaviors +import akka.cluster.typed.{Cluster, SelfUp, Subscribe} +import akka.persistence.cassandra.testkit.CassandraLauncher +import com.typesafe.config.{Config, ConfigFactory} +import org.sba_research.worker.FrontEnd.WorkFinished + +// cf. https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala +object Main { + + // note that 2551 and 2552 are expected to be seed nodes though, even if + // the back-end starts at 2000 + val backEndPortRange = 2000 to 2999 + + val frontEndPortRange = 3000 to 3999 + + def main(args: Array[String]): Unit = { + args.headOption match { + + case None => + startClusterInSameJvm() + + case Some(portString) if portString.matches("""\d+""") => + val port = portString.toInt + if (backEndPortRange.contains(port)) start(port, "back-end") + else if (frontEndPortRange.contains(port)) start(port, "front-end") + else start(port, "worker", args.lift(1).map(_.toInt).getOrElse(1)) + + case Some("cassandra") => + startCassandraDatabase() + println("Started Cassandra, press Ctrl + C to kill") + new CountDownLatch(1).await() + + } + } + + def startClusterInSameJvm(): Unit = { + startCassandraDatabase() + // two backend nodes + start(2551, "back-end") + start(2552, "back-end") + // one front-end node + start(3000, "front-end") + // two worker nodes with two worker actors each + //start(5001, "worker", 1) + start(5001, "worker", 2) + start(5002, "worker", 2) + } + + def start(port: Int, role: String, workers: Int = 2): Unit = { + ActorSystem( + Behaviors.setup[SelfUp](ctx => { + val cluster = Cluster(ctx.system) + cluster.subscriptions ! Subscribe(ctx.self, classOf[SelfUp]) + import akka.actor.typed.scaladsl.adapter._ + val sysListener = ctx.spawn(SystemListener(), "sysListener") + ctx.system.toClassic.eventStream.subscribe(sysListener.toClassic, classOf[akka.actor.DeadLetter]) + + Behaviors.receiveMessage { + case SelfUp(_) => + val resultTopicActor = ctx.spawn(Topic[WorkFinished]("work-result"), "WorkResultTopic") + + ctx.log.info("Node is up") + if (cluster.selfMember.hasRole("back-end")) { + WorkManagerSingleton.init(ctx.system, resultTopicActor) + } + if (cluster.selfMember.hasRole("front-end")) { + val workManagerProxy = WorkManagerSingleton.init(ctx.system, resultTopicActor) + ctx.spawn(FrontEnd(workManagerProxy, resultTopicActor), "front-end") + } + if (cluster.selfMember.hasRole("worker")) { + (1 to workers).foreach(n => ctx.spawn(Worker(resultTopicActor), s"worker-$n")) + } + Behaviors.same + } + }), + "ClusterSystem", + config(port, role) + ) + } + + def config(port: Int, role: String): Config = + ConfigFactory.parseString( + s""" + akka.remote.artery.canonical.port=$port + akka.cluster.roles=[$role] + """).withFallback(ConfigFactory.load()) + + /** + * To make the sample easier to run we kickstart a Cassandra instance to + * act as the journal. Cassandra is a great choice of backend for Akka Persistence but + * in a real application a pre-existing Cassandra cluster should be used. + */ + def startCassandraDatabase(): Unit = { + val databaseDirectory = new File("target/cassandra-db") + CassandraLauncher.start( + databaseDirectory, + CassandraLauncher.DefaultTestConfigResource, + clean = false, + port = 9042 + ) + + // shut the cassandra instance down when the JVM stops + sys.addShutdownHook { + CassandraLauncher.stop() + } + } + +} diff --git a/amlsec/src/main/scala/org/sba_research/worker/SystemListener.scala b/amlsec/src/main/scala/org/sba_research/worker/SystemListener.scala new file mode 100644 index 0000000..8087858 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/SystemListener.scala @@ -0,0 +1,17 @@ +package org.sba_research.worker + +import akka.actor.DeadLetter +import akka.actor.typed.Behavior +import akka.actor.typed.scaladsl.Behaviors + +object SystemListener { + def apply(): Behavior[Any] = + Behaviors.setup { ctx => + Behaviors.receiveMessage { + case deadLetter: DeadLetter => + ctx.log.info("Dead letter: [sender={}, recipient={}, message={}]", deadLetter.sender, deadLetter.recipient, deadLetter.message) + Behaviors.unhandled + + } + } +} diff --git a/amlsec/src/main/scala/org/sba_research/worker/Work.scala b/amlsec/src/main/scala/org/sba_research/worker/Work.scala new file mode 100644 index 0000000..29a8858 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/Work.scala @@ -0,0 +1,309 @@ +package org.sba_research.worker + +import com.fasterxml.jackson.core.{JsonGenerator, JsonParser} +import com.fasterxml.jackson.databind.annotation.{JsonDeserialize, JsonSerialize} +import com.fasterxml.jackson.databind.{DeserializationContext, JsonDeserializer, JsonNode, JsonSerializer, ObjectMapper, SerializerProvider} +import com.typesafe.scalalogging.Logger +import org.sba_research.utils.{ReasonerValidationResult, ShaclValidationResult, ValidationReport} + +// cf. https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala + +@JsonSerialize(using = classOf[WorkSerializer]) +@JsonDeserialize(using = classOf[WorkDeserializer]) +trait Work extends CborSerializable { + def jobId: String + + def workId: String +} + +case class WorkCreateRemoteDataset(jobId: String, workId: String) extends Work + +case class WorkPushModelToRemoteDataset(jobId: String, workId: String, amlFilePath: String) extends Work + +case class WorkAugmentModel(jobId: String, workId: String) extends Work + +case class WorkValidateEngineeringData(jobId: String, workId: String, shapeUri: String) extends Work + +case class WorkValidateWithSecurityRule(jobId: String, workId: String, shapeUri: String) extends Work + +case class WorkCveCheck(jobId: String, workId: String) extends Work + +case class WorkInstantiateVulnerabilities(jobId: String, workId: String, reports: List[ValidationReport]) extends Work + +case class WorkGenerateAttackGraph(jobId: String, workId: String) extends Work + +case class WorkExecuteCaseStudy(jobId: String, workId: String) extends Work + +class WorkSerializer extends JsonSerializer[Work] { + val logger = Logger(getClass) + + override def serialize( + w: Work, + json: JsonGenerator, + provider: SerializerProvider + ): Unit = { + json.writeStartObject() + json.writeFieldName("jobId") + json.writeString(w.jobId) + json.writeFieldName("workId") + json.writeString(w.workId) + w match { + case WorkCreateRemoteDataset(_, _) => + json.writeFieldName("work_type") + json.writeString("create_remote_dataset") + case WorkPushModelToRemoteDataset(_, _, amlFileContent) => + json.writeFieldName("work_type") + json.writeString("push_model_to_remote_dataset") + json.writeFieldName("aml_file_content") + json.writeString(amlFileContent) + case WorkAugmentModel(_, _) => + json.writeFieldName("work_type") + json.writeString("augment_model") + case WorkValidateEngineeringData(_, _, shapeUri) => + json.writeFieldName("work_type") + json.writeString("validate_engineering_data") + json.writeFieldName("shape_uri") + json.writeString(shapeUri) + case WorkValidateWithSecurityRule(_, _, shapeUri) => + json.writeFieldName("work_type") + json.writeString("validate_with_security_rule") + json.writeFieldName("shape_uri") + json.writeString(shapeUri) + case WorkCveCheck(_, _) => + json.writeFieldName("work_type") + json.writeString("cve_check") + case WorkInstantiateVulnerabilities(_, _, reports) => + json.writeFieldName("work_type") + json.writeString("instantiate_vulnerabilities") + json.writeFieldName("reports") + json.writeStartArray() + reports.foreach { report => + json.writeStartObject() + json.writeFieldName("conforms") + json.writeBoolean(report.conforms) + json.writeFieldName("validation_results") + json.writeStartArray() + report.validationResults.foreach { result => + json.writeStartObject() + result match { + case s: ShaclValidationResult => + json.writeFieldName("focus_node") + json.writeString(s.focusNode) + json.writeFieldName("result_message") + json.writeString(s.resultMessage) + s.resultPath.foreach { rp => + json.writeFieldName("result_path") + json.writeString(rp) + } + json.writeFieldName("source_shape") + json.writeString(s.sourceShape) + s.value.foreach { v => + json.writeFieldName("value") + json.writeString(v) + } + case r: ReasonerValidationResult => + json.writeFieldName("type") + json.writeString(r.`type`) + json.writeFieldName("is_error") + json.writeBoolean(r.isError) + json.writeFieldName("description") + json.writeString(r.description) + } + json.writeEndObject() + } + json.writeEndArray() + json.writeEndObject() + } + json.writeEndArray() + case WorkGenerateAttackGraph(_, _) => + json.writeFieldName("work_type") + json.writeString("generate_attack_graph") + case WorkExecuteCaseStudy(_, _) => + json.writeFieldName("work_type") + json.writeString("execute_case_study") + case _ => + logger.debug(s"Could not match work item when serializing [$w].") + } + json.writeEndObject() + } +} + +class WorkDeserializer extends JsonDeserializer[Work] { + override def deserialize(p: JsonParser, ctxt: DeserializationContext): Work = { + import com.fasterxml.jackson.databind.JsonNode + val node: JsonNode = p.getCodec.readTree(p) + val jobIdField = node.get("jobId") + val jobId = jobIdField.asText() + val workIdField = node.get("workId") + val workId = workIdField.asText() + val workTypeField = Option(node.get("work_type")) // may be null + val workType = workTypeField map (_.asText) + val workItem = workType map { + case "create_remote_dataset" => WorkCreateRemoteDataset(jobId, workId) + case "push_model_to_remote_dataset" => + val amlFileContentField = node.get("aml_file_content") + val amlFileContent = amlFileContentField.asText() + WorkPushModelToRemoteDataset(jobId, workId, amlFileContent) + case "augment_model" => WorkAugmentModel(jobId, workId) + case "validate_engineering_data" => + val shapeUriField = node.get("shape_uri") + val shapeUri = shapeUriField.asText() + WorkValidateEngineeringData(jobId, workId, shapeUri) + case "validate_with_security_rule" => + val shapeUriField = node.get("shape_uri") + val shapeUri = shapeUriField.asText() + WorkValidateWithSecurityRule(jobId, workId, shapeUri) + case "cve_check" => WorkCveCheck(jobId, workId) + case "instantiate_vulnerabilities" => + val reportsField = node.get("reports") + import scala.jdk.CollectionConverters._ + val reports = reportsField.asScala.map { report => + val conformsField = report.get("conforms") + val conforms = conformsField.asBoolean() + val validationResultsField = report.get("validation_results") + val validationResults = validationResultsField.asScala.map { result => + if (result.has("focus_node")) { // Check if we need to deserialize a SHACL Result + val focusNodeField = result.get("focus_node") + val focusNode = focusNodeField.asText() + val resultMessageField = result.get("result_message") + val resultMessage = resultMessageField.asText() + val resultPathField = Option(result.get("result_path")) + val resultPath = resultPathField.map(_.asText) + val sourceShapeField = result.get("source_shape") + val sourceShape = sourceShapeField.asText() + val valueField = Option(result.get("value")) + val value = valueField.map(_.asText) + ShaclValidationResult(focusNode, resultMessage, resultPath, sourceShape, value) + } else if (result.has("type")) { // Reasoner result + val typeField = result.get("type") + val `type` = typeField.asText() + val isErrorField = result.get("is_error") + val isError = isErrorField.asBoolean() + val descriptionField = result.get("description") + val description = descriptionField.asText + ReasonerValidationResult(`type` = `type`, isError, description) + } + else throw new IllegalStateException("Unknown validation result instance.") + }.toList + ValidationReport(conforms, validationResults) + }.toList + WorkInstantiateVulnerabilities(jobId, workId, reports) + case "generate_attack_graph" => WorkGenerateAttackGraph(jobId, workId) + case "execute_case_study" => WorkExecuteCaseStudy(jobId, workId) + case _ => throw new IllegalArgumentException( + s"[$workType] is not a valid value for work type." + ) + } + workItem.getOrElse( + throw new IllegalArgumentException( + s"Could not deserialize work item [${node.toPrettyString}]." + ) + ) + } +} + +@JsonSerialize(using = classOf[WorkResultSerializer]) +@JsonDeserialize(using = classOf[WorkResultDeserializer]) +sealed trait WorkResult extends CborSerializable + +case object FusekiDatasetCreationSuccessful extends WorkResult + +case object FusekiPushModelToRemoteDatasetSuccessful extends WorkResult + +case object ModelAugmentationSuccessful extends WorkResult + +case class ValidationOfEngineeringDataSuccessful(validationReport: ValidationReport) extends WorkResult + +case class ValidationWithSecurityRuleSuccessful(validationReport: ValidationReport) extends WorkResult + +case object CveCheckSuccessful extends WorkResult + +case object InstantiationOfVulnerabilitiesSuccessful extends WorkResult + +case object GenerationOfAttackGraphSuccessful extends WorkResult + +case object ExecutionOfCaseStudySuccessful extends WorkResult + +class WorkResultSerializer extends JsonSerializer[WorkResult] { + val logger = Logger(getClass) + + override def serialize( + wr: WorkResult, + json: JsonGenerator, + provider: SerializerProvider + ): Unit = { + json.writeStartObject() + wr match { + case FusekiDatasetCreationSuccessful => + json.writeFieldName("type") + json.writeString("fuseki_dataset_creation") + case FusekiPushModelToRemoteDatasetSuccessful => + json.writeFieldName("type") + json.writeString("fuseki_push_model_to_remote_dataset") + case ModelAugmentationSuccessful => + json.writeFieldName("type") + json.writeString("augment_model") + case ValidationOfEngineeringDataSuccessful(report) => + json.writeFieldName("type") + json.writeString("validation_of_engineering_data") + json.writeFieldName("validation_report") + json.writeObject(report) + case ValidationWithSecurityRuleSuccessful(report) => + json.writeFieldName("type") + json.writeString("validation_with_security_rule") + json.writeFieldName("validation_report") + json.writeObject(report) + case CveCheckSuccessful => + json.writeFieldName("type") + json.writeString("cve_check") + case InstantiationOfVulnerabilitiesSuccessful => + json.writeFieldName("type") + json.writeString("instantiate_vulnerabilities") + case GenerationOfAttackGraphSuccessful => + json.writeFieldName("type") + json.writeString("generate_attack_graph") + case ExecutionOfCaseStudySuccessful => + json.writeFieldName("type") + json.writeString("execute_case_study") + case _ => + logger.debug(s"Could not match work result when serializing [$wr].") + } + json.writeEndObject() + } +} + +class WorkResultDeserializer extends JsonDeserializer[WorkResult] { + val logger = Logger(getClass) + + private def readValidationReportObject(p: JsonParser, node: JsonNode): ValidationReport = { + val validationReportFieldType = node.get("validation_report") + val validationReport = validationReportFieldType.traverse(p.getCodec).readValueAs(classOf[ValidationReport]) + validationReport + } + + override def deserialize(p: JsonParser, ctxt: DeserializationContext): WorkResult = { + import com.fasterxml.jackson.databind.JsonNode + val node: JsonNode = p.getCodec.readTree(p) + val workResultTypeField = Option(node.get("type")) // may be null + val workResultType = workResultTypeField map (_.asText("")) + val workResult = workResultType map { + case "fuseki_dataset_creation" => FusekiDatasetCreationSuccessful + case "fuseki_push_model_to_remote_dataset" => FusekiPushModelToRemoteDatasetSuccessful + case "augment_model" => ModelAugmentationSuccessful + case "validation_of_engineering_data" => ValidationOfEngineeringDataSuccessful(readValidationReportObject(p, node)) + case "validation_with_security_rule" => ValidationWithSecurityRuleSuccessful(readValidationReportObject(p, node)) + case "cve_check" => CveCheckSuccessful + case "instantiate_vulnerabilities" => InstantiationOfVulnerabilitiesSuccessful + case "generate_attack_graph" => GenerationOfAttackGraphSuccessful + case "execute_case_study" => ExecutionOfCaseStudySuccessful + case _ => throw new IllegalArgumentException( + s"[$workResultType] is not a valid value for work type." + ) + } + workResult.getOrElse( + throw new IllegalArgumentException( + s"Could not deserialize work result [${node.toPrettyString}]." + ) + ) + } +} \ No newline at end of file diff --git a/amlsec/src/main/scala/org/sba_research/worker/WorkExecutor.scala b/amlsec/src/main/scala/org/sba_research/worker/WorkExecutor.scala new file mode 100644 index 0000000..c8524de --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/WorkExecutor.scala @@ -0,0 +1,531 @@ +package org.sba_research.worker + +import akka.actor.typed.scaladsl.{ActorContext, Behaviors} +import akka.actor.typed.{ActorRef, Behavior, DispatcherSelector} +import akka.http.scaladsl.Http +import akka.http.scaladsl.model._ +import org.apache.jena.ontology.{OntModel, OntModelSpec} +import org.apache.jena.rdf.model.{InfModel, Model, ModelFactory} +import org.apache.jena.rdfconnection.{RDFConnection, RDFConnectionFactory} +import org.apache.jena.reasoner.rulesys.OWLMicroReasonerFactory +import org.apache.jena.reasoner.{InfGraph, ValidityReport} +import org.apache.jena.vocabulary.OWL2 +import org.sba_research.casestudy.CaseStudy +import org.sba_research.model.{AmlOntExtension, OntModels} +import org.sba_research.utils.{OntModelUtils, PerformanceMeasurement, ValidationReport, Validator} +import org.sba_research.worker.WorkExecutor.ExecuteWork +import org.sba_research.worker.Worker.{Message, ValidationWorkResult, WorkComplete, WorkFailed} +import org.sba_research._ +import org.sba_research.ag.AttackGraph +import org.sba_research.vuln.{CveChecker, VulnerabilityModeling} + +import scala.util.{Failure, Success, Using} + +/** + * Work executor is the actor actually performing the work. + * cf. https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala + */ +object WorkExecutor { + + sealed trait ExecuteWork { + def work: Work + + def replyTo: ActorRef[Message] + } + + case class CreateRemoteDataset(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class RemoteDatasetCreationSuccessful(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class RemoteDatasetCreationFailed(work: Work, replyTo: ActorRef[Message], res: HttpResponse) extends ExecuteWork + + case class FailedToSendHttpRequestToFuseki(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class PushModelToRemoteDataset(work: Work, replyTo: ActorRef[Message], amlFilePath: String) extends ExecuteWork + + case class PushModelToRemoteDatasetSuccessful(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class PushModelToRemoteDatasetFailed(work: Work, replyTo: ActorRef[Message], e: Throwable) extends ExecuteWork + + case class ConvertAmlToOntologySuccessful(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class ConvertAmlToOntologyFailed(work: Work, replyTo: ActorRef[Message], e: Throwable) extends ExecuteWork + + case class AugmentModel(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class ModelAugmentationSuccessful(work: Work, replyTo: ActorRef[Message], model: Model) extends ExecuteWork + + case class ModelAugmentationFailed(work: Work, replyTo: ActorRef[Message], e: Throwable) extends ExecuteWork + + case class ValidateEngineeringData(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class ValidateEngineeringDataSuccessful(work: Work, replyTo: ActorRef[Message], result: ValidationWorkResult, model: Option[Model]) extends ExecuteWork + + case class ValidateEngineeringDataFailed(work: Work, replyTo: ActorRef[Message], e: Throwable) extends ExecuteWork + + case class ValidateWithSecurityRule(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class ValidationWithSecurityRuleSuccessful(work: Work, replyTo: ActorRef[Message], result: ValidationWorkResult, model: Model) extends ExecuteWork + + case class ValidationWithSecurityRuleFailed(work: Work, replyTo: ActorRef[Message], e: Throwable) extends ExecuteWork + + case class PerformCveCheck(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class CveCheckSuccessful(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class CveCheckFailed(work: Work, replyTo: ActorRef[Message], e: Throwable) extends ExecuteWork + + case class InstantiateVulnerabilities(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class VulnerabilityInstantiationSuccessful(work: Work, replyTo: ActorRef[Message], model: Model) extends ExecuteWork + + case class VulnerabilityInstantiationFailed(work: Work, replyTo: ActorRef[Message], e: Throwable) extends ExecuteWork + + case class GenerateAttackGraph(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class AttackGraphGenerationSuccessful(work: Work, replyTo: ActorRef[Message], model: Model) extends ExecuteWork + + case class AttackGraphGenerationFailed(work: Work, replyTo: ActorRef[Message], e: Throwable) extends ExecuteWork + + case class ExecuteCaseStudy(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class ExecutionOfCaseStudySuccessful(work: Work, replyTo: ActorRef[Message]) extends ExecuteWork + + case class ExecutionOfCaseStudyFailed(work: Work, replyTo: ActorRef[Message], e: Throwable) extends ExecuteWork + + def apply(): Behavior[ExecuteWork] = Behaviors.setup { ctx => + val config = Config() + OntModelUtils.setupLocationMappings(config) + new WorkExecutor(config, ctx).main() + } +} + +class WorkExecutor private(config: Config, ctx: ActorContext[ExecuteWork]) { + + import WorkExecutor._ + + def main(cachedModels: Map[String, Model] = Map.empty): Behavior[ExecuteWork] = + Behaviors.receiveMessage { + case crd@CreateRemoteDataset(work, replyTo) => + ctx.log.info("Doing work (creating remote dataset) {}", crd) + createDatasetOnFusekiSrv(config, work, ctx, replyTo) + Behaviors.same + case RemoteDatasetCreationSuccessful(work, replyTo) => + ctx.log.info("Successfully created dataset '{}' on Fuseki server ({}).", work.jobId, config.fusekiConfig.uri) + replyTo ! WorkComplete(work) + Behaviors.same + case RemoteDatasetCreationFailed(work, replyTo, res) => + ctx.log.error("Could not create dataset '{}' on Fuseki server ({}), received response ({}).", work.jobId, config.fusekiConfig.uri, res) + replyTo ! WorkFailed("Could not create remote dataset.", null) + Behaviors.same + case FailedToSendHttpRequestToFuseki(work, replyTo) => + ctx.log.error("Failed to send HTTP request to Fuseki server ({}) to create dataset '{}'.", config.fusekiConfig.uri, work.jobId) + replyTo ! WorkFailed("Could not sent HTTP request to Fuseki to create remote dataset.", new IllegalStateException()) + Behaviors.same + case pmtrd@PushModelToRemoteDataset(work, replyTo, amlFilePath) => + ctx.log.info("Doing work (pushing model to remote dataset) {}", pmtrd) + convertAmlFileToOntology(config, work, ctx, replyTo, amlFilePath) + Behaviors.same + case PushModelToRemoteDatasetSuccessful(work, replyTo) => + ctx.log.info("Successfully pushed model to dataset '{}' on Fuseki server ({}).", work.jobId, config.fusekiConfig.uri) + replyTo ! WorkComplete(work) + Behaviors.same + case PushModelToRemoteDatasetFailed(work, replyTo, e) => + ctx.log.error("Could not push model to dataset '{}' on Fuseki server ({}), exception ({}).", work.jobId, config.fusekiConfig.uri, e) + replyTo ! WorkFailed("Could not push model to remote dataset.", e) + Behaviors.same + case ConvertAmlToOntologySuccessful(work, replyTo) => + ctx.log.info("Successfully converted AML file to ontology (jobId '{}').", work.jobId, config.fusekiConfig.uri) + pushModelToFusekiSrv(config, work, ctx, replyTo) + Behaviors.same + case ConvertAmlToOntologyFailed(work, replyTo, e) => + ctx.log.error("Could not convert AML file to onotlogy (jobId '{}'), exception ({}).", work.jobId, config.fusekiConfig.uri, e) + replyTo ! WorkFailed("Could not convert AML file to ontology.", e) + Behaviors.same + case aoa@AugmentModel(work, replyTo) => + ctx.log.info("Doing work (augmenting model) {}", aoa) + augmentModel(config, work, ctx, replyTo) + Behaviors.same + case ModelAugmentationSuccessful(work, replyTo, model) => + ctx.log.info("Successfully augmented model (dataset '{}' on Fuseki server {}).", work.jobId, config.fusekiConfig.uri) + replyTo ! WorkComplete(work) + // main(cachedModels + (work.jobId -> model)) <--- Strangely, caching this model will sometimes produce wrong validation results + Behaviors.same + case ModelAugmentationFailed(work, replyTo, e) => + ctx.log.error("Could not augment model (dataset '{}' on Fuseki server {}), exception ({}).", work.jobId, config.fusekiConfig.uri, e) + replyTo ! WorkFailed("Could not augment model.", e) + Behaviors.same + case ved@ValidateEngineeringData(work, replyTo) => + ctx.log.info("Doing work (validate engineering data) {}", ved) + validateEngineeringData(config, work, ctx, replyTo, cachedModels) + Behaviors.same + case ValidateEngineeringDataSuccessful(work, replyTo, result, model) => + ctx.log.info("Successfully validated engineering data (dataset '{}' on Fuseki server {}).", work.jobId, config.fusekiConfig.uri) + replyTo ! WorkComplete(work, Some(result)) + model match { + case Some(m) => main(cachedModels + (work.jobId -> m)) + case None => Behaviors.same + } + case ValidateEngineeringDataFailed(work, replyTo, e) => + ctx.log.error("Could not validate engineering data (dataset '{}' on Fuseki server {}), exception ({}).", work.jobId, config.fusekiConfig.uri, e) + replyTo ! WorkFailed("Could not validate engineering data.", e) + Behaviors.same + case vwsr@ValidateWithSecurityRule(work, replyTo) => + ctx.log.info("Doing work (validate with security rule) {}", vwsr) + validateWithSecurityRule(config, work, ctx, replyTo, cachedModels) + Behaviors.same + case ValidationWithSecurityRuleSuccessful(work, replyTo, result, model) => + ctx.log.info("Successfully validated with security rule (dataset '{}' on Fuseki server {}).", work.jobId, config.fusekiConfig.uri) + replyTo ! WorkComplete(work, Some(result)) + main(cachedModels + (work.jobId -> model)) + case ValidationWithSecurityRuleFailed(work, replyTo, e) => + ctx.log.error("Could not validate with security rule (dataset '{}' on Fuseki server {}), exception ({}).", work.jobId, config.fusekiConfig.uri, e) + replyTo ! WorkFailed("Could not validate with security rule.", e) + Behaviors.same + case cve@PerformCveCheck(work, replyTo) => + ctx.log.info("Doing work (performing CVE check) {}", cve) + performCveCheck(config, work, ctx, replyTo, cachedModels) + Behaviors.same + case CveCheckSuccessful(work, replyTo) => + ctx.log.info("Successfully performed CVE check (dataset '{}' on Fuseki server {}).", work.jobId, config.fusekiConfig.uri) + replyTo ! WorkComplete(work) + Behaviors.same + case CveCheckFailed(work, replyTo, e) => + ctx.log.error("Could not perform CVE check (dataset '{}' on Fuseki server {}), exception ({}).", work.jobId, config.fusekiConfig.uri, e) + replyTo ! WorkFailed("Could not perform CVE check.", e) + Behaviors.same + case vulns@InstantiateVulnerabilities(work, replyTo) => + ctx.log.info("Doing work (instantiate vulnerabilities) {}", vulns) + instantiateVulnerabilities(config, work, ctx, replyTo) + Behaviors.same + case VulnerabilityInstantiationSuccessful(work, replyTo, model) => + ctx.log.info("Successfully instantiated vulnerabilities (dataset '{}' on Fuseki server {}).", work.jobId, config.fusekiConfig.uri) + replyTo ! WorkComplete(work) + main(cachedModels + (work.jobId -> model)) + case VulnerabilityInstantiationFailed(work, replyTo, e) => + ctx.log.error("Could not instantiate vulnerabilities (dataset '{}' on Fuseki server {}), exception ({}).", work.jobId, config.fusekiConfig.uri, e) + replyTo ! WorkFailed("Could not instantiate vulnerabilities.", e) + Behaviors.same + case ag@GenerateAttackGraph(work, replyTo) => + ctx.log.info("Doing work (generate attack graph) {}", ag) + generateAttackGraph(config, work, ctx, replyTo) + Behaviors.same + case AttackGraphGenerationSuccessful(work, replyTo, model) => + ctx.log.info("Successfully generated attack graph (dataset '{}' on Fuseki server {}).", work.jobId, config.fusekiConfig.uri) + replyTo ! WorkComplete(work) + main(cachedModels + (work.jobId -> model)) + case AttackGraphGenerationFailed(work, replyTo, e) => + ctx.log.error("Could not generate attack graph (dataset '{}' on Fuseki server {}), exception ({}).", work.jobId, config.fusekiConfig.uri, e) + replyTo ! WorkFailed("Could not instantiate vulnerabilities.", e) + Behaviors.same + case ec@ExecuteCaseStudy(work, replyTo) => + ctx.log.info("Doing work (execute case study) {}", ec) + executeCaseStudy(config, work, ctx, replyTo) + Behaviors.same + case ExecutionOfCaseStudySuccessful(work, replyTo) => + ctx.log.info("Successfully executed case study (dataset '{}' on Fuseki server {}).", work.jobId, config.fusekiConfig.uri) + replyTo ! WorkComplete(work) + Behaviors.same + case ExecutionOfCaseStudyFailed(work, replyTo, e) => + ctx.log.error("Could not execute case study (dataset '{}' on Fuseki server {}), exception ({}).", work.jobId, config.fusekiConfig.uri, e) + replyTo ! WorkFailed("Could not execute case study.", e) + Behaviors.same + } + + private def createDatasetOnFusekiSrv(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message]): Unit = { + implicit val system = ctx.system + implicit val executionContext = system.dispatchers.lookup(DispatcherSelector.default()) + val reqCreateDataset = Http().singleRequest( + HttpRequest( + method = HttpMethods.POST, + uri = s"${config.fusekiConfig.uri}/$$/datasets", + entity = HttpEntity(ContentTypes.`application/x-www-form-urlencoded`, s"dbType=tdb&dbName=${work.jobId}") + ) + ) + reqCreateDataset.onComplete { + case Success(res) => + if (res.status.isSuccess()) + ctx.self ! RemoteDatasetCreationSuccessful(work, replyTo) + else ctx.self ! RemoteDatasetCreationFailed(work, replyTo, res) + case Failure(_) => ctx.self ! FailedToSendHttpRequestToFuseki(work, replyTo) + } + } + + private def convertAmlFileToOntology(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message], amlFilePath: String): Unit = { + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] AML-to-OWL Transformation START"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val pb = new ProcessBuilder("java", "-jar", config.amlToOwlProgram, amlFilePath, s"${config.baseDir + work.jobId}.owl") + pb.inheritIO() + val process = pb.start() + import ctx.executionContext + + import scala.jdk.FutureConverters._ + process.onExit().asScala.onComplete { + case Success(process) => + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] AML-to-OWL Transformation END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + if (process.exitValue() == 0) + ctx.self ! ConvertAmlToOntologySuccessful(work, replyTo) + else ctx.self ! ConvertAmlToOntologyFailed(work, replyTo, throw new IllegalStateException("Could not convert AML file to ontology.")) + case Failure(e) => ctx.self ! ConvertAmlToOntologyFailed(work, replyTo, e) + } + } + + private def pushModelToFusekiSrv(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message]): Unit = { + ctx.log.info("Pushing model to dataset '{}' on Fuseki server ({}).", work.jobId, config.fusekiConfig.uri) + val ontModels = OntModels(config) + val amlOntModel = OntModelUtils.createModel(s"${config.baseDir + work.jobId}.owl", "aml") + Using(RDFConnectionFactory.connect(s"${config.fusekiConfig.uri}/${work.jobId}")) { rdfConn => + val mergedModel = amlOntModel.union(ontModels.sec).union(ontModels.icssec).union(ontModels.ag) + rdfConn.put(mergedModel) + } match { + case Success(_) => ctx.self ! PushModelToRemoteDatasetSuccessful(work, replyTo) + case Failure(e) => ctx.self ! PushModelToRemoteDatasetFailed(work, replyTo, e) + } + } + + private def getOntModelFromRemoteDataset(rdfConn: RDFConnection): OntModel = + ModelFactory.createOntologyModel(OntModelSpec.OWL_DL_MEM, rdfConn.fetchDataset().getDefaultModel) + + private def pushUpdatedModelToRemoteDataset(rdfConn: RDFConnection, model: Model): Unit = { + rdfConn.delete() + rdfConn.put(model) + } + + private def augmentModel(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message]): Unit = { + + /** + * Used to obtain an inference model that is supported by the selected reasoner. + * + * @param infModel the inference model to modify + * @param reasonerUri the URI of the reasoner + * @return an inference model suitable for validation with the selected reasoner + */ + def getInfModelForReasonerValidityCheck(infModel: InfModel, reasonerUri: String): InfModel = reasonerUri match { + case OWLMicroReasonerFactory.URI => + /* Create a deep copy of the inference model. */ + val copy = ModelFactory.createInfModel(infModel.getGraph.asInstanceOf[InfGraph]) + /* Remove all disjoint axioms, as they are not supported by the OWL Micro reasoner. */ + copy.removeAll(null, OWL2.disjointUnionOf, null) + copy.removeAll(null, OWL2.disjointWith, null) + copy + case _ => infModel + } + + /** + * This is a custom validity check that suppresses the following errors if the OWL Micro Reasoner is used: + * ``` + * Property http://www.w3.org/2000/01/rdf-schema#label has a typed range Datatype[http://www.w3.org/2000/01/rdf-schema#Literal]that is not compatible with "text"@en + * Property http://www.w3.org/2000/01/rdf-schema#comment has a typed range Datatype[http://www.w3.org/2000/01/rdf-schema#Literal]that is not compatible with "text"@en + * ``` + * + * @param validityReport the validity report + * @param reasonerUri the reasoner URI + * @return true, if the model is valid + */ + def isModelValid(validityReport: ValidityReport, reasonerUri: String): Boolean = reasonerUri match { + case OWLMicroReasonerFactory.URI => + import scala.jdk.CollectionConverters._ + /* Suppress dtRange errors. Needs to be fixed in a future release. */ + !validityReport.getReports.asScala.toList + .exists(r => r.`type` != "dtRange" && (!r.description.contains("label") || !r.description.contains("comment"))) + case _ => validityReport.isValid + } + + Using(RDFConnectionFactory.connect(s"${config.fusekiConfig.uri}/${work.jobId}")) { rdfConn => + val model = getOntModelFromRemoteDataset(rdfConn) + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Adding axioms START"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val augmentedModel = AmlOntExtension.addOntAxioms(config, model) + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Adding axioms END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + /* + augmentedModel.foreach { m => + OntModelUtils.write(m, "/home/meckhart/amlsec/augmented_model.owl") + } + */ + augmentedModel.flatMap { m => + ctx.log.info("Obtaining inference model...") + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Reasoner Get Inferences START"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val infModel = OntModelUtils.getInfModel(m, config.reasonerUri) + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Reasoner Get Inferences END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Testing the validity of data using the reasoner...") + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Reasoner Validate Data START"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val validityReport = getInfModelForReasonerValidityCheck(infModel, config.reasonerUri).validate() + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Reasoner Validate Data END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Finished validity test with reasoner.") + if (isModelValid(validityReport, config.reasonerUri)) { + ctx.log.info("Adding asset physically connected to asset roles...") + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Add Asset Physically Connected to Asset Roles START"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val physicallyConnAugModel = AmlOntExtension.addAssetPhysicallyConnectedToAssetRoles(config, infModel, withInference = false) + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Add Asset Physically Connected to Asset Roles END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Adding asset logically connected to asset roles...") + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Add Asset Logically Connected to Asset Roles START"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val logicallyConnAugModel = AmlOntExtension.addAssetLogicallyConnectedToAssetRoles(config, infModel, withInference = false) + PerformanceMeasurement.writeElapsedTimeToFile(Some("[Main] Add Asset Logically Connected to Asset Roles END"), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + for { + pm <- physicallyConnAugModel + lm <- logicallyConnAugModel + } yield { + val resultModel = infModel.add(pm).add(lm) + pushUpdatedModelToRemoteDataset(rdfConn, resultModel) + resultModel + } + } else { + import scala.jdk.CollectionConverters._ + validityReport.getReports.asScala.toList.foreach(x => println(x.description)) + Some(Validator.processReasonerValidityReports(validityReport.getReports.asScala.toList)) + } + } + } match { + case Success(Some(result)) => + result match { + case model: Model => ctx.self ! ModelAugmentationSuccessful(work, replyTo, model) + case validationReport: ValidationReport => ctx.self ! ValidateEngineeringDataSuccessful(work, replyTo, ValidationWorkResult(validationReport), None) + case _ => ctx.self ! ModelAugmentationFailed(work, replyTo, throw new IllegalStateException("Could not perform model augmentation.")) + } + case Success(None) => ctx.self ! ModelAugmentationFailed(work, replyTo, throw new IllegalStateException("Could not perform model augmentation.")) + case Failure(e) => ctx.self ! ModelAugmentationFailed(work, replyTo, e) + } + } + + private def validateEngineeringData(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message], cachedModels: Map[String, Model]): Unit = + work match { + case WorkValidateEngineeringData(jobId, workId, shapeUri) => + val validation = cachedModels.get(jobId) match { + case Some(m) => + ctx.log.info("Starting validation of engineering data with cached model.") + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Validation with shape $shapeUri with cached model START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val r = validate(config, m, shapeUri, config.engValFilePath, Some(config.outputPathEngValReport)) + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Validation with shape $shapeUri with cached model END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Finished validation of engineering data with cached model.") + Success(r, m) + case None => + Using(RDFConnectionFactory.connect(s"${config.fusekiConfig.uri}/${work.jobId}")) { rdfConn => + val m = getOntModelFromRemoteDataset(rdfConn) + ctx.log.info("Starting validation of engineering data.") + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Validation with shape $shapeUri START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val r = validate(config, m, shapeUri, config.engValFilePath, Some(config.outputPathEngValReport)) + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Validation with shape $shapeUri END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Finished validation of engineering data.") + (r, m) + } + } + validation match { + case Success((Some(report), model)) => + ctx.log.info(report.toString) + ctx.self ! ValidateEngineeringDataSuccessful(work, replyTo, ValidationWorkResult(report), Some(model)) + case Success((None, _)) => ctx.self ! ValidateEngineeringDataFailed(work, replyTo, throw new RuntimeException(s"Could not validate with shapes model using URI $shapeUri.")) + case Failure(e) => ctx.self ! ValidateEngineeringDataFailed(work, replyTo, e) + } + case _ => ctx.self ! ValidateEngineeringDataFailed(work, replyTo, throw new IllegalStateException(s"Expected validate engineering data work item, but got ${work.toString}.")) + } + + + private def validateWithSecurityRule(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message], cachedModels: Map[String, Model]): Unit = + work match { + case WorkValidateWithSecurityRule(jobId, workId, shapeUri) => + val validation = cachedModels.get(jobId) match { + case Some(m) => + ctx.log.info("Starting validation with security rule with cached model.") + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Validation with shape $shapeUri with cached model START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val r = validate(config, m, shapeUri, config.secValFilePath, Some(config.outputPathSecValReport)) + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Validation with shape $shapeUri with cached model END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Finished validation with security rule with cached model.") + Success(r, m) + case None => + Using(RDFConnectionFactory.connect(s"${config.fusekiConfig.uri}/${work.jobId}")) { rdfConn => + val m = getOntModelFromRemoteDataset(rdfConn) + ctx.log.info("Starting validation with security rule.") + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Validation with shape $shapeUri START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val r = validate(config, m, shapeUri, config.secValFilePath, Some(config.outputPathSecValReport)) + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Validation with shape $shapeUri END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Finished validation with security rule.") + (r, m) + } + } + validation match { + case Success((Some(report), model)) => + ctx.log.info(report.toString) + ctx.self ! ValidationWithSecurityRuleSuccessful(work, replyTo, ValidationWorkResult(report), model) + case Success((None, _)) => ctx.self ! ValidationWithSecurityRuleFailed(work, replyTo, throw new RuntimeException(s"Could not validate with shapes model using URI $shapeUri.")) + case Failure(e) => ctx.self ! ValidationWithSecurityRuleFailed(work, replyTo, e) + } + case _ => ctx.self ! ValidationWithSecurityRuleFailed(work, replyTo, throw new IllegalStateException(s"Expected validate with security rule work item, but got ${work.toString}.")) + } + + private def validate(config: Config, model: Model, shapeUri: String, shapesModelPath: String, outputReportPath: Option[String]): Option[ValidationReport] = + Validator.validate( + model, + shapesModelPath = shapesModelPath, + reportPath = outputReportPath, + shapeUri + ) + + private def performCveCheck(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message], cachedModels: Map[String, Model]): Unit = { + Using(RDFConnectionFactory.connect(s"${config.fusekiConfig.uri}/${work.jobId}")) { rdfConn => + val model = cachedModels.get(work.jobId).getOrElse(getOntModelFromRemoteDataset(rdfConn)) + ctx.log.info("Starting CVE check.") + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] CVE check START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val ontModel = ModelFactory.createOntologyModel(OntModelSpec.OWL_DL_MEM, model) + val vulnModel = VulnerabilityModeling.processCves(config, ontModel, CveChecker.check(ontModel)) + vulnModel map { r => pushUpdatedModelToRemoteDataset(rdfConn, r) } + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] CVE check END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Finished CVE check.") + vulnModel + } match { + case Success(Some(_)) => ctx.self ! CveCheckSuccessful(work, replyTo) + case Success(None) => ctx.self ! CveCheckFailed(work, replyTo, throw new RuntimeException(s"Could not perform CVE check.")) + case Failure(e) => ctx.self ! CveCheckFailed(work, replyTo, e) + } + } + + private def instantiateVulnerabilities(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message]): Unit = work match { + case WorkInstantiateVulnerabilities(jobId, workId, reports) => + Using(RDFConnectionFactory.connect(s"${config.fusekiConfig.uri}/${work.jobId}")) { rdfConn => + val ontModel = getOntModelFromRemoteDataset(rdfConn) + ctx.log.info("Starting instantiation of vulnerabilities.") + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Vulnerability instantiation START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val vulnModel = VulnerabilityModeling.processReports(config, Some(ontModel), infModel = None, reports) + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Vulnerability instantiation END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Finished instantiation of vulnerabilities.") + vulnModel.foreach { m => pushUpdatedModelToRemoteDataset(rdfConn, m) } + vulnModel + } match { + case Success(Some(m)) => ctx.self ! VulnerabilityInstantiationSuccessful(work, replyTo, m) + case Success(None) => ctx.self ! VulnerabilityInstantiationFailed(work, replyTo, throw new RuntimeException(s"Could not perform vulnerability instantiation.")) + case Failure(e) => ctx.self ! VulnerabilityInstantiationFailed(work, replyTo, e) + } + case _ => ctx.self ! VulnerabilityInstantiationFailed(work, replyTo, throw new IllegalStateException(s"Expected instantiate vulnerabilities work item, but got ${work.toString}.")) + } + + private def generateAttackGraph(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message]): Unit = + Using(RDFConnectionFactory.connect(s"${config.fusekiConfig.uri}/${work.jobId}")) { rdfConn => + val model = getOntModelFromRemoteDataset(rdfConn) + ctx.log.info("Starting attack graph generation.") + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Attack graph generation START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + val agModel = AttackGraph.generate(config, model, withInference = false) + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Attack graph generation END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Finished generation of attack graph.") + agModel.map { m => + val resultModel = model.add(m) + pushUpdatedModelToRemoteDataset(rdfConn, resultModel) + resultModel + } + } match { + case Success(Some(m)) => ctx.self ! AttackGraphGenerationSuccessful(work, replyTo, m) + case Success(None) => ctx.self ! AttackGraphGenerationFailed(work, replyTo, throw new RuntimeException(s"Could not generate attack graph.")) + case Failure(e) => ctx.self ! AttackGraphGenerationFailed(work, replyTo, e) + } + + private def executeCaseStudy(config: Config, work: Work, ctx: ActorContext[WorkExecutor.ExecuteWork], replyTo: ActorRef[Message]): Unit = { + Using(RDFConnectionFactory.connect(s"${config.fusekiConfig.uri}/${work.jobId}")) { rdfConn => + val model = getOntModelFromRemoteDataset(rdfConn) + ctx.log.info("Starting case study.") + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Case study START."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + CaseStudy.plotCpag(config, model, withInference = false) + PerformanceMeasurement.writeElapsedTimeToFile(Some(s"[Main] Case study END."), System.nanoTime(), config.debugConfig.outputPathPerformanceReport) + ctx.log.info("Finished case study.") + } match { + case Success(_) => ctx.self ! ExecutionOfCaseStudySuccessful(work, replyTo) + case Failure(e) => ctx.self ! ExecutionOfCaseStudyFailed(work, replyTo, e) + } + } + +} \ No newline at end of file diff --git a/amlsec/src/main/scala/org/sba_research/worker/WorkManager.scala b/amlsec/src/main/scala/org/sba_research/worker/WorkManager.scala new file mode 100644 index 0000000..a4a9133 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/WorkManager.scala @@ -0,0 +1,132 @@ +package org.sba_research.worker + +import akka.Done +import akka.actor.typed.delivery.WorkPullingProducerController.{MessageWithConfirmation, RequestNext} +import akka.actor.typed.delivery.{ConsumerController, WorkPullingProducerController} +import akka.actor.typed.receptionist.ServiceKey +import akka.actor.typed.scaladsl.Behaviors +import akka.actor.typed.{ActorRef, Behavior} +import akka.actor.typed.pubsub.Topic +import akka.persistence.typed.{PersistenceId, RecoveryCompleted} +import akka.persistence.typed.scaladsl.{Effect, EventSourcedBehavior} +import akka.util.Timeout +import org.sba_research.worker.FrontEnd.WorkFinished +import org.sba_research.worker.WorkState.{WorkAccepted, WorkCompleted, WorkDomainEvent, WorkInProgressReset, WorkStarted} + +import scala.concurrent.duration.{FiniteDuration, _} +import scala.util.{Failure, Success} + +/** + * The work manager actor (hosted by back-end nodes) keeps track of all available workers, and all scheduled and ongoing work items. + * cf. https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala + */ +object WorkManager { + + val ManagerServiceKey = ServiceKey[ConsumerController.Command[WorkerCommand]]("worker-service-key") + + val WorkerServiceKey: ServiceKey[WorkerCommand] = + ServiceKey[WorkerCommand]("workerService") + val ResultsTopic = "results" + + final case class Ack(work: Work) extends CborSerializable + + // Responses to requests from workers + sealed trait WorkerCommand extends CborSerializable + + final case class DoWork(work: Work) extends WorkerCommand with CborSerializable + + sealed trait Command + + final case class SubmitWork(work: Work, replyTo: ActorRef[WorkManager.Ack]) + extends Command with CborSerializable + + private case class RequestNextWrapper(ask: RequestNext[WorkerCommand]) extends Command + + final case class WorkIsDone(work: Work) extends Command + + final case class WorkFailed(work: Work, t: Throwable) extends Command + + private case object TryStartWork extends Command + + private case object ResetWorkInProgress extends Command + + def apply(workTimeout: FiniteDuration, resultTopicActor: ActorRef[Topic.Command[WorkFinished]]): Behavior[Command] = + Behaviors.setup { ctx => + implicit val timeout = Timeout(60.minutes) + val producerController = ctx.spawn(WorkPullingProducerController[WorkerCommand]("work-manager", ManagerServiceKey, None), "producer-controller") + val requestNextAdapter = ctx.messageAdapter(RequestNextWrapper) + producerController ! WorkPullingProducerController.Start(requestNextAdapter) + + var requestNext: Option[RequestNext[WorkerCommand]] = None + + def tryStartWork(workState: WorkState): Effect[WorkDomainEvent, WorkState] = { + + if (workState.hasWork) { + requestNext match { + case Some(next) => + val work = workState.nextWork + ctx.ask[MessageWithConfirmation[WorkerCommand], Done](next.askNextTo, done => MessageWithConfirmation(DoWork(work), done)) { + case Success(Done) => + WorkIsDone(work) + case Failure(t) => + ctx.log.error("Work failed", t) + WorkFailed(work, t) + } + requestNext = None + Effect.persist(WorkStarted(work.workId)) + case _ => + Effect.none + } + } else { + Effect.none + } + } + + EventSourcedBehavior[Command, WorkDomainEvent, WorkState]( + persistenceId = PersistenceId.ofUniqueId("master"), + emptyState = WorkState.empty, + commandHandler = (workState, command) => { + command match { + case RequestNextWrapper(rn) => + ctx.log.info("Work request: {}") + if (requestNext.isDefined) { + throw new IllegalStateException(s"Request next when there is already demand ${rn}, ${requestNext}") + } + requestNext = Some(rn) + tryStartWork(workState) + case TryStartWork => + tryStartWork(workState) + case ResetWorkInProgress => + Effect.persist(WorkInProgressReset) + case WorkIsDone(work) => + Effect.persist[WorkDomainEvent, WorkState](WorkCompleted(work.workId)).thenRun { newState => + ctx.log.info("Work is done {}. New state {}", work.workId, newState) + } + + case WorkFailed(id, reason) => + ctx.log.info("Work failed {} {}", id, reason) + tryStartWork(workState) + case submitWork: SubmitWork => + // idempotent + if (workState.isAccepted(submitWork.work.workId)) { + submitWork.replyTo ! WorkManager.Ack(submitWork.work) + Effect.none + } else { + ctx.log.info("Accepted work: {}", submitWork.work.workId) + Effect.persist(WorkAccepted(submitWork.work)).thenRun { _ => + // Ack back to original sender + submitWork.replyTo ! WorkManager.Ack(submitWork.work) + ctx.self ! TryStartWork + } + } + } + }, + eventHandler = (workState, event) => workState.updated(event) + ).receiveSignal { + case (state, RecoveryCompleted) => + // Any in progress work from the previous incarnation is retried + ctx.self ! ResetWorkInProgress + } + } + +} diff --git a/amlsec/src/main/scala/org/sba_research/worker/WorkManagerSingleton.scala b/amlsec/src/main/scala/org/sba_research/worker/WorkManagerSingleton.scala new file mode 100644 index 0000000..09dbd7f --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/WorkManagerSingleton.scala @@ -0,0 +1,26 @@ +package org.sba_research.worker + +import akka.actor.typed.ActorRef +import akka.actor.typed.ActorSystem +import akka.actor.typed.pubsub.Topic +import akka.cluster.typed.ClusterSingleton + +import scala.concurrent.duration._ +import akka.cluster.typed._ +import org.sba_research.worker.FrontEnd.WorkFinished +import org.sba_research.worker.WorkManager.Command + +// cf. https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala +object WorkManagerSingleton { + + private val singletonName = "work-manager" + private val singletonRole = "back-end" + + def init(system: ActorSystem[_], resultTopicActor: ActorRef[Topic.Command[WorkFinished]]): ActorRef[Command] = { + val workTimeout = system.settings.config.getDuration("distributed-workers.work-timeout").getSeconds.seconds + + ClusterSingleton(system).init( + SingletonActor(WorkManager(workTimeout, resultTopicActor), singletonName) + .withSettings(ClusterSingletonSettings(system).withRole(singletonRole))) + } +} diff --git a/amlsec/src/main/scala/org/sba_research/worker/WorkState.scala b/amlsec/src/main/scala/org/sba_research/worker/WorkState.scala new file mode 100644 index 0000000..ea4ca42 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/WorkState.scala @@ -0,0 +1,62 @@ +package org.sba_research.worker + +import scala.collection.immutable.Queue + +// cf. https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala + +object WorkState { + + def empty: WorkState = + WorkState( + pendingWork = Queue.empty, + workInProgress = Map.empty, + acceptedWorkIds = Set.empty, + doneWorkIds = Set.empty) + + trait WorkDomainEvent extends CborSerializable + case class WorkAccepted(work: Work) extends WorkDomainEvent + case class WorkStarted(workId: String) extends WorkDomainEvent + case class WorkCompleted(workId: String) extends WorkDomainEvent + case class WorkerFailed(workId: String) extends WorkDomainEvent + case class WorkerTimedOut(workId: String) extends WorkDomainEvent + case object WorkInProgressReset extends WorkDomainEvent +} + +case class WorkState private ( + private val pendingWork: Queue[Work], + private val workInProgress: Map[String, Work], + private val acceptedWorkIds: Set[String], + private val doneWorkIds: Set[String]) { + + import WorkState._ + + def hasWork: Boolean = pendingWork.nonEmpty + def nextWork: Work = pendingWork.head + def isAccepted(workId: String): Boolean = acceptedWorkIds.contains(workId) + def isInProgress(workId: String): Boolean = workInProgress.contains(workId) + def isDone(workId: String): Boolean = doneWorkIds.contains(workId) + + def updated(event: WorkDomainEvent): WorkState = event match { + case WorkAccepted(work) => + copy(pendingWork = pendingWork.enqueue(work), acceptedWorkIds = acceptedWorkIds + work.workId) + + case WorkStarted(workId) => + val (work, rest) = pendingWork.dequeue + require(workId == work.workId, s"WorkStarted expected workId $workId == ${work.workId}") + copy(pendingWork = rest, workInProgress = workInProgress + (workId -> work)) + + case WorkCompleted(workId) => + copy(workInProgress = workInProgress - workId, doneWorkIds = doneWorkIds + workId) + + case WorkerFailed(workId) => + copy(pendingWork = pendingWork.enqueue(workInProgress(workId)), workInProgress = workInProgress - workId) + + case WorkerTimedOut(workId) => + copy(pendingWork = pendingWork.enqueue(workInProgress(workId)), workInProgress = workInProgress - workId) + + case WorkInProgressReset => + copy(pendingWork = pendingWork.enqueueAll(workInProgress.values), workInProgress = Map.empty) + + } + +} diff --git a/amlsec/src/main/scala/org/sba_research/worker/Worker.scala b/amlsec/src/main/scala/org/sba_research/worker/Worker.scala new file mode 100644 index 0000000..58832c7 --- /dev/null +++ b/amlsec/src/main/scala/org/sba_research/worker/Worker.scala @@ -0,0 +1,169 @@ +package org.sba_research.worker + +import akka.actor.typed._ +import akka.actor.typed.delivery.ConsumerController +import akka.actor.typed.pubsub.Topic +import akka.actor.typed.scaladsl._ +import org.sba_research.utils.ValidationReport +import org.sba_research.worker.FrontEnd.WorkFinished +import org.sba_research.worker.WorkExecutor.ExecuteWork + +/** + * The worker is actually more of a middle manager, delegating the actual work + * to the WorkExecutor, supervising it and keeping itself available to interact with the work manager. + * cf. https://github.com/akka/akka-samples/tree/2.6/akka-sample-distributed-workers-scala + */ +object Worker { + + sealed trait Message + + case class DeliveredMessage(confirmTo: ActorRef[ConsumerController.Confirmed], message: WorkManager.WorkerCommand, seqNr: Long) extends Message + + sealed trait WorkResultValue + + case class ValidationWorkResult(validationReport: ValidationReport) extends WorkResultValue + + case class WorkComplete(work: Work, result: Option[WorkResultValue] = None) extends Message + + case class WorkFailed(id: String, t: Throwable) extends Message + + case class WorkTimeout() extends Message + + def apply(resultTopicActor: ActorRef[Topic.Command[WorkFinished]], + workExecutorFactory: () => Behavior[ExecuteWork] = () => WorkExecutor()): Behavior[Message] = + Behaviors.setup[Message] { ctx => + val consumerController = ctx.spawn(ConsumerController[WorkManager.WorkerCommand](WorkManager.ManagerServiceKey), "consumer-controller") + val deliverAdapter = ctx.messageAdapter[ConsumerController.Delivery[WorkManager.WorkerCommand]](d => DeliveredMessage(d.confirmTo, d.message, d.seqNr)) + consumerController ! ConsumerController.Start(deliverAdapter) + Behaviors + .supervise(new Worker(ctx, workExecutorFactory, resultTopicActor).idle()) + .onFailure[Exception](SupervisorStrategy.restart) + } + +} + +class Worker private( + ctx: ActorContext[Worker.Message], + workExecutorFactory: () => Behavior[ExecuteWork], + resultTopicActor: ActorRef[Topic.Command[WorkFinished]]) { + + import Worker._ + + def createWorkExecutor(): ActorRef[ExecuteWork] = { + val supervised = Behaviors.supervise(workExecutorFactory()).onFailure[Exception](SupervisorStrategy.stop) + val ref = ctx.spawn(supervised, "work-executor") + ctx.watch(ref) + ref + } + + def idle(workExecutor: ActorRef[ExecuteWork] = createWorkExecutor()): Behavior[Worker.Message] = + Behaviors.receiveMessagePartial[Worker.Message] { + case DeliveredMessage(confirmTo, message, _) => + ctx.watch(confirmTo) + message match { + case WorkManager.DoWork(w@WorkCreateRemoteDataset(_, _)) => + ctx.log.info("Got work (create remote dataset): {}", w) + workExecutor ! WorkExecutor.CreateRemoteDataset(w, ctx.self) + working(workExecutor, confirmTo) + case WorkManager.DoWork(w@WorkPushModelToRemoteDataset(_, _, amlFilePath)) => + ctx.log.info("Got work (push model to remote dataset): {}", w) + workExecutor ! WorkExecutor.PushModelToRemoteDataset(w, ctx.self, amlFilePath) + working(workExecutor, confirmTo) + case WorkManager.DoWork(w@WorkAugmentModel(_, _)) => + ctx.log.info("Got work (augment model): {}", w) + workExecutor ! WorkExecutor.AugmentModel(w, ctx.self) + working(workExecutor, confirmTo) + case WorkManager.DoWork(w@WorkValidateEngineeringData(_, _, _)) => + ctx.log.info("Got work (validate engineering data): {}", w) + workExecutor ! WorkExecutor.ValidateEngineeringData(w, ctx.self) + working(workExecutor, confirmTo) + case WorkManager.DoWork(w@WorkValidateWithSecurityRule(_, _, _)) => + ctx.log.info("Got work (validate with security rule): {}", w) + workExecutor ! WorkExecutor.ValidateWithSecurityRule(w, ctx.self) + working(workExecutor, confirmTo) + case WorkManager.DoWork(w@WorkCveCheck(_, _)) => + ctx.log.info("Got work (perform CVE check): {}", w) + workExecutor ! WorkExecutor.PerformCveCheck(w, ctx.self) + working(workExecutor, confirmTo) + case WorkManager.DoWork(w@WorkInstantiateVulnerabilities(_, _, _)) => + ctx.log.info("Got work (instantiate vulnerabilities): {}", w) + workExecutor ! WorkExecutor.InstantiateVulnerabilities(w, ctx.self) + working(workExecutor, confirmTo) + case WorkManager.DoWork(w@WorkGenerateAttackGraph(_, _)) => + ctx.log.info("Got work (generate attack graph): {}", w) + workExecutor ! WorkExecutor.GenerateAttackGraph(w, ctx.self) + working(workExecutor, confirmTo) + case WorkManager.DoWork(w@WorkExecuteCaseStudy(_, _)) => + ctx.log.info("Got work (execute case study): {}", w) + workExecutor ! WorkExecutor.ExecuteCaseStudy(w, ctx.self) + working(workExecutor, confirmTo) + case _ => Behaviors.unhandled + } + }.receiveSignal { + case (context, Terminated(ref)) => + context.log.info("WorkManager stopped: {}", ref.path.name) + Behaviors.same + } + + def working(workExecutor: ActorRef[ExecuteWork], confirmTo: ActorRef[ConsumerController.Confirmed]): Behavior[Worker.Message] = + Behaviors + .receiveMessagePartial[Worker.Message] { + case Worker.WorkComplete(work, result) => + ctx.log.info("Work '{}' is complete. Result: '{}'", work, result) + confirmTo ! ConsumerController.Confirmed + work match { + case _: WorkCreateRemoteDataset => + resultTopicActor ! Topic.Publish(WorkFinished(work, FusekiDatasetCreationSuccessful)) + case _: WorkPushModelToRemoteDataset => + resultTopicActor ! Topic.Publish(WorkFinished(work, FusekiPushModelToRemoteDatasetSuccessful)) + case _: WorkAugmentModel => + /* During the augmentation step, we perform validity check via the reasoner. + * Thus, if the model is not valid, we receive a validation work result. */ + result match { + case Some(r: ValidationWorkResult) => + resultTopicActor ! Topic.Publish(WorkFinished(work, ValidationOfEngineeringDataSuccessful(r.validationReport))) + case _ => resultTopicActor ! Topic.Publish(WorkFinished(work, ModelAugmentationSuccessful)) + } + case _: WorkValidateEngineeringData => + result match { + case Some(r: ValidationWorkResult) => + resultTopicActor ! Topic.Publish(WorkFinished(work, ValidationOfEngineeringDataSuccessful(r.validationReport))) + case _ => + ctx.log.error("Received wrong result type for validation of engineering data work item ({}).", result) + } + case _: WorkValidateWithSecurityRule => + result match { + case Some(r: ValidationWorkResult) => + resultTopicActor ! Topic.Publish(WorkFinished(work, ValidationWithSecurityRuleSuccessful(r.validationReport))) + case _ => + ctx.log.error("Received wrong result type for validation with security rule work item ({}).", result) + } + case _: WorkCveCheck => + resultTopicActor ! Topic.Publish(WorkFinished(work, CveCheckSuccessful)) + case _: WorkInstantiateVulnerabilities => + resultTopicActor ! Topic.Publish(WorkFinished(work, InstantiationOfVulnerabilitiesSuccessful)) + case _: WorkGenerateAttackGraph => + resultTopicActor ! Topic.Publish(WorkFinished(work, GenerationOfAttackGraphSuccessful)) + case _: WorkExecuteCaseStudy => + resultTopicActor ! Topic.Publish(WorkFinished(work, ExecutionOfCaseStudySuccessful)) + case _ => + } + idle(workExecutor) + case Worker.WorkFailed(s, e) => + ctx.log.error(s, e) + throw e + case _: DeliveredMessage => + ctx.log.warn("Yikes. Reliable delivery told me to do work, while I'm already working.") + Behaviors.unhandled + + } + .receiveSignal { + case (_, Terminated(_)) => + ctx.log.info("Work executor terminated") + // The work is confirmed meaning it won't be re-delivered. Sending back a failure would need + // to be done explicitly + confirmTo ! ConsumerController.Confirmed + idle(createWorkExecutor()) + } + +} diff --git a/case-study/pruned_ag.svg b/case-study/pruned_ag.svg deleted file mode 100644 index 07e45d4..0000000 --- a/case-study/pruned_ag.svg +++ /dev/null @@ -1,399 +0,0 @@ - - -pruned_ag - - - -SIMATICWinCCSvr1 - -SIMATICWinCCSvr1 - - - -GECimplicity1 - -GECimplicity1 - - - -SIMATICWinCCSvr1->GECimplicity1 - - -CVE-2013-2785 - - - -SIMATICHistorian1 - -SIMATICHistorian1 - - - -SIMATICWinCCSvr1->SIMATICHistorian1 - - -CVE-2012-1856 - - - -KUKAConnBox1 - -KUKAConnBox1 - - - -GECimplicity1->KUKAConnBox1 - - -Unused Open Port - - - -SE_XBTGT1 - -SE_XBTGT1 - - - -GECimplicity1->SE_XBTGT1 - - -CVE-2019-6833 - - - -KRC4_2 - -KRC4_2 - - - -GECimplicity1->KRC4_2 - - -Insecure Protocol Used - - - -SimaticS71510SPF1PN2 - -SimaticS71510SPF1PN2 - - - -GECimplicity1->SimaticS71510SPF1PN2 - - -Not Separated Safety Related Device - - - -SimaticS71516F_2 - -SimaticS71516F_2 - - - -GECimplicity1->SimaticS71516F_2 - - -CVE-2014-5074 - - - -KUKAConnBox1->GECimplicity1 - - -CVE-2013-2785 - - - -KUKAConnBox1->SE_XBTGT1 - - -CVE-2019-6833 - - - -KUKAConnBox1->KRC4_2 - - -Insecure Protocol Used - - - -KUKAConnBox1->SimaticS71510SPF1PN2 - - -Not Separated Safety Related Device - - - -KUKAConnBox1->SimaticS71516F_2 - - -CVE-2014-5074 - - - -SE_XBTGT1->GECimplicity1 - - -CVE-2013-2785 - - - -SE_XBTGT1->KUKAConnBox1 - - -Unused Open Port - - - -SE_XBTGT1->KRC4_2 - - -Insecure Protocol Used - - - -SE_XBTGT1->SimaticS71510SPF1PN2 - - -Not Separated Safety Related Device - - - -SE_XBTGT1->SimaticS71516F_2 - - -CVE-2014-5074 - - - -AVSvr1 - -AVSvr1 - - - -JumpSvr1 - -JumpSvr1 - - - -AVSvr1->JumpSvr1 - - -IT-OT Cross Connection - - - -MES1 - -MES1 - - - -JumpSvr1->MES1 - - -IT-OT Cross Connection - - - -SIMATICHistorian1->SIMATICWinCCSvr1 - - -CVE-2013-3957 - - - -MailSvr1 - -MailSvr1 - - - -WebSvr2 - -WebSvr2 - - - -MailSvr1->WebSvr2 - - -CVE-2017-3167 - - - -AppSvr1 - -AppSvr1 - - - -MailSvr1->AppSvr1 - - -Insecure Protocol Used - - - -WebSvr2->AppSvr1 - - -Untrusted Cross Zone Connection - - - -AppSvr1->JumpSvr1 - - -IT-OT Cross Connection - - - -AppSvr1->WebSvr2 - - -CVE-2017-3167 - - - -MES1->SIMATICWinCCSvr1 - - -CVE-2013-3958 - - - -SIMATICFieldPGM6 - -SIMATICFieldPGM6 - - - -MES1->SIMATICFieldPGM6 - - -Not Separated Temporarily Connected Device - - - -FileSvr2 - -FileSvr2 - - - -FileSvr2->WebSvr2 - - -CVE-2017-7668 - - - -FileSvr2->AppSvr1 - - -Insecure Protocol Used - - - -SIMATICFieldPGM6->MES1 - - -IT-OT Cross Connection - - - -ERP1 - -ERP1 - - - -WebSvr1 - -WebSvr1 - - - -ERP1->WebSvr1 - - -CVE-2017-7668 - - - -WebSvr1->AppSvr1 - - -Untrusted Cross Zone Connection - - - -WebSvr1->ERP1 - - -CVE-2013-6822 - - - -PatchSvr1 - -PatchSvr1 - - - -PatchSvr1->JumpSvr1 - - -IT-OT Cross Connection - - - -AnalyticsSvr1 - -AnalyticsSvr1 - - - -AnalyticsSvr1->MES1 - - -IT-OT Cross Connection - - - -AnalyticsSvr1->SIMATICFieldPGM6 - - -Not Separated Temporarily Connected Device - - - -FileSvr1 - -FileSvr1 - - - -FileSvr1->ERP1 - - -CVE-2013-6822 - - - -FileSvr1->WebSvr1 - - -CVE-2017-3167 - - -