diff --git a/README.md b/README.md
index 9b73f06928bd1a5857cea9799dd3df7ae0fc434e..06b2158e432651f483ebd754ee79c5cfcf3f63bb 100644
--- a/README.md
+++ b/README.md
@@ -2,16 +2,13 @@
 [![build status](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci/badges/master/pipeline.svg)](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci/commits/master)
 
 Mocci is an extension for the Open Cloud Computing Interface (OCCI) to enable a model-driven management of monitoring instruments in the cloud, as well as storing their results within an OCCI runtime model.
-Together with other tools from the OCCI ecosystem it provides a testing and execution environment for self-adaptive systems.
+Together with other tools from the OCCI ecosystem it provides a testing and execution environment for self-adaptive systems. 
 
-It consist of the following components:
+In addition to the getting started and the example scenarios discussed in this document, the main components of MOCCI are represented by the:
 1. [Monitoring Extension](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci/tree/master/de.ugoe.cs.rwm.mocci.model)
 2. [Monitoring Connector](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci/tree/master/de.ugoe.cs.rwm.mocci.connector)
 3. [Monitoring Dummy Connector](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci/tree/master/de.ugoe.cs.rwm.mocci.connector.dummy)
-4. [Editor](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci/tree/master/de.ugoe.cs.rwm.mocci.model.edit)
-5. [A self-adaptation example](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci)
 
-The following instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
 
 ## Getting Started
 To getting started with MOCCI we provide a hands on experience in form of a virtualbox image in which everything required is already configured and ready to go.
@@ -21,7 +18,8 @@ Alternatively, to manually setup the single components instructions can be found
 To get a quick start in the OCCI ecosystem and the MOCCI monitoring extension download the following VM image. This image contains a version of OCCI-Studio with the MoDMaCAO and MOCCI plugins pre-installed.
 Moreover, it contains a checked out version of MOCCI and a local version of the MARTserver.
 ```
-Insert Link here!
+https://owncloud.gwdg.de/index.php/s/5u2ddnyyNlzecM5
+password: mocci
 ```
 
 
diff --git a/de.ugoe.cs.rwm.mocci.connector.dummy/README.md b/de.ugoe.cs.rwm.mocci.connector.dummy/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..a778b2c43c000093dc9ca1f866674a7e292cf00a
--- /dev/null
+++ b/de.ugoe.cs.rwm.mocci.connector.dummy/README.md
@@ -0,0 +1,23 @@
+# Monitoring Extension
+This component represents the OCCI monitoring extension, we generated using [OCCI-Studio](https://github.com/occiware/OCCI-Studio).
+The elements introduced in this extension mainly inherit from elements of the enhanced platform extension of [MoDMaCAO](https://github.com/occiware/MoDMaCAO),
+as shown in the Figure below.
+
+![alt text](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci/blob/master/de.ugoe.cs.rwm.mocci.model/monExt.png)
+
+## The Sensor Element
+The sensor element represents a top level element used to easily manage all monitoring instruments it contains.
+The containment relationship to its monitoring instruments is modeled via componentlinks.
+As sensor inherits application, it gains access to attributes reflecting its current state, as well as actions to manage its lifecycle.
+Thus, the monitoring instruments can be deployed by accessing the sensor directly, but also by addressing each instrument separately.
+
+To specify the object a sensor monitors, it can be connected over a monitorableproperty to the corresponding resource.
+The property itself defines two attributes defining the name of the property it monitors, and its results.
+
+## The Monitoring Components
+Each monitoring component (datagatherer, dataprocessor, resultprovider) inherit from component. 
+Thus, each monitoring component gains access to actions to deploy, configure, start, stop, and undeploy it.
+When not using the dummy connector, the execution of these actions trigger the execution of configuration management scripts linked to the individual monitoring instrument.
+The name of the scripts are assigned over user mixins attached to the component, which is located in the roles folder of the MartServer.
+To define where each monitoring instrument is deployed placementlinks are used connecting the instrument to the vm it is deployed on.
+Thus, each instrument can be hosted by different vm.
\ No newline at end of file
diff --git a/de.ugoe.cs.rwm.mocci.connector/README.md b/de.ugoe.cs.rwm.mocci.connector/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..3d9cc4c9e45ca613c4c6486fce526a2b62c3d1a1
--- /dev/null
+++ b/de.ugoe.cs.rwm.mocci.connector/README.md
@@ -0,0 +1,26 @@
+# Monitoring Extension Connector Dummy
+This component represents the connector dummy for the OCCI monitoring extension. The skeleton for this connector is generated using [OCCI-Studio](https://github.com/occiware/OCCI-Studio).
+Hereby, for each element in the monitoring extension a single connector file is present, implementing how to react on different REST requests addressing the corresponding OCCI element.
+This dummy is especially useful for testing purposes. Compared to the actual connector, a link to configuration management scripts is not necessary in order to get monitoring data.
+As soon as a resultprovider is started monitoring results are simulated are passed to the monitorableproperty element of the sensor containing the resultprovider.
+The simulated values are easy to adjust and does not require a recompilation of the connector, as only the resultprovider.properties file within the connector has to be modified.
+
+
+
+## Adjusting the Simulation
+To configure the simulation of monitoring results the following steps have to be performed.
+1. Navigate to ~/martserver-plugins
+2. Open the de.ugoe.cs.rwm.mocci.connecter.dummy.jar with an archive manager.
+3. Doubleclick on the resultprovider.properties file
+4. Adjust the values to your liking
+
+The adjustment of the file itself is best explained with a small example:
+Currently, the file contains the following:
+```
+CPU = None,Low,Medium,High,Critical,5000
+```
+* CPU: Represents the monitorable.property to be adjusted.
+* 5000: Represents the interval in which monitoring.results are written.
+* None-Critical: Represents the simulated monitoring.results. 
+
+
diff --git a/de.ugoe.cs.rwm.mocci.connector/example.png b/de.ugoe.cs.rwm.mocci.connector/example.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f8723e4a3ea4df6670e54fef7b6fca2b61eabc5
Binary files /dev/null and b/de.ugoe.cs.rwm.mocci.connector/example.png differ
diff --git a/de.ugoe.cs.rwm.mocci.model/README.md b/de.ugoe.cs.rwm.mocci.model/README.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..a778b2c43c000093dc9ca1f866674a7e292cf00a 100644
--- a/de.ugoe.cs.rwm.mocci.model/README.md
+++ b/de.ugoe.cs.rwm.mocci.model/README.md
@@ -0,0 +1,23 @@
+# Monitoring Extension
+This component represents the OCCI monitoring extension, we generated using [OCCI-Studio](https://github.com/occiware/OCCI-Studio).
+The elements introduced in this extension mainly inherit from elements of the enhanced platform extension of [MoDMaCAO](https://github.com/occiware/MoDMaCAO),
+as shown in the Figure below.
+
+![alt text](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci/blob/master/de.ugoe.cs.rwm.mocci.model/monExt.png)
+
+## The Sensor Element
+The sensor element represents a top level element used to easily manage all monitoring instruments it contains.
+The containment relationship to its monitoring instruments is modeled via componentlinks.
+As sensor inherits application, it gains access to attributes reflecting its current state, as well as actions to manage its lifecycle.
+Thus, the monitoring instruments can be deployed by accessing the sensor directly, but also by addressing each instrument separately.
+
+To specify the object a sensor monitors, it can be connected over a monitorableproperty to the corresponding resource.
+The property itself defines two attributes defining the name of the property it monitors, and its results.
+
+## The Monitoring Components
+Each monitoring component (datagatherer, dataprocessor, resultprovider) inherit from component. 
+Thus, each monitoring component gains access to actions to deploy, configure, start, stop, and undeploy it.
+When not using the dummy connector, the execution of these actions trigger the execution of configuration management scripts linked to the individual monitoring instrument.
+The name of the scripts are assigned over user mixins attached to the component, which is located in the roles folder of the MartServer.
+To define where each monitoring instrument is deployed placementlinks are used connecting the instrument to the vm it is deployed on.
+Thus, each instrument can be hosted by different vm.
\ No newline at end of file
diff --git a/de.ugoe.cs.rwm.mocci.model/monExt.png b/de.ugoe.cs.rwm.mocci.model/monExt.png
new file mode 100644
index 0000000000000000000000000000000000000000..771cf4004784507d4b01ba714f7a49905daf9f53
Binary files /dev/null and b/de.ugoe.cs.rwm.mocci.model/monExt.png differ
diff --git a/de.ugoe.cs.rwm.mocci.model/monExt.svg b/de.ugoe.cs.rwm.mocci.model/monExt.svg
new file mode 100644
index 0000000000000000000000000000000000000000..4d4e6b510e985ff2047afb26a24260d244e6b363
--- /dev/null
+++ b/de.ugoe.cs.rwm.mocci.model/monExt.svg
@@ -0,0 +1,531 @@
+<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" stroke-dasharray="none" shape-rendering="auto" font-family="'Dialog'" width="599" text-rendering="auto" fill-opacity="1" contentScriptType="text/ecmascript" color-interpolation="auto" color-rendering="auto" preserveAspectRatio="xMidYMid meet" font-size="12" viewBox="0 0 599 357" fill="black" stroke="black" image-rendering="auto" stroke-miterlimit="10" zoomAndPan="magnify" version="1.0" stroke-linecap="square" stroke-linejoin="miter" contentStyleType="text/css" font-style="normal" height="357" stroke-width="1" stroke-dashoffset="0" font-weight="normal" stroke-opacity="1">
+<!--Generated by the Batik Graphics2D SVG Generator-->
+<defs id="genericDefs"/>
+<g>
+<defs id="defs1">
+<linearGradient x1="10" x2="455" y1="10" gradientUnits="userSpaceOnUse" y2="10" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient1" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="white" offset="0%"/>
+<stop stop-opacity="1" stop-color="rgb(214,214,214)" offset="100%"/>
+</linearGradient>
+<linearGradient x1="310" x2="310" y1="28" gradientUnits="userSpaceOnUse" y2="173" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient2" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="25" x2="25" y1="26" gradientUnits="userSpaceOnUse" y2="173" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient3" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="166" x2="166" y1="94" gradientUnits="userSpaceOnUse" y2="135" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient4" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="262" x2="262" y1="227" gradientUnits="userSpaceOnUse" y2="268" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient5" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="10" x2="10" y1="190" gradientUnits="userSpaceOnUse" y2="231" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient6" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="466" x2="587" y1="10" gradientUnits="userSpaceOnUse" y2="10" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient7" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="white" offset="0%"/>
+<stop stop-opacity="1" stop-color="rgb(214,214,214)" offset="100%"/>
+</linearGradient>
+<linearGradient x1="478" x2="478" y1="34" gradientUnits="userSpaceOnUse" y2="75" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient8" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="478" x2="478" y1="130" gradientUnits="userSpaceOnUse" y2="171" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient9" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="130" x2="130" y1="190" gradientUnits="userSpaceOnUse" y2="231" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient10" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="58" x2="58" y1="238" gradientUnits="userSpaceOnUse" y2="279" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient11" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="394" x2="394" y1="216" gradientUnits="userSpaceOnUse" y2="279" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient12" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<linearGradient x1="10" x2="10" y1="298" gradientUnits="userSpaceOnUse" y2="345" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient13" xlink:show="other" spreadMethod="pad">
+<stop stop-opacity="1" stop-color="rgb(187,221,255)" offset="0%"/>
+<stop stop-opacity="1" stop-color="white" offset="100%"/>
+</linearGradient>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
+<path d="M9 9 L458 9 L458 184 L9 184 L9 9 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
+<path d="M9 9 L456 9 L456 182 L9 182 L9 9 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
+<path d="M187 14 L277 14 L277 34 L187 34 L187 14 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
+<path d="M187 14 L281 14 L281 34 L187 34 L187 14 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
+<path d="M309 27 L447 27 L447 176 L309 176 L309 27 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
+<path d="M309 27 L445 27 L445 174 L309 174 L309 27 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
+<path d="M331 32 L427 32 L427 52 L331 52 L331 32 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
+<path d="M314 57 L425 57 L425 87 L314 87 L314 57 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
+<path d="M314 57 L427 57 L427 87 L314 87 L314 57 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
+<path d="M314 57 L428 57 L428 87 L314 87 L314 57 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
+<path d="M314 85 L385 85 L385 103 L314 103 L314 85 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
+<path d="M314 85 L388 85 L388 103 L314 103 L314 85 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
+<path d="M314 101 L399 101 L399 119 L314 119 L314 101 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
+<path d="M314 101 L402 101 L402 119 L314 119 L314 101 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
+<path d="M314 117 L400 117 L400 135 L314 135 L314 117 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
+<path d="M314 117 L402 117 L402 135 L314 135 L314 117 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
+<path d="M314 133 L372 133 L372 151 L314 151 L314 133 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
+<path d="M314 133 L374 133 L374 151 L314 151 L314 133 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
+<path d="M314 149 L371 149 L371 167 L314 167 L314 149 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
+<path d="M314 149 L374 149 L374 167 L314 167 L314 149 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
+<path d="M310 55 L444 55 L444 173 L310 173 L310 55 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
+<path d="M24 25 L161 25 L161 176 L24 176 L24 25 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
+<path d="M24 25 L159 25 L159 174 L24 174 L24 25 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
+<path d="M46 30 L140 30 L140 50 L46 50 L46 30 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
+<path d="M29 55 L144 55 L144 85 L29 85 L29 55 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
+<path d="M29 55 L147 55 L147 85 L29 85 L29 55 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
+<path d="M29 55 L146 55 L146 85 L29 85 L29 55 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
+<path d="M29 83 L100 83 L100 101 L29 101 L29 83 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
+<path d="M29 83 L103 83 L103 101 L29 101 L29 83 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
+<path d="M29 99 L114 99 L114 117 L29 117 L29 99 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
+<path d="M29 99 L117 99 L117 117 L29 117 L29 99 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
+<path d="M29 115 L115 115 L115 133 L29 133 L29 115 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
+<path d="M29 115 L117 115 L117 133 L29 133 L29 115 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
+<path d="M29 131 L87 131 L87 149 L29 149 L29 131 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
+<path d="M29 131 L89 131 L89 149 L29 149 L29 131 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
+<path d="M29 147 L86 147 L86 165 L29 165 L29 147 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
+<path d="M29 147 L89 147 L89 165 L29 165 L29 147 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
+<path d="M25 53 L158 53 L158 173 L25 173 L25 53 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
+<path d="M165 93 L302 93 L302 138 L165 138 L165 93 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
+<path d="M165 93 L300 93 L300 136 L165 136 L165 93 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
+<path d="M171 98 L297 98 L297 118 L171 118 L171 98 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
+<path d="M166 121 L299 121 L299 135 L166 135 L166 121 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
+<path d="M261 226 L386 226 L386 271 L261 271 L261 226 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
+<path d="M261 226 L384 226 L384 269 L261 269 L261 226 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
+<path d="M295 231 L353 231 L353 251 L295 251 L295 231 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
+<path d="M262 254 L383 254 L383 268 L262 268 L262 254 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
+<path d="M9 189 L120 189 L120 234 L9 234 L9 189 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
+<path d="M9 189 L118 189 L118 232 L9 232 L9 189 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
+<path d="M10 194 L121 194 L121 214 L10 214 L10 194 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
+<path d="M10 217 L117 217 L117 231 L10 231 L10 217 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
+<path d="M465 9 L590 9 L590 183 L465 183 L465 9 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
+<path d="M465 9 L588 9 L588 181 L465 181 L465 9 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
+<path d="M499 14 L554 14 L554 34 L499 34 L499 14 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
+<path d="M499 14 L558 14 L558 34 L499 34 L499 14 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
+<path d="M477 33 L578 33 L578 78 L477 78 L477 33 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
+<path d="M477 33 L576 33 L576 76 L477 76 L477 33 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
+<path d="M490 38 L567 38 L567 58 L490 58 L490 38 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
+<path d="M478 61 L575 61 L575 75 L478 75 L478 61 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
+<path d="M477 129 L578 129 L578 174 L477 174 L477 129 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
+<path d="M477 129 L576 129 L576 172 L477 172 L477 129 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
+<path d="M509 134 L547 134 L547 154 L509 154 L509 134 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
+<path d="M478 157 L575 157 L575 171 L478 171 L478 157 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
+<path d="M129 189 L249 189 L249 234 L129 234 L129 189 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
+<path d="M129 189 L247 189 L247 232 L129 232 L129 189 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
+<path d="M130 194 L250 194 L250 214 L130 214 L130 194 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
+<path d="M130 217 L246 217 L246 231 L130 231 L130 217 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
+<path d="M57 237 L179 237 L179 282 L57 282 L57 237 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
+<path d="M57 237 L177 237 L177 280 L57 280 L57 237 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
+<path d="M58 242 L180 242 L180 262 L58 262 L58 242 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
+<path d="M58 265 L176 265 L176 279 L58 279 L58 265 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
+<path d="M393 215 L590 215 L590 282 L393 282 L393 215 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
+<path d="M393 215 L588 215 L588 280 L393 280 L393 215 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
+<path d="M407 220 L577 220 L577 240 L407 240 L407 220 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
+<path d="M398 245 L583 245 L583 263 L398 263 L398 245 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath75">
+<path d="M398 245 L586 245 L586 263 L398 263 L398 245 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath76">
+<path d="M398 261 L562 261 L562 279 L398 279 L398 261 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath77">
+<path d="M398 261 L564 261 L564 279 L398 279 L398 261 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath78">
+<path d="M394 243 L587 243 L587 279 L394 279 L394 243 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath79">
+<path d="M9 297 L241 297 L241 348 L9 348 L9 297 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath80">
+<path d="M9 297 L239 297 L239 346 L9 346 L9 297 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath81">
+<path d="M46 302 L206 302 L206 322 L46 322 L46 302 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath82">
+<path d="M14 327 L233 327 L233 345 L14 345 L14 327 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath83">
+<path d="M14 327 L236 327 L236 345 L14 345 L14 327 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath84">
+<path d="M10 325 L238 325 L238 345 L10 345 L10 325 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath85">
+<path d="M-1 -1 L600 -1 L600 358 L-1 358 L-1 -1 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath86">
+<path d="M156 80 L201 80 L201 96 L156 96 L156 80 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath87">
+<path d="M156 101 L168 101 L168 112 L156 112 L156 101 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath88">
+<path d="M268 79 L315 79 L315 96 L268 96 L268 79 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath89">
+<path d="M301 96 L313 96 L313 107 L301 107 L301 96 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath90">
+<path d="M477 105 L522 105 L522 121 L477 121 L477 105 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath91">
+<path d="M521 73 L532 73 L532 85 L521 85 L521 73 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath92">
+<path d="M62 171 L75 171 L75 184 L62 184 L62 171 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath93">
+<path d="M327 171 L340 171 L340 184 L327 184 L327 171 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath94">
+<path d="M149 171 L162 171 L162 184 L149 184 L149 171 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath95">
+<path d="M117 171 L130 171 L130 184 L117 184 L117 171 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath96">
+<path d="M520 169 L533 169 L533 182 L520 182 L520 169 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath97">
+<path d="M113 277 L124 277 L124 289 L113 289 L113 277 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath98">
+<path d="M369 277 L416 277 L416 293 L369 293 L369 277 Z"/>
+</clipPath>
+<clipPath clipPathUnits="userSpaceOnUse" id="clipPath99">
+<path d="M381 242 L393 242 L393 253 L381 253 L381 242 Z"/>
+</clipPath>
+</defs>
+<g font-size="16" fill="rgb(131,122,133)" font-family="'Ubuntu'" stroke-linejoin="round" stroke="rgb(131,122,133)" font-weight="bold" stroke-width="0" stroke-miterlimit="0">
+<rect x="11" y="11" clip-path="url(#clipPath1)" width="445" rx="0" opacity="0.2549" ry="0" height="171" stroke="none"/>
+<rect x="12" y="12" clip-path="url(#clipPath1)" width="445" rx="0" opacity="0.2549" ry="0" height="171" stroke="none"/>
+<rect x="10" y="10" clip-path="url(#clipPath2)" fill="url(#linearGradient1)" width="445" rx="0" ry="0" height="171" stroke="none"/>
+</g>
+<g stroke-width="1.1" font-size="16" font-family="'Ubuntu'" font-weight="bold" stroke-linecap="butt">
+<rect x="10" y="10" clip-path="url(#clipPath2)" fill="none" width="444" rx="0" ry="0" height="170"/>
+<image x="188" y="16" clip-path="url(#clipPath3)" width="16" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAXUlEQVR42mNgGPKA&#10;EUTExsb+x6Vg8eLFjPgMYIExFi1ahCEZFxdHuQvwAZDr4C5obW0lSXN1dTWqF0CA&#10;n5+fZFcwURoLKC5gYWGhzABGRkbKDGBiYiLfAFiojkAAAOmKD9Q+w1PmAAAAAElF&#10;TkSuQmCC" xlink:type="simple" xlink:actuate="onLoad" height="16" preserveAspectRatio="none" xlink:show="embed"/>
+<text xml:space="preserve" x="207" y="30" clip-path="url(#clipPath4)" stroke="none">platform</text>
+<rect x="311" y="29" clip-path="url(#clipPath5)" fill="rgb(131,122,133)" width="134" rx="4" opacity="0.2549" ry="4" height="145" stroke="none"/>
+<rect x="312" y="30" clip-path="url(#clipPath5)" fill="rgb(131,122,133)" width="134" rx="4" opacity="0.2549" ry="4" height="145" stroke="none"/>
+<rect x="310" y="28" clip-path="url(#clipPath6)" fill="url(#linearGradient2)" width="134" rx="4" ry="4" height="145" stroke="none"/>
+<rect x="310" y="28" clip-path="url(#clipPath6)" fill="none" width="133" rx="4" ry="4" height="144" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="332" y="48" clip-path="url(#clipPath7)" stroke="none">Application</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath8)" preserveAspectRatio="none" height="16" font-style="italic" x="315" y="64" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="334" font-size="13" y="71" clip-path="url(#clipPath9)" font-style="italic" stroke="none" xml:space="preserve">occi.app.state: </text>
+<text x="334" font-size="13" y="85" clip-path="url(#clipPath10)" font-style="italic" stroke="none" xml:space="preserve">Status</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath11)" preserveAspectRatio="none" font-weight="normal" height="16" x="315" y="86" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="334" font-size="13" y="100" clip-path="url(#clipPath12)" stroke="none" font-weight="normal" xml:space="preserve">deploy()</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath13)" preserveAspectRatio="none" font-weight="normal" height="16" x="315" y="102" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="334" font-size="13" y="116" clip-path="url(#clipPath14)" stroke="none" font-weight="normal" xml:space="preserve">undeploy()</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath15)" preserveAspectRatio="none" font-weight="normal" height="16" x="315" y="118" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="334" font-size="13" y="132" clip-path="url(#clipPath16)" stroke="none" font-weight="normal" xml:space="preserve">configure()</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath17)" preserveAspectRatio="none" font-weight="normal" height="16" x="315" y="134" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="334" font-size="13" y="148" clip-path="url(#clipPath18)" stroke="none" font-weight="normal" xml:space="preserve">start()</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath19)" preserveAspectRatio="none" font-weight="normal" height="16" x="315" y="150" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="334" font-size="13" y="164" clip-path="url(#clipPath20)" stroke="none" font-weight="normal" xml:space="preserve">stop()</text>
+<line clip-path="url(#clipPath21)" fill="none" x1="311" x2="443" y1="56" y2="56" stroke="rgb(0,47,0)"/>
+<rect x="26" y="27" clip-path="url(#clipPath22)" fill="rgb(131,122,133)" width="133" rx="4" opacity="0.2549" ry="4" height="147" stroke="none"/>
+<rect x="27" y="28" clip-path="url(#clipPath22)" fill="rgb(131,122,133)" width="133" rx="4" opacity="0.2549" ry="4" height="147" stroke="none"/>
+<rect x="25" y="26" clip-path="url(#clipPath23)" fill="url(#linearGradient3)" width="133" rx="4" ry="4" height="147" stroke="none"/>
+<rect x="25" y="26" clip-path="url(#clipPath23)" fill="none" width="132" rx="4" ry="4" height="146" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="47" y="46" clip-path="url(#clipPath24)" stroke="none">Component</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath25)" preserveAspectRatio="none" height="16" font-style="italic" x="30" y="62" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="49" font-size="13" y="69" clip-path="url(#clipPath26)" font-style="italic" stroke="none" xml:space="preserve">occi.component.</text>
+<text x="49" font-size="13" y="83" clip-path="url(#clipPath27)" font-style="italic" stroke="none" xml:space="preserve">state: Status</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath28)" preserveAspectRatio="none" font-weight="normal" height="16" x="30" y="84" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="49" font-size="13" y="98" clip-path="url(#clipPath29)" stroke="none" font-weight="normal" xml:space="preserve">deploy()</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath30)" preserveAspectRatio="none" font-weight="normal" height="16" x="30" y="100" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="49" font-size="13" y="114" clip-path="url(#clipPath31)" stroke="none" font-weight="normal" xml:space="preserve">undeploy()</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath32)" preserveAspectRatio="none" font-weight="normal" height="16" x="30" y="116" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="49" font-size="13" y="130" clip-path="url(#clipPath33)" stroke="none" font-weight="normal" xml:space="preserve">configure()</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath34)" preserveAspectRatio="none" font-weight="normal" height="16" x="30" y="132" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="49" font-size="13" y="146" clip-path="url(#clipPath35)" stroke="none" font-weight="normal" xml:space="preserve">start()</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath36)" preserveAspectRatio="none" font-weight="normal" height="16" x="30" y="148" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="49" font-size="13" y="162" clip-path="url(#clipPath37)" stroke="none" font-weight="normal" xml:space="preserve">stop()</text>
+<line clip-path="url(#clipPath38)" fill="none" x1="26" x2="157" y1="54" y2="54" stroke="rgb(0,47,0)"/>
+<rect x="167" y="95" clip-path="url(#clipPath39)" fill="rgb(131,122,133)" width="133" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="168" y="96" clip-path="url(#clipPath39)" fill="rgb(131,122,133)" width="133" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="166" y="94" clip-path="url(#clipPath40)" fill="url(#linearGradient4)" width="133" rx="4" ry="4" height="41" stroke="none"/>
+<rect x="166" y="94" clip-path="url(#clipPath40)" fill="none" width="132" rx="4" ry="4" height="40" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="172" y="114" clip-path="url(#clipPath41)" stroke="none">ComponentLink</text>
+<line clip-path="url(#clipPath42)" fill="none" x1="167" x2="298" y1="122" y2="122" stroke="rgb(0,47,0)"/>
+<rect x="263" y="228" clip-path="url(#clipPath43)" fill="rgb(131,122,133)" width="121" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="264" y="229" clip-path="url(#clipPath43)" fill="rgb(131,122,133)" width="121" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="262" y="227" clip-path="url(#clipPath44)" fill="url(#linearGradient5)" width="121" rx="4" ry="4" height="41" stroke="none"/>
+<rect x="262" y="227" clip-path="url(#clipPath44)" fill="none" width="120" rx="4" ry="4" height="40" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="296" y="247" clip-path="url(#clipPath45)" stroke="none">Sensor</text>
+<line clip-path="url(#clipPath46)" fill="none" x1="263" x2="382" y1="255" y2="255" stroke="rgb(0,47,0)"/>
+<rect x="11" y="191" clip-path="url(#clipPath47)" fill="rgb(131,122,133)" width="107" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="12" y="192" clip-path="url(#clipPath47)" fill="rgb(131,122,133)" width="107" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="10" y="190" clip-path="url(#clipPath48)" fill="url(#linearGradient6)" width="107" rx="4" ry="4" height="41" stroke="none"/>
+<rect x="10" y="190" clip-path="url(#clipPath48)" fill="none" width="106" rx="4" ry="4" height="40" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="11" y="210" clip-path="url(#clipPath49)" stroke="none">DataGatherer</text>
+<line clip-path="url(#clipPath50)" fill="none" x1="11" x2="116" y1="218" y2="218" stroke="rgb(0,47,0)"/>
+<rect x="467" y="11" clip-path="url(#clipPath51)" fill="rgb(131,122,133)" width="121" rx="0" opacity="0.2549" ry="0" height="170" stroke="none"/>
+<rect x="468" y="12" clip-path="url(#clipPath51)" fill="rgb(131,122,133)" width="121" rx="0" opacity="0.2549" ry="0" height="170" stroke="none"/>
+<rect x="466" y="10" clip-path="url(#clipPath52)" fill="url(#linearGradient7)" width="121" rx="0" ry="0" height="170" stroke="none"/>
+<rect x="466" y="10" clip-path="url(#clipPath52)" fill="none" width="120" rx="0" ry="0" height="169"/>
+<image x="500" y="16" clip-path="url(#clipPath53)" width="16" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAXUlEQVR42mNgGPKA&#10;EUTExsb+x6Vg8eLFjPgMYIExFi1ahCEZFxdHuQvwAZDr4C5obW0lSXN1dTWqF0CA&#10;n5+fZFcwURoLKC5gYWGhzABGRkbKDGBiYiLfAFiojkAAAOmKD9Q+w1PmAAAAAElF&#10;TkSuQmCC" xlink:type="simple" xlink:actuate="onLoad" height="16" preserveAspectRatio="none" xlink:show="embed"/>
+<text xml:space="preserve" x="519" y="30" clip-path="url(#clipPath54)" stroke="none">core</text>
+<rect x="479" y="35" clip-path="url(#clipPath55)" fill="rgb(131,122,133)" width="97" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="480" y="36" clip-path="url(#clipPath55)" fill="rgb(131,122,133)" width="97" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="478" y="34" clip-path="url(#clipPath56)" fill="url(#linearGradient8)" width="97" rx="4" ry="4" height="41" stroke="none"/>
+<rect x="478" y="34" clip-path="url(#clipPath56)" fill="none" width="96" rx="4" ry="4" height="40" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="491" y="54" clip-path="url(#clipPath57)" stroke="none">Resource</text>
+<line clip-path="url(#clipPath58)" fill="none" x1="479" x2="574" y1="62" y2="62" stroke="rgb(0,47,0)"/>
+<rect x="479" y="131" clip-path="url(#clipPath59)" fill="rgb(131,122,133)" width="97" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="480" y="132" clip-path="url(#clipPath59)" fill="rgb(131,122,133)" width="97" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="478" y="130" clip-path="url(#clipPath60)" fill="url(#linearGradient9)" width="97" rx="4" ry="4" height="41" stroke="none"/>
+<rect x="478" y="130" clip-path="url(#clipPath60)" fill="none" width="96" rx="4" ry="4" height="40" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="510" y="150" clip-path="url(#clipPath61)" stroke="none">Link</text>
+<line clip-path="url(#clipPath62)" fill="none" x1="479" x2="574" y1="158" y2="158" stroke="rgb(0,47,0)"/>
+<rect x="131" y="191" clip-path="url(#clipPath63)" fill="rgb(131,122,133)" width="116" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="132" y="192" clip-path="url(#clipPath63)" fill="rgb(131,122,133)" width="116" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="130" y="190" clip-path="url(#clipPath64)" fill="url(#linearGradient10)" width="116" rx="4" ry="4" height="41" stroke="none"/>
+<rect x="130" y="190" clip-path="url(#clipPath64)" fill="none" width="115" rx="4" ry="4" height="40" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="131" y="210" clip-path="url(#clipPath65)" stroke="none">DataProcessor</text>
+<line clip-path="url(#clipPath66)" fill="none" x1="131" x2="245" y1="218" y2="218" stroke="rgb(0,47,0)"/>
+<rect x="59" y="239" clip-path="url(#clipPath67)" fill="rgb(131,122,133)" width="118" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="60" y="240" clip-path="url(#clipPath67)" fill="rgb(131,122,133)" width="118" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
+<rect x="58" y="238" clip-path="url(#clipPath68)" fill="url(#linearGradient11)" width="118" rx="4" ry="4" height="41" stroke="none"/>
+<rect x="58" y="238" clip-path="url(#clipPath68)" fill="none" width="117" rx="4" ry="4" height="40" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="59" y="258" clip-path="url(#clipPath69)" stroke="none">ResultProvider</text>
+<line clip-path="url(#clipPath70)" fill="none" x1="59" x2="175" y1="266" y2="266" stroke="rgb(0,47,0)"/>
+<rect x="395" y="217" clip-path="url(#clipPath71)" fill="rgb(131,122,133)" width="193" rx="4" opacity="0.2549" ry="4" height="63" stroke="none"/>
+<rect x="396" y="218" clip-path="url(#clipPath71)" fill="rgb(131,122,133)" width="193" rx="4" opacity="0.2549" ry="4" height="63" stroke="none"/>
+<rect x="394" y="216" clip-path="url(#clipPath72)" fill="url(#linearGradient12)" width="193" rx="4" ry="4" height="63" stroke="none"/>
+<rect x="394" y="216" clip-path="url(#clipPath72)" fill="none" width="192" rx="4" ry="4" height="62" stroke="rgb(0,47,0)"/>
+<text xml:space="preserve" x="408" y="236" clip-path="url(#clipPath73)" stroke="none">MonitorableProperty</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath74)" preserveAspectRatio="none" height="16" font-style="italic" x="399" y="246" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="418" font-size="13" y="260" clip-path="url(#clipPath75)" font-style="italic" stroke="none" xml:space="preserve">monitoring.property: String</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath76)" preserveAspectRatio="none" font-weight="normal" height="16" x="399" y="262" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="418" font-size="13" y="276" clip-path="url(#clipPath77)" stroke="none" font-weight="normal" xml:space="preserve">monitoring.result: String</text>
+<line clip-path="url(#clipPath78)" fill="none" x1="395" x2="586" y1="244" y2="244" stroke="rgb(0,47,0)"/>
+<rect x="11" y="299" clip-path="url(#clipPath79)" fill="rgb(131,122,133)" width="228" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
+<rect x="12" y="300" clip-path="url(#clipPath79)" fill="rgb(131,122,133)" width="228" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
+<rect x="10" y="298" clip-path="url(#clipPath80)" fill="url(#linearGradient13)" width="228" rx="4" ry="4" height="47" stroke="none"/>
+<rect x="10" y="298" clip-path="url(#clipPath80)" fill="none" width="227" rx="4" ry="4" height="46" stroke="rgb(0,37,74)"/>
+<text xml:space="preserve" x="47" y="318" clip-path="url(#clipPath81)" stroke="none">OCCIResultProvider</text>
+<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath82)" preserveAspectRatio="none" height="16" x="15" y="328" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
+<text x="34" font-size="13" y="342" clip-path="url(#clipPath83)" stroke="none" xml:space="preserve">result.provider.endpoint: String</text>
+<line clip-path="url(#clipPath84)" fill="none" x1="11" x2="237" y1="326" y2="326" stroke="rgb(0,37,74)"/>
+<line clip-path="url(#clipPath85)" fill="none" x1="166" x2="166" y1="106" y2="106" stroke-width="2.1"/>
+<line clip-path="url(#clipPath85)" fill="none" x1="166" x2="158" y1="106" y2="106" stroke-width="2.1"/>
+<text x="157" font-size="13" y="94" clip-path="url(#clipPath86)" stroke="none" stroke-width="2.1" xml:space="preserve">target</text>
+<line clip-path="url(#clipPath87)" fill="none" x1="165" x2="158" y1="103" y2="106" stroke-width="2.1"/>
+<line clip-path="url(#clipPath87)" fill="none" x1="158" x2="165" y1="106" y2="109" stroke-width="2.1"/>
+<line clip-path="url(#clipPath85)" fill="none" x1="299" x2="310" y1="101" y2="101" stroke-width="2.1"/>
+<text x="269" font-size="13" y="93" clip-path="url(#clipPath88)" stroke="none" stroke-width="2.1" xml:space="preserve">source</text>
+<line clip-path="url(#clipPath89)" fill="none" x1="303" x2="310" y1="104" y2="101" stroke-width="2.1"/>
+<line clip-path="url(#clipPath89)" fill="none" x1="310" x2="303" y1="101" y2="98" stroke-width="2.1"/>
+<line clip-path="url(#clipPath85)" fill="none" x1="526" x2="526" y1="130" y2="75" stroke-width="2.1"/>
+<text x="478" font-size="13" y="119" clip-path="url(#clipPath90)" stroke="none" stroke-width="2.1" xml:space="preserve">target</text>
+<line clip-path="url(#clipPath91)" fill="none" x1="529" x2="526" y1="82" y2="75" stroke-width="2.1"/>
+<line clip-path="url(#clipPath91)" fill="none" x1="526" x2="523" y1="75" y2="82" stroke-width="2.1"/>
+</g>
+<g stroke-linecap="butt" font-size="11" fill="rgb(136,136,136)" font-family="'Ubuntu'" stroke="rgb(136,136,136)" stroke-width="2.1">
+<line clip-path="url(#clipPath85)" fill="none" x1="68" x2="68" y1="190" y2="173"/>
+<polygon fill="white" clip-path="url(#clipPath92)" points=" 68 173 72 181 64 181" stroke="none"/>
+<polygon fill="none" clip-path="url(#clipPath92)" points=" 68 173 72 181 64 181"/>
+</g>
+<g stroke-width="2.1" font-size="13" font-family="'Ubuntu'" font-weight="bold" stroke-linecap="butt">
+<line clip-path="url(#clipPath85)" fill="none" x1="166" x2="166" y1="106" y2="106"/>
+<line clip-path="url(#clipPath85)" fill="none" x1="166" x2="158" y1="106" y2="106"/>
+<text xml:space="preserve" x="157" y="94" clip-path="url(#clipPath86)" stroke="none">target</text>
+<line clip-path="url(#clipPath87)" fill="none" x1="165" x2="158" y1="103" y2="106"/>
+<line clip-path="url(#clipPath87)" fill="none" x1="158" x2="165" y1="106" y2="109"/>
+</g>
+<g stroke-linecap="butt" font-size="11" fill="rgb(136,136,136)" font-family="'Ubuntu'" stroke="rgb(136,136,136)" stroke-width="2.1">
+<line clip-path="url(#clipPath85)" fill="none" x1="333" x2="333" y1="227" y2="173"/>
+<polygon fill="white" clip-path="url(#clipPath93)" points=" 333 173 337 181 329 181" stroke="none"/>
+<polygon fill="none" clip-path="url(#clipPath93)" points=" 333 173 337 181 329 181"/>
+</g>
+<g stroke-width="2.1" font-size="13" font-family="'Ubuntu'" font-weight="bold" stroke-linecap="butt">
+<line clip-path="url(#clipPath85)" fill="none" x1="526" x2="526" y1="130" y2="75"/>
+<text xml:space="preserve" x="478" y="119" clip-path="url(#clipPath90)" stroke="none">target</text>
+<line clip-path="url(#clipPath91)" fill="none" x1="529" x2="526" y1="82" y2="75"/>
+<line clip-path="url(#clipPath91)" fill="none" x1="526" x2="523" y1="75" y2="82"/>
+</g>
+<g stroke-linecap="butt" font-size="11" fill="rgb(136,136,136)" font-family="'Ubuntu'" stroke="rgb(136,136,136)" stroke-width="2.1">
+<line clip-path="url(#clipPath85)" fill="none" x1="155" x2="155" y1="190" y2="173"/>
+<polygon fill="white" clip-path="url(#clipPath94)" points=" 155 173 159 181 151 181" stroke="none"/>
+<polygon fill="none" clip-path="url(#clipPath94)" points=" 155 173 159 181 151 181"/>
+<line clip-path="url(#clipPath85)" fill="none" x1="123" x2="123" y1="238" y2="173"/>
+<polygon fill="white" clip-path="url(#clipPath95)" points=" 123 173 127 181 119 181" stroke="none"/>
+<polygon fill="none" clip-path="url(#clipPath95)" points=" 123 173 127 181 119 181"/>
+<line clip-path="url(#clipPath85)" fill="none" x1="526" x2="526" y1="216" y2="171"/>
+<polygon fill="white" clip-path="url(#clipPath96)" points=" 526 171 530 179 522 179" stroke="none"/>
+<polygon fill="none" clip-path="url(#clipPath96)" points=" 526 171 530 179 522 179"/>
+<line clip-path="url(#clipPath85)" fill="none" x1="118" x2="118" y1="298" y2="279" stroke-dasharray="5,5"/>
+<line clip-path="url(#clipPath97)" fill="none" x1="121" x2="118" y1="286" y2="279"/>
+<line clip-path="url(#clipPath97)" fill="none" x1="118" x2="115" y1="279" y2="286"/>
+</g>
+<g stroke-width="2.1" font-size="13" font-family="'Ubuntu'" font-weight="bold" stroke-linecap="butt">
+<line clip-path="url(#clipPath85)" fill="none" x1="394" x2="383" y1="247" y2="247"/>
+<text xml:space="preserve" x="370" y="291" clip-path="url(#clipPath98)" stroke="none">source</text>
+<line clip-path="url(#clipPath99)" fill="none" x1="390" x2="383" y1="244" y2="247"/>
+<line clip-path="url(#clipPath99)" fill="none" x1="383" x2="390" y1="247" y2="250"/>
+<line clip-path="url(#clipPath85)" fill="none" x1="299" x2="310" y1="101" y2="101"/>
+<text xml:space="preserve" x="269" y="93" clip-path="url(#clipPath88)" stroke="none">source</text>
+<line clip-path="url(#clipPath89)" fill="none" x1="303" x2="310" y1="104" y2="101"/>
+<line clip-path="url(#clipPath89)" fill="none" x1="310" x2="303" y1="101" y2="98"/>
+</g>
+</g>
+</svg>
diff --git a/de.ugoe.cs.rwm.mocci.model/new Extension diagram.svg b/de.ugoe.cs.rwm.mocci.model/new Extension diagram.svg
deleted file mode 100644
index 3317e7641ac8cd63516525ca816cf0075293009c..0000000000000000000000000000000000000000
--- a/de.ugoe.cs.rwm.mocci.model/new Extension diagram.svg	
+++ /dev/null
@@ -1,703 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" stroke-dasharray="none" shape-rendering="auto" font-family="'Dialog'" width="1185" text-rendering="auto" fill-opacity="1" contentScriptType="text/ecmascript" color-interpolation="auto" color-rendering="auto" preserveAspectRatio="xMidYMid meet" font-size="12" viewBox="0 0 1185 417" fill="black" stroke="black" image-rendering="auto" stroke-miterlimit="10" zoomAndPan="magnify" version="1.0" stroke-linecap="square" stroke-linejoin="miter" contentStyleType="text/css" font-style="normal" height="417" stroke-width="1" stroke-dashoffset="0" font-weight="normal" stroke-opacity="1">
-<!--Generated by the Batik Graphics2D SVG Generator-->
-<defs id="genericDefs"/>
-<g>
-<defs id="defs1">
-<linearGradient x1="142" x2="632" y1="10" gradientUnits="userSpaceOnUse" y2="10" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient1" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(214,214,214)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="178" x2="178" y1="46" gradientUnits="userSpaceOnUse" y2="237" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient2" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="394" x2="394" y1="46" gradientUnits="userSpaceOnUse" y2="189" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient3" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="142" x2="142" y1="262" gradientUnits="userSpaceOnUse" y2="405" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient4" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="574" x2="574" y1="262" gradientUnits="userSpaceOnUse" y2="341" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient5" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="10" x2="108" y1="51" gradientUnits="userSpaceOnUse" y2="122" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient6" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(255,250,191)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="10" x2="108" y1="-3" gradientUnits="userSpaceOnUse" y2="68" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient7" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(255,250,191)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="478" x2="478" y1="262" gradientUnits="userSpaceOnUse" y2="303" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient8" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="394" x2="394" y1="262" gradientUnits="userSpaceOnUse" y2="303" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient9" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="802" x2="1108" y1="10" gradientUnits="userSpaceOnUse" y2="10" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient10" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(214,214,214)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="826" x2="826" y1="38" gradientUnits="userSpaceOnUse" y2="101" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient11" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="963" x2="963" y1="64" gradientUnits="userSpaceOnUse" y2="111" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient12" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="10" x2="108" y1="105" gradientUnits="userSpaceOnUse" y2="176" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient13" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(255,250,191)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="804" x2="804" y1="142" gradientUnits="userSpaceOnUse" y2="201" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient14" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,221,255)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="804" x2="961" y1="203" gradientUnits="userSpaceOnUse" y2="329" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient15" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(221,236,202)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="972" x2="1173" y1="204" gradientUnits="userSpaceOnUse" y2="327" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient16" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(221,236,202)" offset="100%"/>
-</linearGradient>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
-<path d="M141 9 L635 9 L635 248 L141 248 L141 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
-<path d="M141 9 L633 9 L633 246 L141 246 L141 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
-<path d="M342 14 L432 14 L432 34 L342 34 L342 14 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
-<path d="M342 14 L436 14 L436 34 L342 34 L342 14 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
-<path d="M177 45 L368 45 L368 240 L177 240 L177 45 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
-<path d="M177 45 L366 45 L366 238 L177 238 L177 45 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
-<path d="M225 50 L321 50 L321 70 L225 70 L225 50 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
-<path d="M182 75 L322 75 L322 93 L182 93 L182 75 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
-<path d="M182 75 L325 75 L325 93 L182 93 L182 75 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
-<path d="M182 91 L331 91 L331 109 L182 109 L182 91 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
-<path d="M182 91 L334 91 L334 109 L182 109 L182 91 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
-<path d="M182 107 L305 107 L305 125 L182 125 L182 107 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
-<path d="M182 107 L308 107 L308 125 L182 125 L182 107 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
-<path d="M182 123 L332 123 L332 141 L182 141 L182 123 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
-<path d="M182 123 L334 123 L334 141 L182 141 L182 123 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
-<path d="M182 139 L361 139 L361 157 L182 157 L182 139 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
-<path d="M182 139 L363 139 L363 157 L182 157 L182 139 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
-<path d="M182 155 L253 155 L253 173 L182 173 L182 155 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
-<path d="M182 155 L256 155 L256 173 L182 173 L182 155 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
-<path d="M182 171 L267 171 L267 189 L182 189 L182 171 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
-<path d="M182 171 L270 171 L270 189 L182 189 L182 171 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
-<path d="M182 187 L268 187 L268 205 L182 205 L182 187 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
-<path d="M182 187 L270 187 L270 205 L182 205 L182 187 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
-<path d="M182 203 L240 203 L240 221 L182 221 L182 203 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
-<path d="M182 203 L242 203 L242 221 L182 221 L182 203 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
-<path d="M182 219 L239 219 L239 237 L182 237 L182 219 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
-<path d="M182 219 L242 219 L242 237 L182 237 L182 219 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
-<path d="M178 73 L365 73 L365 237 L178 237 L178 73 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
-<path d="M393 45 L627 45 L627 192 L393 192 L393 45 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
-<path d="M393 45 L625 45 L625 190 L393 190 L393 45 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
-<path d="M464 50 L558 50 L558 70 L464 70 L464 50 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
-<path d="M398 75 L589 75 L589 93 L398 93 L398 75 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
-<path d="M398 75 L592 75 L592 93 L398 93 L398 75 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
-<path d="M398 91 L620 91 L620 109 L398 109 L398 91 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
-<path d="M398 91 L622 91 L622 109 L398 109 L398 91 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
-<path d="M398 107 L469 107 L469 125 L398 125 L398 107 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
-<path d="M398 107 L472 107 L472 125 L398 125 L398 107 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
-<path d="M398 123 L483 123 L483 141 L398 141 L398 123 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
-<path d="M398 123 L486 123 L486 141 L398 141 L398 123 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
-<path d="M398 139 L484 139 L484 157 L398 157 L398 139 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
-<path d="M398 139 L486 139 L486 157 L398 157 L398 139 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
-<path d="M398 155 L456 155 L456 173 L398 173 L398 155 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
-<path d="M398 155 L458 155 L458 173 L398 173 L398 155 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
-<path d="M398 171 L455 171 L455 189 L398 189 L398 171 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
-<path d="M398 171 L458 171 L458 189 L398 189 L398 171 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
-<path d="M394 73 L624 73 L624 189 L394 189 L394 73 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
-<path d="M141 261 L376 261 L376 408 L141 408 L141 261 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
-<path d="M141 261 L374 261 L374 406 L141 406 L141 261 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
-<path d="M230 266 L288 266 L288 286 L230 286 L230 266 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
-<path d="M146 291 L350 291 L350 309 L146 309 L146 291 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
-<path d="M146 291 L353 291 L353 309 L146 309 L146 291 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
-<path d="M146 307 L337 307 L337 325 L146 325 L146 307 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
-<path d="M146 307 L339 307 L339 325 L146 325 L146 307 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
-<path d="M146 323 L336 323 L336 341 L146 341 L146 323 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
-<path d="M146 323 L339 323 L339 341 L146 341 L146 323 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
-<path d="M146 339 L333 339 L333 357 L146 357 L146 339 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
-<path d="M146 339 L336 339 L336 357 L146 357 L146 339 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
-<path d="M146 355 L347 355 L347 373 L146 373 L146 355 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
-<path d="M146 355 L349 355 L349 373 L146 373 L146 355 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
-<path d="M146 371 L333 371 L333 389 L146 389 L146 371 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
-<path d="M146 371 L335 371 L335 389 L146 389 L146 371 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
-<path d="M146 387 L369 387 L369 405 L146 405 L146 387 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
-<path d="M146 387 L371 387 L371 405 L146 405 L146 387 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
-<path d="M142 289 L373 289 L373 405 L142 405 L142 289 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
-<path d="M573 261 L800 261 L800 344 L573 344 L573 261 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
-<path d="M573 261 L798 261 L798 342 L573 342 L573 261 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
-<path d="M632 266 L743 266 L743 286 L632 286 L632 266 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
-<path d="M578 291 L781 291 L781 309 L578 309 L578 291 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
-<path d="M578 291 L784 291 L784 309 L578 309 L578 291 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
-<path d="M578 307 L793 307 L793 325 L578 325 L578 307 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
-<path d="M578 307 L795 307 L795 325 L578 325 L578 307 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
-<path d="M578 323 L779 323 L779 341 L578 341 L578 323 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
-<path d="M578 323 L781 323 L781 341 L578 341 L578 323 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
-<path d="M574 289 L797 289 L797 341 L574 341 L574 289 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath75">
-<path d="M9 63 L111 63 L111 112 L9 112 L9 63 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath76">
-<path d="M9 63 L109 63 L109 110 L9 110 L9 63 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath77">
-<path d="M20 68 L101 68 L101 88 L20 88 L20 68 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath78">
-<path d="M14 93 L106 93 L106 109 L14 109 L14 93 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath79">
-<path d="M10 91 L108 91 L108 109 L10 109 L10 91 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath80">
-<path d="M9 9 L111 9 L111 58 L9 58 L9 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath81">
-<path d="M9 9 L109 9 L109 56 L9 56 L9 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath82">
-<path d="M30 14 L91 14 L91 34 L30 34 L30 14 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath83">
-<path d="M14 39 L106 39 L106 55 L14 55 L14 39 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath84">
-<path d="M10 37 L108 37 L108 55 L10 55 L10 37 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath85">
-<path d="M477 261 L560 261 L560 306 L477 306 L477 261 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath86">
-<path d="M477 261 L558 261 L558 304 L477 304 L477 261 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath87">
-<path d="M478 266 L561 266 L561 286 L478 286 L478 266 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath88">
-<path d="M478 289 L557 289 L557 303 L478 303 L478 289 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath89">
-<path d="M393 261 L471 261 L471 306 L393 306 L393 261 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath90">
-<path d="M393 261 L469 261 L469 304 L393 304 L393 261 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath91">
-<path d="M394 266 L472 266 L472 286 L394 286 L394 266 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath92">
-<path d="M394 289 L468 289 L468 303 L394 303 L394 289 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath93">
-<path d="M801 9 L1111 9 L1111 122 L801 122 L801 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath94">
-<path d="M801 9 L1109 9 L1109 120 L801 120 L801 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath95">
-<path d="M927 14 L982 14 L982 34 L927 34 L927 14 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath96">
-<path d="M927 14 L986 14 L986 34 L927 34 L927 14 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath97">
-<path d="M825 37 L937 37 L937 104 L825 104 L825 37 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath98">
-<path d="M825 37 L935 37 L935 102 L825 102 L825 37 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath99">
-<path d="M855 42 L907 42 L907 62 L855 62 L855 42 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath100">
-<path d="M830 67 L918 67 L918 85 L830 85 L830 67 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath101">
-<path d="M830 67 L920 67 L920 85 L830 85 L830 67 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath102">
-<path d="M830 83 L930 83 L930 101 L830 101 L830 83 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath103">
-<path d="M830 83 L932 83 L932 101 L830 101 L830 83 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath104">
-<path d="M826 65 L934 65 L934 101 L826 101 L826 65 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath105">
-<path d="M962 63 L1103 63 L1103 114 L962 114 L962 63 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath106">
-<path d="M962 63 L1101 63 L1101 112 L962 112 L962 63 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath107">
-<path d="M995 68 L1072 68 L1072 88 L995 88 L995 68 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath108">
-<path d="M967 93 L1096 93 L1096 111 L967 111 L967 93 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath109">
-<path d="M967 93 L1099 93 L1099 111 L967 111 L967 93 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath110">
-<path d="M963 91 L1100 91 L1100 111 L963 111 L963 91 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath111">
-<path d="M9 117 L111 117 L111 166 L9 166 L9 117 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath112">
-<path d="M9 117 L109 117 L109 164 L9 164 L9 117 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath113">
-<path d="M34 122 L86 122 L86 142 L34 142 L34 122 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath114">
-<path d="M14 147 L106 147 L106 163 L14 163 L14 147 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath115">
-<path d="M10 145 L108 145 L108 163 L10 163 L10 145 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath116">
-<path d="M803 141 L1108 141 L1108 204 L803 204 L803 141 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath117">
-<path d="M803 141 L1106 141 L1106 202 L803 202 L803 141 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath118">
-<path d="M869 146 L1043 146 L1043 166 L869 166 L869 146 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath119">
-<path d="M808 171 L988 171 L988 201 L808 201 L808 171 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath120">
-<path d="M808 171 L991 171 L991 201 L808 201 L808 171 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath121">
-<path d="M804 169 L1105 169 L1105 201 L804 201 L804 169 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath122">
-<path d="M803 217 L964 217 L964 316 L803 316 L803 217 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath123">
-<path d="M803 217 L962 217 L962 314 L803 314 L803 217 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath124">
-<path d="M804 222 L965 222 L965 242 L804 242 L804 222 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath125">
-<path d="M808 247 L902 247 L902 265 L808 265 L808 247 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath126">
-<path d="M808 247 L905 247 L905 265 L808 265 L808 247 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath127">
-<path d="M808 263 L902 263 L902 281 L808 281 L808 263 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath128">
-<path d="M808 263 L904 263 L904 281 L808 281 L808 263 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath129">
-<path d="M808 279 L882 279 L882 297 L808 297 L808 279 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath130">
-<path d="M808 279 L884 279 L884 297 L808 297 L808 279 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath131">
-<path d="M804 245 L961 245 L961 313 L804 313 L804 245 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath132">
-<path d="M971 242 L1176 242 L1176 291 L971 291 L971 242 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath133">
-<path d="M971 242 L1174 242 L1174 289 L971 289 L971 242 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath134">
-<path d="M972 247 L1177 247 L1177 267 L972 267 L972 247 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath135">
-<path d="M1056 272 L1092 272 L1092 288 L1056 288 L1056 272 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath136">
-<path d="M972 270 L1173 270 L1173 288 L972 288 L972 270 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath137">
-<path d="M-1 -1 L1186 -1 L1186 418 L-1 418 L-1 -1 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath138">
-<path d="M932 73 L945 73 L945 86 L932 86 L932 73 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath139">
-<path d="M575 187 L588 187 L588 201 L575 201 L575 187 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath140">
-<path d="M256 235 L269 235 L269 248 L256 248 L256 235 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath141">
-<path d="M520 187 L533 187 L533 200 L520 200 L520 187 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath142">
-<path d="M452 187 L464 187 L464 201 L452 201 L452 187 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath143">
-<path d="M959 260 L971 260 L971 271 L959 271 L959 260 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath144">
-<path d="M1005 109 L1016 109 L1016 121 L1005 121 L1005 109 Z"/>
-</clipPath>
-</defs>
-<g font-size="16" fill="rgb(131,122,133)" font-family="'Ubuntu'" stroke-linejoin="round" stroke="rgb(131,122,133)" font-weight="bold" stroke-width="0" stroke-miterlimit="0">
-<rect x="143" y="11" clip-path="url(#clipPath1)" width="490" rx="0" opacity="0.2549" ry="0" height="235" stroke="none"/>
-<rect x="144" y="12" clip-path="url(#clipPath1)" width="490" rx="0" opacity="0.2549" ry="0" height="235" stroke="none"/>
-<rect x="142" y="10" clip-path="url(#clipPath2)" fill="url(#linearGradient1)" width="490" rx="0" ry="0" height="235" stroke="none"/>
-</g>
-<g stroke-width="1.1" font-size="16" font-family="'Ubuntu'" font-weight="bold" stroke-linecap="butt">
-<rect x="142" y="10" clip-path="url(#clipPath2)" fill="none" width="489" rx="0" ry="0" height="234"/>
-<image x="343" y="16" clip-path="url(#clipPath3)" width="16" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAXUlEQVR42mNgGPKA&#10;EUTExsb+x6Vg8eLFjPgMYIExFi1ahCEZFxdHuQvwAZDr4C5obW0lSXN1dTWqF0CA&#10;n5+fZFcwURoLKC5gYWGhzABGRkbKDGBiYiLfAFiojkAAAOmKD9Q+w1PmAAAAAElF&#10;TkSuQmCC" xlink:type="simple" xlink:actuate="onLoad" height="16" preserveAspectRatio="none" xlink:show="embed"/>
-<text xml:space="preserve" x="362" y="30" clip-path="url(#clipPath4)" stroke="none">platform</text>
-<rect x="179" y="47" clip-path="url(#clipPath5)" fill="rgb(131,122,133)" width="187" rx="4" opacity="0.2549" ry="4" height="191" stroke="none"/>
-<rect x="180" y="48" clip-path="url(#clipPath5)" fill="rgb(131,122,133)" width="187" rx="4" opacity="0.2549" ry="4" height="191" stroke="none"/>
-<rect x="178" y="46" clip-path="url(#clipPath6)" fill="url(#linearGradient2)" width="187" rx="4" ry="4" height="191" stroke="none"/>
-<rect x="178" y="46" clip-path="url(#clipPath6)" fill="none" width="186" rx="4" ry="4" height="190" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="226" y="66" clip-path="url(#clipPath7)" stroke="none">Application</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath8)" preserveAspectRatio="none" height="16" x="183" y="76" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="90" clip-path="url(#clipPath9)" stroke="none" xml:space="preserve">occi.app.name: null</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath10)" preserveAspectRatio="none" height="16" font-style="italic" x="183" y="92" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="106" clip-path="url(#clipPath11)" font-style="italic" stroke="none" xml:space="preserve">occi.app.context: URL</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath12)" preserveAspectRatio="none" height="16" font-style="italic" x="183" y="108" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="122" clip-path="url(#clipPath13)" font-style="italic" stroke="none" xml:space="preserve">occi.app.url: URL</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath14)" preserveAspectRatio="none" height="16" font-style="italic" x="183" y="124" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="138" clip-path="url(#clipPath15)" font-style="italic" stroke="none" xml:space="preserve">occi.app.state: Status</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath16)" preserveAspectRatio="none" font-weight="normal" height="16" font-style="italic" x="183" y="140" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="154" clip-path="url(#clipPath17)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">occi.app.state.message: null</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath18)" preserveAspectRatio="none" font-weight="normal" height="16" x="183" y="156" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="170" clip-path="url(#clipPath19)" stroke="none" font-weight="normal" xml:space="preserve">deploy()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath20)" preserveAspectRatio="none" font-weight="normal" height="16" x="183" y="172" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="186" clip-path="url(#clipPath21)" stroke="none" font-weight="normal" xml:space="preserve">undeploy()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath22)" preserveAspectRatio="none" font-weight="normal" height="16" x="183" y="188" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="202" clip-path="url(#clipPath23)" stroke="none" font-weight="normal" xml:space="preserve">configure()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath24)" preserveAspectRatio="none" font-weight="normal" height="16" x="183" y="204" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="218" clip-path="url(#clipPath25)" stroke="none" font-weight="normal" xml:space="preserve">start()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath26)" preserveAspectRatio="none" font-weight="normal" height="16" x="183" y="220" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="202" font-size="13" y="234" clip-path="url(#clipPath27)" stroke="none" font-weight="normal" xml:space="preserve">stop()</text>
-<line clip-path="url(#clipPath28)" fill="none" x1="179" x2="364" y1="74" y2="74" stroke="rgb(0,47,0)"/>
-<rect x="395" y="47" clip-path="url(#clipPath29)" fill="rgb(131,122,133)" width="230" rx="4" opacity="0.2549" ry="4" height="143" stroke="none"/>
-<rect x="396" y="48" clip-path="url(#clipPath29)" fill="rgb(131,122,133)" width="230" rx="4" opacity="0.2549" ry="4" height="143" stroke="none"/>
-<rect x="394" y="46" clip-path="url(#clipPath30)" fill="url(#linearGradient3)" width="230" rx="4" ry="4" height="143" stroke="none"/>
-<rect x="394" y="46" clip-path="url(#clipPath30)" fill="none" width="229" rx="4" ry="4" height="142" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="465" y="66" clip-path="url(#clipPath31)" stroke="none">Component</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath32)" preserveAspectRatio="none" height="16" font-style="italic" x="399" y="76" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="418" font-size="13" y="90" clip-path="url(#clipPath33)" font-style="italic" stroke="none" xml:space="preserve">occi.component.state: Status</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath34)" preserveAspectRatio="none" font-weight="normal" height="16" font-style="italic" x="399" y="92" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="418" font-size="13" y="106" clip-path="url(#clipPath35)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">occi.component.state.message: null</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath36)" preserveAspectRatio="none" font-weight="normal" height="16" x="399" y="108" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="418" font-size="13" y="122" clip-path="url(#clipPath37)" stroke="none" font-weight="normal" xml:space="preserve">deploy()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath38)" preserveAspectRatio="none" font-weight="normal" height="16" x="399" y="124" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="418" font-size="13" y="138" clip-path="url(#clipPath39)" stroke="none" font-weight="normal" xml:space="preserve">undeploy()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath40)" preserveAspectRatio="none" font-weight="normal" height="16" x="399" y="140" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="418" font-size="13" y="154" clip-path="url(#clipPath41)" stroke="none" font-weight="normal" xml:space="preserve">configure()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath42)" preserveAspectRatio="none" font-weight="normal" height="16" x="399" y="156" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="418" font-size="13" y="170" clip-path="url(#clipPath43)" stroke="none" font-weight="normal" xml:space="preserve">start()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath44)" preserveAspectRatio="none" font-weight="normal" height="16" x="399" y="172" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="418" font-size="13" y="186" clip-path="url(#clipPath45)" stroke="none" font-weight="normal" xml:space="preserve">stop()</text>
-<line clip-path="url(#clipPath46)" fill="none" x1="395" x2="623" y1="74" y2="74" stroke="rgb(0,47,0)"/>
-<rect x="143" y="263" clip-path="url(#clipPath47)" fill="rgb(131,122,133)" width="231" rx="4" opacity="0.2549" ry="4" height="143" stroke="none"/>
-<rect x="144" y="264" clip-path="url(#clipPath47)" fill="rgb(131,122,133)" width="231" rx="4" opacity="0.2549" ry="4" height="143" stroke="none"/>
-<rect x="142" y="262" clip-path="url(#clipPath48)" fill="url(#linearGradient4)" width="231" rx="4" ry="4" height="143" stroke="none"/>
-<rect x="142" y="262" clip-path="url(#clipPath48)" fill="none" width="230" rx="4" ry="4" height="142" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="231" y="282" clip-path="url(#clipPath49)" stroke="none">Sensor</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath50)" preserveAspectRatio="none" font-weight="normal" height="16" x="147" y="292" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="166" font-size="13" y="306" clip-path="url(#clipPath51)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.timebase: DateTime</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath52)" preserveAspectRatio="none" font-weight="normal" height="16" x="147" y="308" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="166" font-size="13" y="322" clip-path="url(#clipPath53)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.timestart: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath54)" preserveAspectRatio="none" font-weight="normal" height="16" x="147" y="324" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="166" font-size="13" y="338" clip-path="url(#clipPath55)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.timestop: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath56)" preserveAspectRatio="none" height="16" x="147" y="340" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="166" font-size="13" y="354" clip-path="url(#clipPath57)" stroke="none" xml:space="preserve">occi.sensor.period: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath58)" preserveAspectRatio="none" font-weight="normal" height="16" x="147" y="356" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="166" font-size="13" y="370" clip-path="url(#clipPath59)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.granularity: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath60)" preserveAspectRatio="none" font-weight="normal" height="16" x="147" y="372" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="166" font-size="13" y="386" clip-path="url(#clipPath61)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.accuracy: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath62)" preserveAspectRatio="none" font-weight="normal" height="16" x="147" y="388" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="166" font-size="13" y="402" clip-path="url(#clipPath63)" stroke="none" font-weight="normal" xml:space="preserve">monitoring.property.mixin: String=</text>
-<line clip-path="url(#clipPath64)" fill="none" x1="143" x2="372" y1="290" y2="290" stroke="rgb(0,47,0)"/>
-<rect x="575" y="263" clip-path="url(#clipPath65)" fill="rgb(131,122,133)" width="223" rx="4" opacity="0.2549" ry="4" height="79" stroke="none"/>
-<rect x="576" y="264" clip-path="url(#clipPath65)" fill="rgb(131,122,133)" width="223" rx="4" opacity="0.2549" ry="4" height="79" stroke="none"/>
-<rect x="574" y="262" clip-path="url(#clipPath66)" fill="url(#linearGradient5)" width="223" rx="4" ry="4" height="79" stroke="none"/>
-<rect x="574" y="262" clip-path="url(#clipPath66)" fill="none" width="222" rx="4" ry="4" height="78" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="633" y="282" clip-path="url(#clipPath67)" stroke="none">DataGatherer</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath68)" preserveAspectRatio="none" height="16" x="579" y="292" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="598" font-size="13" y="306" clip-path="url(#clipPath69)" stroke="none" xml:space="preserve">occi.collector.period: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath70)" preserveAspectRatio="none" font-weight="normal" height="16" x="579" y="308" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="598" font-size="13" y="322" clip-path="url(#clipPath71)" stroke="none" font-weight="normal" xml:space="preserve">occi.collector.granularity: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath72)" preserveAspectRatio="none" font-weight="normal" height="16" x="579" y="324" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="598" font-size="13" y="338" clip-path="url(#clipPath73)" stroke="none" font-weight="normal" xml:space="preserve">occi.collector.accuracy: Second</text>
-<line clip-path="url(#clipPath74)" fill="none" x1="575" x2="796" y1="290" y2="290" stroke="rgb(0,47,0)"/>
-<rect x="11" y="65" clip-path="url(#clipPath75)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="12" y="66" clip-path="url(#clipPath75)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="10" y="64" clip-path="url(#clipPath76)" fill="url(#linearGradient6)" width="98" rx="0" ry="0" height="45" stroke="none"/>
-<rect x="10" y="64" clip-path="url(#clipPath76)" fill="none" width="97" rx="0" ry="0" height="44"/>
-<text xml:space="preserve" x="21" y="84" clip-path="url(#clipPath77)" stroke="none">DateTime</text>
-<text x="15" font-size="13" y="107" clip-path="url(#clipPath78)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">java.lang.String</text>
-<line clip-path="url(#clipPath79)" fill="none" x1="11" x2="107" y1="92" y2="92"/>
-<rect x="11" y="11" clip-path="url(#clipPath80)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="12" y="12" clip-path="url(#clipPath80)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="10" y="10" clip-path="url(#clipPath81)" fill="url(#linearGradient7)" width="98" rx="0" ry="0" height="45" stroke="none"/>
-<rect x="10" y="10" clip-path="url(#clipPath81)" fill="none" width="97" rx="0" ry="0" height="44"/>
-<text xml:space="preserve" x="31" y="30" clip-path="url(#clipPath82)" stroke="none">Second</text>
-<text x="15" font-size="13" y="53" clip-path="url(#clipPath83)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">java.lang.String</text>
-<line clip-path="url(#clipPath84)" fill="none" x1="11" x2="107" y1="38" y2="38"/>
-<rect x="479" y="263" clip-path="url(#clipPath85)" fill="rgb(131,122,133)" width="79" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
-<rect x="480" y="264" clip-path="url(#clipPath85)" fill="rgb(131,122,133)" width="79" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
-<rect x="478" y="262" clip-path="url(#clipPath86)" fill="url(#linearGradient8)" width="79" rx="4" ry="4" height="41" stroke="none"/>
-<rect x="478" y="262" clip-path="url(#clipPath86)" fill="none" width="78" rx="4" ry="4" height="40" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="479" y="282" clip-path="url(#clipPath87)" stroke="none">Processor</text>
-<line clip-path="url(#clipPath88)" fill="none" x1="479" x2="556" y1="290" y2="290" stroke="rgb(0,47,0)"/>
-<rect x="395" y="263" clip-path="url(#clipPath89)" fill="rgb(131,122,133)" width="74" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
-<rect x="396" y="264" clip-path="url(#clipPath89)" fill="rgb(131,122,133)" width="74" rx="4" opacity="0.2549" ry="4" height="41" stroke="none"/>
-<rect x="394" y="262" clip-path="url(#clipPath90)" fill="url(#linearGradient9)" width="74" rx="4" ry="4" height="41" stroke="none"/>
-<rect x="394" y="262" clip-path="url(#clipPath90)" fill="none" width="73" rx="4" ry="4" height="40" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="395" y="282" clip-path="url(#clipPath91)" stroke="none">Publisher</text>
-<line clip-path="url(#clipPath92)" fill="none" x1="395" x2="467" y1="290" y2="290" stroke="rgb(0,47,0)"/>
-<rect x="803" y="11" clip-path="url(#clipPath93)" fill="rgb(131,122,133)" width="306" rx="0" opacity="0.2549" ry="0" height="109" stroke="none"/>
-<rect x="804" y="12" clip-path="url(#clipPath93)" fill="rgb(131,122,133)" width="306" rx="0" opacity="0.2549" ry="0" height="109" stroke="none"/>
-<rect x="802" y="10" clip-path="url(#clipPath94)" fill="url(#linearGradient10)" width="306" rx="0" ry="0" height="109" stroke="none"/>
-<rect x="802" y="10" clip-path="url(#clipPath94)" fill="none" width="305" rx="0" ry="0" height="108"/>
-<image x="928" y="16" clip-path="url(#clipPath95)" width="16" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAXUlEQVR42mNgGPKA&#10;EUTExsb+x6Vg8eLFjPgMYIExFi1ahCEZFxdHuQvwAZDr4C5obW0lSXN1dTWqF0CA&#10;n5+fZFcwURoLKC5gYWGhzABGRkbKDGBiYiLfAFiojkAAAOmKD9Q+w1PmAAAAAElF&#10;TkSuQmCC" xlink:type="simple" xlink:actuate="onLoad" height="16" preserveAspectRatio="none" xlink:show="embed"/>
-<text xml:space="preserve" x="947" y="30" clip-path="url(#clipPath96)" stroke="none">core</text>
-<rect x="827" y="39" clip-path="url(#clipPath97)" fill="rgb(131,122,133)" width="108" rx="4" opacity="0.2549" ry="4" height="63" stroke="none"/>
-<rect x="828" y="40" clip-path="url(#clipPath97)" fill="rgb(131,122,133)" width="108" rx="4" opacity="0.2549" ry="4" height="63" stroke="none"/>
-<rect x="826" y="38" clip-path="url(#clipPath98)" fill="url(#linearGradient11)" width="108" rx="4" ry="4" height="63" stroke="none"/>
-<rect x="826" y="38" clip-path="url(#clipPath98)" fill="none" width="107" rx="4" ry="4" height="62" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="856" y="58" clip-path="url(#clipPath99)" stroke="none">Entity</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath100)" preserveAspectRatio="none" height="16" font-style="italic" x="831" y="68" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="850" font-size="13" y="82" clip-path="url(#clipPath101)" font-style="italic" stroke="none" xml:space="preserve">occi.core.id</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath102)" preserveAspectRatio="none" font-weight="normal" height="16" x="831" y="84" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="850" font-size="13" y="98" clip-path="url(#clipPath103)" stroke="none" font-weight="normal" xml:space="preserve">occi.core.title</text>
-<line clip-path="url(#clipPath104)" fill="none" x1="827" x2="933" y1="66" y2="66" stroke="rgb(0,47,0)"/>
-<rect x="964" y="65" clip-path="url(#clipPath105)" fill="rgb(131,122,133)" width="137" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
-<rect x="965" y="66" clip-path="url(#clipPath105)" fill="rgb(131,122,133)" width="137" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
-<rect x="963" y="64" clip-path="url(#clipPath106)" fill="url(#linearGradient12)" width="137" rx="4" ry="4" height="47" stroke="none"/>
-<rect x="963" y="64" clip-path="url(#clipPath106)" fill="none" width="136" rx="4" ry="4" height="46" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="996" y="84" clip-path="url(#clipPath107)" stroke="none">Resource</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath108)" preserveAspectRatio="none" font-weight="normal" height="16" x="968" y="94" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="987" font-size="13" y="108" clip-path="url(#clipPath109)" stroke="none" font-weight="normal" xml:space="preserve">occi.core.summary</text>
-<line clip-path="url(#clipPath110)" fill="none" x1="964" x2="1099" y1="92" y2="92" stroke="rgb(0,47,0)"/>
-<rect x="11" y="119" clip-path="url(#clipPath111)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="12" y="120" clip-path="url(#clipPath111)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="10" y="118" clip-path="url(#clipPath112)" fill="url(#linearGradient13)" width="98" rx="0" ry="0" height="45" stroke="none"/>
-<rect x="10" y="118" clip-path="url(#clipPath112)" fill="none" width="97" rx="0" ry="0" height="44"/>
-<text xml:space="preserve" x="35" y="138" clip-path="url(#clipPath113)" stroke="none">String</text>
-<text x="15" font-size="13" y="161" clip-path="url(#clipPath114)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">java.lang.String</text>
-<line clip-path="url(#clipPath115)" fill="none" x1="11" x2="107" y1="146" y2="146"/>
-<rect x="805" y="143" clip-path="url(#clipPath116)" fill="rgb(131,122,133)" width="301" rx="4" opacity="0.2549" ry="4" height="59" stroke="none"/>
-<rect x="806" y="144" clip-path="url(#clipPath116)" fill="rgb(131,122,133)" width="301" rx="4" opacity="0.2549" ry="4" height="59" stroke="none"/>
-<rect x="804" y="142" clip-path="url(#clipPath117)" fill="url(#linearGradient14)" width="301" rx="4" ry="4" height="59" stroke="none"/>
-<rect x="804" y="142" clip-path="url(#clipPath117)" fill="none" width="300" rx="4" ry="4" height="58" stroke="rgb(0,37,74)"/>
-<text xml:space="preserve" x="870" y="162" clip-path="url(#clipPath118)" stroke="none">MonitoringProperties</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath119)" preserveAspectRatio="none" height="16" x="809" y="178" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="828" font-size="13" y="185" clip-path="url(#clipPath120)" stroke="none" xml:space="preserve">monitoring.properties: </text>
-<text x="828" font-size="13" y="199" clip-path="url(#clipPath120)" stroke="none" xml:space="preserve">MonitoringPropertyArray</text>
-<line clip-path="url(#clipPath121)" fill="none" x1="805" x2="1104" y1="170" y2="170" stroke="rgb(0,37,74)"/>
-<rect x="805" y="219" clip-path="url(#clipPath122)" fill="rgb(131,122,133)" width="157" rx="0" opacity="0.2549" ry="0" height="95" stroke="none"/>
-<rect x="806" y="220" clip-path="url(#clipPath122)" fill="rgb(131,122,133)" width="157" rx="0" opacity="0.2549" ry="0" height="95" stroke="none"/>
-<rect x="804" y="218" clip-path="url(#clipPath123)" fill="url(#linearGradient15)" width="157" rx="0" ry="0" height="95" stroke="none"/>
-<rect x="804" y="218" clip-path="url(#clipPath123)" fill="none" width="156" rx="0" ry="0" height="94"/>
-<text xml:space="preserve" x="805" y="238" clip-path="url(#clipPath124)" stroke="none">MonitoringProperty</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath125)" preserveAspectRatio="none" font-weight="normal" height="16" x="809" y="248" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAuklEQVR42mNgGP5A&#10;p03nPz55JnySBw4c+I9Mk2xAzrEchpBfIWAaF2DGJRF8LPi/4y1HhstulxlAtHCb&#10;cMP1udcbCRoAcu4ZtTMNMM25v3IZNqttZtDdpcvwxu1Nw6raVQ0LFiyAG8SILcBA&#10;zoZphoHJbJPBhqxhWwPmX6m6wogRBiDBKVZTwIpAikGa0DWD5GGaMVyAHgYgTSCX&#10;wOi1Vmsx1DMSSgMg74BsRraV6GiEeQdE0ywlDjwAAAr0XyAC3D6HAAAAAElFTkSu&#10;QmCC" xlink:actuate="onLoad"/>
-<text x="828" font-size="13" y="262" clip-path="url(#clipPath126)" stroke="none" font-weight="normal" xml:space="preserve">name: String</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath127)" preserveAspectRatio="none" font-weight="normal" height="16" x="809" y="264" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAuklEQVR42mNgGP5A&#10;p03nPz55JnySBw4c+I9Mk2xAzrEchpBfIWAaF2DGJRF8LPi/4y1HhstulxlAtHCb&#10;cMP1udcbCRoAcu4ZtTMNMM25v3IZNqttZtDdpcvwxu1Nw6raVQ0LFiyAG8SILcBA&#10;zoZphoHJbJPBhqxhWwPmX6m6wogRBiDBKVZTwIpAikGa0DWD5GGaMVyAHgYgTSCX&#10;wOi1Vmsx1DMSSgMg74BsRraV6GiEeQdE0ywlDjwAAAr0XyAC3D6HAAAAAElFTkSu&#10;QmCC" xlink:actuate="onLoad"/>
-<text x="828" font-size="13" y="278" clip-path="url(#clipPath128)" stroke="none" font-weight="normal" xml:space="preserve">value: String</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath129)" preserveAspectRatio="none" font-weight="normal" height="16" x="809" y="280" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAuklEQVR42mNgGP5A&#10;p03nPz55JnySBw4c+I9Mk2xAzrEchpBfIWAaF2DGJRF8LPi/4y1HhstulxlAtHCb&#10;cMP1udcbCRoAcu4ZtTMNMM25v3IZNqttZtDdpcvwxu1Nw6raVQ0LFiyAG8SILcBA&#10;zoZphoHJbJPBhqxhWwPmX6m6wogRBiDBKVZTwIpAikGa0DWD5GGaMVyAHgYgTSCX&#10;wOi1Vmsx1DMSSgMg74BsRraV6GiEeQdE0ywlDjwAAAr0XyAC3D6HAAAAAElFTkSu&#10;QmCC" xlink:actuate="onLoad"/>
-<text x="828" font-size="13" y="294" clip-path="url(#clipPath130)" stroke="none" font-weight="normal" xml:space="preserve">Id: String</text>
-<line clip-path="url(#clipPath131)" fill="none" x1="805" x2="960" y1="246" y2="246"/>
-<rect x="973" y="244" clip-path="url(#clipPath132)" fill="rgb(131,122,133)" width="201" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="974" y="245" clip-path="url(#clipPath132)" fill="rgb(131,122,133)" width="201" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="972" y="243" clip-path="url(#clipPath133)" fill="url(#linearGradient16)" width="201" rx="0" ry="0" height="45" stroke="none"/>
-<rect x="972" y="243" clip-path="url(#clipPath133)" fill="none" width="200" rx="0" ry="0" height="44"/>
-<text xml:space="preserve" x="973" y="263" clip-path="url(#clipPath134)" stroke="none">MonitoringPropertyArray</text>
-<text x="1057" font-size="13" y="286" clip-path="url(#clipPath135)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">Array</text>
-<line clip-path="url(#clipPath136)" fill="none" x1="973" x2="1172" y1="271" y2="271"/>
-</g>
-<g stroke-linecap="butt" font-size="11" fill="rgb(136,136,136)" font-family="'Ubuntu'" stroke="rgb(136,136,136)" stroke-width="2.1">
-<line clip-path="url(#clipPath137)" fill="none" x1="963" x2="934" y1="79" y2="79"/>
-<polygon fill="white" clip-path="url(#clipPath138)" points=" 934 79 942 75 942 83" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath138)" points=" 934 79 942 75 942 83"/>
-<line clip-path="url(#clipPath137)" fill="none" x1="647" x2="577" y1="262" y2="189"/>
-<polygon fill="white" clip-path="url(#clipPath139)" points=" 577 189 585 192 580 198" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath139)" points=" 577 189 585 192 580 198"/>
-<line clip-path="url(#clipPath137)" fill="none" x1="262" x2="262" y1="262" y2="237"/>
-<polygon fill="white" clip-path="url(#clipPath140)" points=" 262 237 266 245 258 245" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath140)" points=" 262 237 266 245 258 245"/>
-<line clip-path="url(#clipPath137)" fill="none" x1="526" x2="526" y1="262" y2="189"/>
-<polygon fill="white" clip-path="url(#clipPath141)" points=" 526 189 530 197 522 197" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath141)" points=" 526 189 530 197 522 197"/>
-<line clip-path="url(#clipPath137)" fill="none" x1="437" x2="460" y1="262" y2="189"/>
-<polygon fill="white" clip-path="url(#clipPath142)" points=" 460 189 461 198 454 195" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath142)" points=" 460 189 461 198 454 195"/>
-<line clip-path="url(#clipPath137)" fill="none" x1="963" x2="934" y1="79" y2="79"/>
-<polygon fill="white" clip-path="url(#clipPath138)" points=" 934 79 942 75 942 83" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath138)" points=" 934 79 942 75 942 83"/>
-<line clip-path="url(#clipPath137)" fill="none" x1="972" x2="961" y1="265" y2="265"/>
-<line clip-path="url(#clipPath143)" fill="none" x1="968" x2="961" y1="262" y2="265"/>
-<line clip-path="url(#clipPath143)" fill="none" x1="961" x2="968" y1="265" y2="268"/>
-<line clip-path="url(#clipPath137)" fill="none" x1="1005" x2="1011" y1="142" y2="111" stroke-dasharray="5,5"/>
-<line clip-path="url(#clipPath144)" fill="none" x1="1013" x2="1011" y1="118" y2="111"/>
-<line clip-path="url(#clipPath144)" fill="none" x1="1011" x2="1007" y1="111" y2="117"/>
-</g>
-</g>
-</svg>
diff --git a/de.ugoe.cs.rwm.mocci.model/new Extension diagram2.svg b/de.ugoe.cs.rwm.mocci.model/new Extension diagram2.svg
deleted file mode 100644
index fc6f2368bb088b05ef0cb8d398ed04ac54224971..0000000000000000000000000000000000000000
--- a/de.ugoe.cs.rwm.mocci.model/new Extension diagram2.svg	
+++ /dev/null
@@ -1,698 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" stroke-dasharray="none" shape-rendering="auto" font-family="'Dialog'" width="1276" text-rendering="auto" fill-opacity="1" contentScriptType="text/ecmascript" color-interpolation="auto" color-rendering="auto" preserveAspectRatio="xMidYMid meet" font-size="12" viewBox="0 0 1276 629" fill="black" stroke="black" image-rendering="auto" stroke-miterlimit="10" zoomAndPan="magnify" version="1.0" stroke-linecap="square" stroke-linejoin="miter" contentStyleType="text/css" font-style="normal" height="629" stroke-width="1" stroke-dashoffset="0" font-weight="normal" stroke-opacity="1">
-<!--Generated by the Batik Graphics2D SVG Generator-->
-<defs id="genericDefs"/>
-<g>
-<defs id="defs1">
-<linearGradient x1="298" x2="788" y1="82" gradientUnits="userSpaceOnUse" y2="82" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient1" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(214,214,214)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="334" x2="334" y1="118" gradientUnits="userSpaceOnUse" y2="309" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient2" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="550" x2="550" y1="118" gradientUnits="userSpaceOnUse" y2="261" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient3" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="298" x2="298" y1="334" gradientUnits="userSpaceOnUse" y2="461" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient4" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="730" x2="730" y1="334" gradientUnits="userSpaceOnUse" y2="413" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient5" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="694" x2="694" y1="380" gradientUnits="userSpaceOnUse" y2="427" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient6" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="550" x2="550" y1="334" gradientUnits="userSpaceOnUse" y2="381" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient7" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="958" x2="1264" y1="82" gradientUnits="userSpaceOnUse" y2="82" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient8" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(214,214,214)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="982" x2="982" y1="110" gradientUnits="userSpaceOnUse" y2="173" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient9" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="1119" x2="1119" y1="136" gradientUnits="userSpaceOnUse" y2="183" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient10" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="154" x2="154" y1="526" gradientUnits="userSpaceOnUse" y2="589" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient11" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,242,196)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="526" x2="526" y1="538" gradientUnits="userSpaceOnUse" y2="617" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient12" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="rgb(187,221,255)" offset="0%"/>
-<stop stop-opacity="1" stop-color="white" offset="100%"/>
-</linearGradient>
-<linearGradient x1="10" x2="108" y1="69" gradientUnits="userSpaceOnUse" y2="140" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient13" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(255,250,191)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="10" x2="108" y1="-3" gradientUnits="userSpaceOnUse" y2="68" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient14" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(255,250,191)" offset="100%"/>
-</linearGradient>
-<linearGradient x1="166" x2="264" y1="-3" gradientUnits="userSpaceOnUse" y2="68" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient15" xlink:show="other" spreadMethod="pad">
-<stop stop-opacity="1" stop-color="white" offset="0%"/>
-<stop stop-opacity="1" stop-color="rgb(255,250,191)" offset="100%"/>
-</linearGradient>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
-<path d="M297 81 L791 81 L791 320 L297 320 L297 81 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
-<path d="M297 81 L789 81 L789 318 L297 318 L297 81 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
-<path d="M498 86 L588 86 L588 106 L498 106 L498 86 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
-<path d="M498 86 L592 86 L592 106 L498 106 L498 86 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
-<path d="M333 117 L524 117 L524 312 L333 312 L333 117 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
-<path d="M333 117 L522 117 L522 310 L333 310 L333 117 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
-<path d="M381 122 L477 122 L477 142 L381 142 L381 122 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
-<path d="M338 147 L478 147 L478 165 L338 165 L338 147 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
-<path d="M338 147 L481 147 L481 165 L338 165 L338 147 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
-<path d="M338 163 L487 163 L487 181 L338 181 L338 163 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
-<path d="M338 163 L490 163 L490 181 L338 181 L338 163 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
-<path d="M338 179 L461 179 L461 197 L338 197 L338 179 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
-<path d="M338 179 L464 179 L464 197 L338 197 L338 179 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
-<path d="M338 195 L488 195 L488 213 L338 213 L338 195 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
-<path d="M338 195 L490 195 L490 213 L338 213 L338 195 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
-<path d="M338 211 L517 211 L517 229 L338 229 L338 211 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
-<path d="M338 211 L519 211 L519 229 L338 229 L338 211 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
-<path d="M338 227 L409 227 L409 245 L338 245 L338 227 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
-<path d="M338 227 L412 227 L412 245 L338 245 L338 227 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
-<path d="M338 243 L423 243 L423 261 L338 261 L338 243 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
-<path d="M338 243 L426 243 L426 261 L338 261 L338 243 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
-<path d="M338 259 L424 259 L424 277 L338 277 L338 259 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
-<path d="M338 259 L426 259 L426 277 L338 277 L338 259 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
-<path d="M338 275 L396 275 L396 293 L338 293 L338 275 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
-<path d="M338 275 L398 275 L398 293 L338 293 L338 275 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
-<path d="M338 291 L395 291 L395 309 L338 309 L338 291 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
-<path d="M338 291 L398 291 L398 309 L338 309 L338 291 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
-<path d="M334 145 L521 145 L521 309 L334 309 L334 145 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
-<path d="M549 117 L783 117 L783 264 L549 264 L549 117 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
-<path d="M549 117 L781 117 L781 262 L549 262 L549 117 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
-<path d="M620 122 L714 122 L714 142 L620 142 L620 122 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
-<path d="M554 147 L745 147 L745 165 L554 165 L554 147 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
-<path d="M554 147 L748 147 L748 165 L554 165 L554 147 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
-<path d="M554 163 L776 163 L776 181 L554 181 L554 163 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
-<path d="M554 163 L778 163 L778 181 L554 181 L554 163 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
-<path d="M554 179 L625 179 L625 197 L554 197 L554 179 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
-<path d="M554 179 L628 179 L628 197 L554 197 L554 179 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
-<path d="M554 195 L639 195 L639 213 L554 213 L554 195 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
-<path d="M554 195 L642 195 L642 213 L554 213 L554 195 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
-<path d="M554 211 L640 211 L640 229 L554 229 L554 211 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
-<path d="M554 211 L642 211 L642 229 L554 229 L554 211 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
-<path d="M554 227 L612 227 L612 245 L554 245 L554 227 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
-<path d="M554 227 L614 227 L614 245 L554 245 L554 227 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
-<path d="M554 243 L611 243 L611 261 L554 261 L554 243 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
-<path d="M554 243 L614 243 L614 261 L554 261 L554 243 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
-<path d="M550 145 L780 145 L780 261 L550 261 L550 145 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
-<path d="M297 333 L513 333 L513 464 L297 464 L297 333 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
-<path d="M297 333 L511 333 L511 462 L297 462 L297 333 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
-<path d="M377 338 L435 338 L435 358 L377 358 L377 338 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
-<path d="M302 363 L506 363 L506 381 L302 381 L302 363 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
-<path d="M302 363 L509 363 L509 381 L302 381 L302 363 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
-<path d="M302 379 L493 379 L493 397 L302 397 L302 379 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
-<path d="M302 379 L495 379 L495 397 L302 397 L302 379 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
-<path d="M302 395 L492 395 L492 413 L302 413 L302 395 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
-<path d="M302 395 L495 395 L495 413 L302 413 L302 395 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
-<path d="M302 411 L489 411 L489 429 L302 429 L302 411 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
-<path d="M302 411 L492 411 L492 429 L302 429 L302 411 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
-<path d="M302 427 L503 427 L503 445 L302 445 L302 427 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
-<path d="M302 427 L505 427 L505 445 L302 445 L302 427 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
-<path d="M302 443 L489 443 L489 461 L302 461 L302 443 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
-<path d="M302 443 L491 443 L491 461 L302 461 L302 443 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
-<path d="M298 361 L510 361 L510 461 L298 461 L298 361 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
-<path d="M729 333 L956 333 L956 416 L729 416 L729 333 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
-<path d="M729 333 L954 333 L954 414 L729 414 L729 333 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
-<path d="M788 338 L899 338 L899 358 L788 358 L788 338 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
-<path d="M734 363 L937 363 L937 381 L734 381 L734 363 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
-<path d="M734 363 L940 363 L940 381 L734 381 L734 363 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
-<path d="M734 379 L949 379 L949 397 L734 397 L734 379 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
-<path d="M734 379 L951 379 L951 397 L734 397 L734 379 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
-<path d="M734 395 L935 395 L935 413 L734 413 L734 395 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
-<path d="M734 395 L937 395 L937 413 L734 413 L734 395 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
-<path d="M730 361 L953 361 L953 413 L730 413 L730 361 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
-<path d="M693 379 L867 379 L867 430 L693 430 L693 379 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
-<path d="M693 379 L865 379 L865 428 L693 428 L693 379 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath75">
-<path d="M739 384 L822 384 L822 404 L739 404 L739 384 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath76">
-<path d="M698 409 L860 409 L860 427 L698 427 L698 409 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath77">
-<path d="M698 409 L862 409 L862 427 L698 427 L698 409 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath78">
-<path d="M694 407 L864 407 L864 427 L694 427 L694 407 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath79">
-<path d="M549 333 L746 333 L746 384 L549 384 L549 333 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath80">
-<path d="M549 333 L744 333 L744 382 L549 382 L549 333 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath81">
-<path d="M609 338 L687 338 L687 358 L609 358 L609 338 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath82">
-<path d="M554 363 L739 363 L739 381 L554 381 L554 363 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath83">
-<path d="M554 363 L742 363 L742 381 L554 381 L554 363 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath84">
-<path d="M550 361 L743 361 L743 381 L550 381 L550 361 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath85">
-<path d="M957 81 L1267 81 L1267 194 L957 194 L957 81 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath86">
-<path d="M957 81 L1265 81 L1265 192 L957 192 L957 81 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath87">
-<path d="M1083 86 L1138 86 L1138 106 L1083 106 L1083 86 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath88">
-<path d="M1083 86 L1142 86 L1142 106 L1083 106 L1083 86 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath89">
-<path d="M981 109 L1093 109 L1093 176 L981 176 L981 109 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath90">
-<path d="M981 109 L1091 109 L1091 174 L981 174 L981 109 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath91">
-<path d="M1011 114 L1063 114 L1063 134 L1011 134 L1011 114 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath92">
-<path d="M986 139 L1074 139 L1074 157 L986 157 L986 139 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath93">
-<path d="M986 139 L1076 139 L1076 157 L986 157 L986 139 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath94">
-<path d="M986 155 L1086 155 L1086 173 L986 173 L986 155 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath95">
-<path d="M986 155 L1088 155 L1088 173 L986 173 L986 155 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath96">
-<path d="M982 137 L1090 137 L1090 173 L982 173 L982 137 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath97">
-<path d="M1118 135 L1259 135 L1259 186 L1118 186 L1118 135 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath98">
-<path d="M1118 135 L1257 135 L1257 184 L1118 184 L1118 135 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath99">
-<path d="M1151 140 L1228 140 L1228 160 L1151 160 L1151 140 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath100">
-<path d="M1123 165 L1252 165 L1252 183 L1123 183 L1123 165 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath101">
-<path d="M1123 165 L1255 165 L1255 183 L1123 183 L1123 165 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath102">
-<path d="M1119 163 L1256 163 L1256 183 L1119 183 L1119 163 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath103">
-<path d="M153 525 L386 525 L386 592 L153 592 L153 525 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath104">
-<path d="M153 525 L384 525 L384 590 L153 590 L153 525 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath105">
-<path d="M190 530 L351 530 L351 550 L190 550 L190 530 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath106">
-<path d="M158 555 L379 555 L379 573 L158 573 L158 555 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath107">
-<path d="M158 555 L382 555 L382 573 L158 573 L158 555 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath108">
-<path d="M158 571 L375 571 L375 589 L158 589 L158 571 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath109">
-<path d="M158 571 L377 571 L377 589 L158 589 L158 571 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath110">
-<path d="M154 553 L383 553 L383 589 L154 589 L154 553 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath111">
-<path d="M525 537 L778 537 L778 620 L525 620 L525 537 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath112">
-<path d="M525 537 L776 537 L776 618 L525 618 L525 537 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath113">
-<path d="M595 542 L710 542 L710 562 L595 562 L595 542 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath114">
-<path d="M530 567 L751 567 L751 585 L530 585 L530 567 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath115">
-<path d="M530 567 L754 567 L754 585 L530 585 L530 567 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath116">
-<path d="M530 583 L726 583 L726 601 L530 601 L530 583 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath117">
-<path d="M530 583 L728 583 L728 601 L530 601 L530 583 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath118">
-<path d="M530 599 L771 599 L771 617 L530 617 L530 599 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath119">
-<path d="M530 599 L774 599 L774 617 L530 617 L530 599 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath120">
-<path d="M526 565 L775 565 L775 617 L526 617 L526 565 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath121">
-<path d="M9 81 L111 81 L111 130 L9 130 L9 81 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath122">
-<path d="M9 81 L109 81 L109 128 L9 128 L9 81 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath123">
-<path d="M20 86 L101 86 L101 106 L20 106 L20 86 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath124">
-<path d="M14 111 L106 111 L106 127 L14 127 L14 111 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath125">
-<path d="M10 109 L108 109 L108 127 L10 127 L10 109 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath126">
-<path d="M9 9 L111 9 L111 58 L9 58 L9 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath127">
-<path d="M9 9 L109 9 L109 56 L9 56 L9 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath128">
-<path d="M30 14 L91 14 L91 34 L30 34 L30 14 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath129">
-<path d="M14 39 L106 39 L106 55 L14 55 L14 39 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath130">
-<path d="M10 37 L108 37 L108 55 L10 55 L10 37 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath131">
-<path d="M165 9 L267 9 L267 58 L165 58 L165 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath132">
-<path d="M165 9 L265 9 L265 56 L165 56 L165 9 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath133">
-<path d="M190 14 L242 14 L242 34 L190 34 L190 14 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath134">
-<path d="M170 39 L262 39 L262 55 L170 55 L170 39 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath135">
-<path d="M166 37 L264 37 L264 55 L166 55 L166 37 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath136">
-<path d="M-1 -1 L1277 -1 L1277 630 L-1 630 L-1 -1 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath137">
-<path d="M1088 145 L1101 145 L1101 158 L1088 158 L1088 145 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath138">
-<path d="M731 259 L744 259 L744 273 L731 273 L731 259 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath139">
-<path d="M408 307 L421 307 L421 320 L408 320 L408 307 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath140">
-<path d="M680 259 L693 259 L693 273 L680 273 L680 259 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath141">
-<path d="M624 259 L636 259 L636 273 L624 273 L624 259 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath142">
-<path d="M642 379 L653 379 L653 391 L642 391 L642 379 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath143">
-<path d="M318 475 L363 475 L363 491 L318 491 L318 475 Z"/>
-</clipPath>
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath144">
-<path d="M395 459 L408 459 L408 470 L395 470 L395 459 Z"/>
-</clipPath>
-</defs>
-<g font-size="16" fill="rgb(131,122,133)" font-family="'Ubuntu'" stroke-linejoin="round" stroke="rgb(131,122,133)" font-weight="bold" stroke-width="0" stroke-miterlimit="0">
-<rect x="299" y="83" clip-path="url(#clipPath1)" width="490" rx="0" opacity="0.2549" ry="0" height="235" stroke="none"/>
-<rect x="300" y="84" clip-path="url(#clipPath1)" width="490" rx="0" opacity="0.2549" ry="0" height="235" stroke="none"/>
-<rect x="298" y="82" clip-path="url(#clipPath2)" fill="url(#linearGradient1)" width="490" rx="0" ry="0" height="235" stroke="none"/>
-</g>
-<g stroke-width="1.1" font-size="16" font-family="'Ubuntu'" font-weight="bold" stroke-linecap="butt">
-<rect x="298" y="82" clip-path="url(#clipPath2)" fill="none" width="489" rx="0" ry="0" height="234"/>
-<image x="499" y="88" clip-path="url(#clipPath3)" width="16" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAXUlEQVR42mNgGPKA&#10;EUTExsb+x6Vg8eLFjPgMYIExFi1ahCEZFxdHuQvwAZDr4C5obW0lSXN1dTWqF0CA&#10;n5+fZFcwURoLKC5gYWGhzABGRkbKDGBiYiLfAFiojkAAAOmKD9Q+w1PmAAAAAElF&#10;TkSuQmCC" xlink:type="simple" xlink:actuate="onLoad" height="16" preserveAspectRatio="none" xlink:show="embed"/>
-<text xml:space="preserve" x="518" y="102" clip-path="url(#clipPath4)" stroke="none">platform</text>
-<rect x="335" y="119" clip-path="url(#clipPath5)" fill="rgb(131,122,133)" width="187" rx="4" opacity="0.2549" ry="4" height="191" stroke="none"/>
-<rect x="336" y="120" clip-path="url(#clipPath5)" fill="rgb(131,122,133)" width="187" rx="4" opacity="0.2549" ry="4" height="191" stroke="none"/>
-<rect x="334" y="118" clip-path="url(#clipPath6)" fill="url(#linearGradient2)" width="187" rx="4" ry="4" height="191" stroke="none"/>
-<rect x="334" y="118" clip-path="url(#clipPath6)" fill="none" width="186" rx="4" ry="4" height="190" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="382" y="138" clip-path="url(#clipPath7)" stroke="none">Application</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath8)" preserveAspectRatio="none" height="16" x="339" y="148" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="162" clip-path="url(#clipPath9)" stroke="none" xml:space="preserve">occi.app.name: null</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath10)" preserveAspectRatio="none" height="16" font-style="italic" x="339" y="164" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="178" clip-path="url(#clipPath11)" font-style="italic" stroke="none" xml:space="preserve">occi.app.context: URL</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath12)" preserveAspectRatio="none" height="16" font-style="italic" x="339" y="180" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="194" clip-path="url(#clipPath13)" font-style="italic" stroke="none" xml:space="preserve">occi.app.url: URL</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath14)" preserveAspectRatio="none" height="16" font-style="italic" x="339" y="196" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="210" clip-path="url(#clipPath15)" font-style="italic" stroke="none" xml:space="preserve">occi.app.state: Status</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath16)" preserveAspectRatio="none" font-weight="normal" height="16" font-style="italic" x="339" y="212" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="226" clip-path="url(#clipPath17)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">occi.app.state.message: null</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath18)" preserveAspectRatio="none" font-weight="normal" height="16" x="339" y="228" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="242" clip-path="url(#clipPath19)" stroke="none" font-weight="normal" xml:space="preserve">deploy()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath20)" preserveAspectRatio="none" font-weight="normal" height="16" x="339" y="244" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="258" clip-path="url(#clipPath21)" stroke="none" font-weight="normal" xml:space="preserve">undeploy()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath22)" preserveAspectRatio="none" font-weight="normal" height="16" x="339" y="260" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="274" clip-path="url(#clipPath23)" stroke="none" font-weight="normal" xml:space="preserve">configure()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath24)" preserveAspectRatio="none" font-weight="normal" height="16" x="339" y="276" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="290" clip-path="url(#clipPath25)" stroke="none" font-weight="normal" xml:space="preserve">start()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath26)" preserveAspectRatio="none" font-weight="normal" height="16" x="339" y="292" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="358" font-size="13" y="306" clip-path="url(#clipPath27)" stroke="none" font-weight="normal" xml:space="preserve">stop()</text>
-<line clip-path="url(#clipPath28)" fill="none" x1="335" x2="520" y1="146" y2="146" stroke="rgb(0,47,0)"/>
-<rect x="551" y="119" clip-path="url(#clipPath29)" fill="rgb(131,122,133)" width="230" rx="4" opacity="0.2549" ry="4" height="143" stroke="none"/>
-<rect x="552" y="120" clip-path="url(#clipPath29)" fill="rgb(131,122,133)" width="230" rx="4" opacity="0.2549" ry="4" height="143" stroke="none"/>
-<rect x="550" y="118" clip-path="url(#clipPath30)" fill="url(#linearGradient3)" width="230" rx="4" ry="4" height="143" stroke="none"/>
-<rect x="550" y="118" clip-path="url(#clipPath30)" fill="none" width="229" rx="4" ry="4" height="142" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="621" y="138" clip-path="url(#clipPath31)" stroke="none">Component</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath32)" preserveAspectRatio="none" height="16" font-style="italic" x="555" y="148" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="574" font-size="13" y="162" clip-path="url(#clipPath33)" font-style="italic" stroke="none" xml:space="preserve">occi.component.state: Status</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath34)" preserveAspectRatio="none" font-weight="normal" height="16" font-style="italic" x="555" y="164" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="574" font-size="13" y="178" clip-path="url(#clipPath35)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">occi.component.state.message: null</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath36)" preserveAspectRatio="none" font-weight="normal" height="16" x="555" y="180" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="574" font-size="13" y="194" clip-path="url(#clipPath37)" stroke="none" font-weight="normal" xml:space="preserve">deploy()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath38)" preserveAspectRatio="none" font-weight="normal" height="16" x="555" y="196" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="574" font-size="13" y="210" clip-path="url(#clipPath39)" stroke="none" font-weight="normal" xml:space="preserve">undeploy()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath40)" preserveAspectRatio="none" font-weight="normal" height="16" x="555" y="212" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="574" font-size="13" y="226" clip-path="url(#clipPath41)" stroke="none" font-weight="normal" xml:space="preserve">configure()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath42)" preserveAspectRatio="none" font-weight="normal" height="16" x="555" y="228" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="574" font-size="13" y="242" clip-path="url(#clipPath43)" stroke="none" font-weight="normal" xml:space="preserve">start()</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath44)" preserveAspectRatio="none" font-weight="normal" height="16" x="555" y="244" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABUElEQVR42s1TsY6C&#10;QBB9cBYUFP6MtRXfIIkfAJWGUGtAa0M0/o2hovAnCJ3EANFILCjQPWaCRE683F11&#10;WzA7b+a9md0dgH+7LMsSlRHT6VR8lyd3kWjveR6EEFiv14+wqOPdAlTpQaLk4/HI&#10;eJIk7BNO8a8dSU97UZOfAUiS1MJqX+oSYE6e57jf79hsNgzcbjfYts1Yv99/4ciP&#10;9okcBAHO5zO22y0T5vM5VySxy+UCilNeJShaAnRRvu+jLEuEYcjWcRw+AlnyoyhC&#10;URTY7XZYrVZNBx/0qRQd0zQxGAwYTNMUmqZhOBxisVhwF4qi4HA4QNd1PtJ+v3c7&#10;74DapYrX67UBVVVFr9fDZDJ54bReYTab8dllWW6/deWTKNnlctniNZmGYXDwdDqx&#10;jeMYWZbxHLiu2+DVML0fy9Fo1Ewi2fF43PKfb//H/8KvSH9Zny/Wwn+ks4LSAAAA&#10;AElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="574" font-size="13" y="258" clip-path="url(#clipPath45)" stroke="none" font-weight="normal" xml:space="preserve">stop()</text>
-<line clip-path="url(#clipPath46)" fill="none" x1="551" x2="779" y1="146" y2="146" stroke="rgb(0,47,0)"/>
-<rect x="299" y="335" clip-path="url(#clipPath47)" fill="rgb(131,122,133)" width="212" rx="4" opacity="0.2549" ry="4" height="127" stroke="none"/>
-<rect x="300" y="336" clip-path="url(#clipPath47)" fill="rgb(131,122,133)" width="212" rx="4" opacity="0.2549" ry="4" height="127" stroke="none"/>
-<rect x="298" y="334" clip-path="url(#clipPath48)" fill="url(#linearGradient4)" width="212" rx="4" ry="4" height="127" stroke="none"/>
-<rect x="298" y="334" clip-path="url(#clipPath48)" fill="none" width="211" rx="4" ry="4" height="126" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="378" y="354" clip-path="url(#clipPath49)" stroke="none">Sensor</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath50)" preserveAspectRatio="none" font-weight="normal" height="16" x="303" y="364" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="322" font-size="13" y="378" clip-path="url(#clipPath51)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.timebase: DateTime</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath52)" preserveAspectRatio="none" font-weight="normal" height="16" x="303" y="380" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="322" font-size="13" y="394" clip-path="url(#clipPath53)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.timestart: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath54)" preserveAspectRatio="none" font-weight="normal" height="16" x="303" y="396" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="322" font-size="13" y="410" clip-path="url(#clipPath55)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.timestop: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath56)" preserveAspectRatio="none" height="16" x="303" y="412" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="322" font-size="13" y="426" clip-path="url(#clipPath57)" stroke="none" xml:space="preserve">occi.sensor.period: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath58)" preserveAspectRatio="none" font-weight="normal" height="16" x="303" y="428" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="322" font-size="13" y="442" clip-path="url(#clipPath59)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.granularity: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath60)" preserveAspectRatio="none" font-weight="normal" height="16" x="303" y="444" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="322" font-size="13" y="458" clip-path="url(#clipPath61)" stroke="none" font-weight="normal" xml:space="preserve">occi.sensor.accuracy: Second</text>
-<line clip-path="url(#clipPath62)" fill="none" x1="299" x2="509" y1="362" y2="362" stroke="rgb(0,47,0)"/>
-<rect x="731" y="335" clip-path="url(#clipPath63)" fill="rgb(131,122,133)" width="223" rx="4" opacity="0.2549" ry="4" height="79" stroke="none"/>
-<rect x="732" y="336" clip-path="url(#clipPath63)" fill="rgb(131,122,133)" width="223" rx="4" opacity="0.2549" ry="4" height="79" stroke="none"/>
-<rect x="730" y="334" clip-path="url(#clipPath64)" fill="url(#linearGradient5)" width="223" rx="4" ry="4" height="79" stroke="none"/>
-<rect x="730" y="334" clip-path="url(#clipPath64)" fill="none" width="222" rx="4" ry="4" height="78" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="789" y="354" clip-path="url(#clipPath65)" stroke="none">DataGatherer</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath66)" preserveAspectRatio="none" height="16" x="735" y="364" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="754" font-size="13" y="378" clip-path="url(#clipPath67)" stroke="none" xml:space="preserve">occi.collector.period: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath68)" preserveAspectRatio="none" font-weight="normal" height="16" x="735" y="380" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="754" font-size="13" y="394" clip-path="url(#clipPath69)" stroke="none" font-weight="normal" xml:space="preserve">occi.collector.granularity: Second</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath70)" preserveAspectRatio="none" font-weight="normal" height="16" x="735" y="396" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="754" font-size="13" y="410" clip-path="url(#clipPath71)" stroke="none" font-weight="normal" xml:space="preserve">occi.collector.accuracy: Second</text>
-<line clip-path="url(#clipPath72)" fill="none" x1="731" x2="952" y1="362" y2="362" stroke="rgb(0,47,0)"/>
-<rect x="695" y="381" clip-path="url(#clipPath73)" fill="rgb(131,122,133)" width="170" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
-<rect x="696" y="382" clip-path="url(#clipPath73)" fill="rgb(131,122,133)" width="170" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
-<rect x="694" y="380" clip-path="url(#clipPath74)" fill="url(#linearGradient6)" width="170" rx="4" ry="4" height="47" stroke="none"/>
-<rect x="694" y="380" clip-path="url(#clipPath74)" fill="none" width="169" rx="4" ry="4" height="46" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="740" y="400" clip-path="url(#clipPath75)" stroke="none">Processor</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath76)" preserveAspectRatio="none" font-weight="normal" height="16" x="699" y="410" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="718" font-size="13" y="424" clip-path="url(#clipPath77)" stroke="none" font-weight="normal" xml:space="preserve">gatherer.address: String</text>
-<line clip-path="url(#clipPath78)" fill="none" x1="695" x2="863" y1="408" y2="408" stroke="rgb(0,47,0)"/>
-<rect x="551" y="335" clip-path="url(#clipPath79)" fill="rgb(131,122,133)" width="193" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
-<rect x="552" y="336" clip-path="url(#clipPath79)" fill="rgb(131,122,133)" width="193" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
-<rect x="550" y="334" clip-path="url(#clipPath80)" fill="url(#linearGradient7)" width="193" rx="4" ry="4" height="47" stroke="none"/>
-<rect x="550" y="334" clip-path="url(#clipPath80)" fill="none" width="192" rx="4" ry="4" height="46" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="610" y="354" clip-path="url(#clipPath81)" stroke="none">Publisher</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath82)" preserveAspectRatio="none" height="16" x="555" y="364" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="574" font-size="13" y="378" clip-path="url(#clipPath83)" stroke="none" xml:space="preserve">publisher.endpoint: String</text>
-<line clip-path="url(#clipPath84)" fill="none" x1="551" x2="742" y1="362" y2="362" stroke="rgb(0,47,0)"/>
-<rect x="959" y="83" clip-path="url(#clipPath85)" fill="rgb(131,122,133)" width="306" rx="0" opacity="0.2549" ry="0" height="109" stroke="none"/>
-<rect x="960" y="84" clip-path="url(#clipPath85)" fill="rgb(131,122,133)" width="306" rx="0" opacity="0.2549" ry="0" height="109" stroke="none"/>
-<rect x="958" y="82" clip-path="url(#clipPath86)" fill="url(#linearGradient8)" width="306" rx="0" ry="0" height="109" stroke="none"/>
-<rect x="958" y="82" clip-path="url(#clipPath86)" fill="none" width="305" rx="0" ry="0" height="108"/>
-<image x="1084" y="88" clip-path="url(#clipPath87)" width="16" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAXUlEQVR42mNgGPKA&#10;EUTExsb+x6Vg8eLFjPgMYIExFi1ahCEZFxdHuQvwAZDr4C5obW0lSXN1dTWqF0CA&#10;n5+fZFcwURoLKC5gYWGhzABGRkbKDGBiYiLfAFiojkAAAOmKD9Q+w1PmAAAAAElF&#10;TkSuQmCC" xlink:type="simple" xlink:actuate="onLoad" height="16" preserveAspectRatio="none" xlink:show="embed"/>
-<text xml:space="preserve" x="1103" y="102" clip-path="url(#clipPath88)" stroke="none">core</text>
-<rect x="983" y="111" clip-path="url(#clipPath89)" fill="rgb(131,122,133)" width="108" rx="4" opacity="0.2549" ry="4" height="63" stroke="none"/>
-<rect x="984" y="112" clip-path="url(#clipPath89)" fill="rgb(131,122,133)" width="108" rx="4" opacity="0.2549" ry="4" height="63" stroke="none"/>
-<rect x="982" y="110" clip-path="url(#clipPath90)" fill="url(#linearGradient9)" width="108" rx="4" ry="4" height="63" stroke="none"/>
-<rect x="982" y="110" clip-path="url(#clipPath90)" fill="none" width="107" rx="4" ry="4" height="62" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="1012" y="130" clip-path="url(#clipPath91)" stroke="none">Entity</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath92)" preserveAspectRatio="none" height="16" font-style="italic" x="987" y="140" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="1006" font-size="13" y="154" clip-path="url(#clipPath93)" font-style="italic" stroke="none" xml:space="preserve">occi.core.id</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath94)" preserveAspectRatio="none" font-weight="normal" height="16" x="987" y="156" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="1006" font-size="13" y="170" clip-path="url(#clipPath95)" stroke="none" font-weight="normal" xml:space="preserve">occi.core.title</text>
-<line clip-path="url(#clipPath96)" fill="none" x1="983" x2="1089" y1="138" y2="138" stroke="rgb(0,47,0)"/>
-<rect x="1120" y="137" clip-path="url(#clipPath97)" fill="rgb(131,122,133)" width="137" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
-<rect x="1121" y="138" clip-path="url(#clipPath97)" fill="rgb(131,122,133)" width="137" rx="4" opacity="0.2549" ry="4" height="47" stroke="none"/>
-<rect x="1119" y="136" clip-path="url(#clipPath98)" fill="url(#linearGradient10)" width="137" rx="4" ry="4" height="47" stroke="none"/>
-<rect x="1119" y="136" clip-path="url(#clipPath98)" fill="none" width="136" rx="4" ry="4" height="46" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="1152" y="156" clip-path="url(#clipPath99)" stroke="none">Resource</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath100)" preserveAspectRatio="none" font-weight="normal" height="16" x="1124" y="166" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="1143" font-size="13" y="180" clip-path="url(#clipPath101)" stroke="none" font-weight="normal" xml:space="preserve">occi.core.summary</text>
-<line clip-path="url(#clipPath102)" fill="none" x1="1120" x2="1255" y1="164" y2="164" stroke="rgb(0,47,0)"/>
-<rect x="155" y="527" clip-path="url(#clipPath103)" fill="rgb(131,122,133)" width="229" rx="4" opacity="0.2549" ry="4" height="63" stroke="none"/>
-<rect x="156" y="528" clip-path="url(#clipPath103)" fill="rgb(131,122,133)" width="229" rx="4" opacity="0.2549" ry="4" height="63" stroke="none"/>
-<rect x="154" y="526" clip-path="url(#clipPath104)" fill="url(#linearGradient11)" width="229" rx="4" ry="4" height="63" stroke="none"/>
-<rect x="154" y="526" clip-path="url(#clipPath104)" fill="none" width="228" rx="4" ry="4" height="62" stroke="rgb(0,47,0)"/>
-<text xml:space="preserve" x="191" y="546" clip-path="url(#clipPath105)" stroke="none">MonitoringProperty</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath106)" preserveAspectRatio="none" height="16" font-style="italic" x="159" y="556" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="178" font-size="13" y="570" clip-path="url(#clipPath107)" font-style="italic" stroke="none" xml:space="preserve">monitoring.property.name: String</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath108)" preserveAspectRatio="none" font-weight="normal" height="16" x="159" y="572" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="178" font-size="13" y="586" clip-path="url(#clipPath109)" stroke="none" font-weight="normal" xml:space="preserve">monitoring.property.value: String</text>
-<line clip-path="url(#clipPath110)" fill="none" x1="155" x2="382" y1="554" y2="554" stroke="rgb(0,47,0)"/>
-<rect x="527" y="539" clip-path="url(#clipPath111)" fill="rgb(131,122,133)" width="249" rx="4" opacity="0.2549" ry="4" height="79" stroke="none"/>
-<rect x="528" y="540" clip-path="url(#clipPath111)" fill="rgb(131,122,133)" width="249" rx="4" opacity="0.2549" ry="4" height="79" stroke="none"/>
-<rect x="526" y="538" clip-path="url(#clipPath112)" fill="url(#linearGradient12)" width="249" rx="4" ry="4" height="79" stroke="none"/>
-<rect x="526" y="538" clip-path="url(#clipPath112)" fill="none" width="248" rx="4" ry="4" height="78" stroke="rgb(0,37,74)"/>
-<text xml:space="preserve" x="596" y="558" clip-path="url(#clipPath113)" stroke="none">MartPublisher</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath114)" preserveAspectRatio="none" height="16" font-style="italic" x="531" y="568" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="550" font-size="13" y="582" clip-path="url(#clipPath115)" font-style="italic" stroke="none" xml:space="preserve">monitoring.property.name: String</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath116)" preserveAspectRatio="none" font-weight="normal" height="16" x="531" y="584" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="550" font-size="13" y="598" clip-path="url(#clipPath117)" stroke="none" font-weight="normal" xml:space="preserve">monitoring.property.id: String</text>
-<image width="16" xlink:show="embed" xlink:type="simple" clip-path="url(#clipPath118)" preserveAspectRatio="none" height="16" font-style="italic" x="531" y="600" font-size="13" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqElEQVR42u1TwQ3D&#10;IAx0UAdgGGZiAb4RD8SXBZiJVYAowJe0IIGIkrTpt+o9fAbjM8YC4I+pmHmet28T&#10;pZQ191FMSgmEELeTOefd7wIFjLHKOWdACB38AqVUP98FQgjQWGt9WZlSWjnG2Peq&#10;tPceRr5CizvnzgXWdX0r0OJjoV0L1loghHx8xGVZ9gJN2RhzawrjTessMcZbe+3C&#10;vb+TdZvMS2T6kb/wBKduW9nDgi/SAAAAAElFTkSuQmCC" xlink:actuate="onLoad"/>
-<text x="550" font-size="13" y="614" clip-path="url(#clipPath119)" font-style="italic" stroke="none" xml:space="preserve">monitoring.property.resource: String</text>
-<line clip-path="url(#clipPath120)" fill="none" x1="527" x2="774" y1="566" y2="566" stroke="rgb(0,37,74)"/>
-<rect x="11" y="83" clip-path="url(#clipPath121)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="12" y="84" clip-path="url(#clipPath121)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="10" y="82" clip-path="url(#clipPath122)" fill="url(#linearGradient13)" width="98" rx="0" ry="0" height="45" stroke="none"/>
-<rect x="10" y="82" clip-path="url(#clipPath122)" fill="none" width="97" rx="0" ry="0" height="44"/>
-<text xml:space="preserve" x="21" y="102" clip-path="url(#clipPath123)" stroke="none">DateTime</text>
-<text x="15" font-size="13" y="125" clip-path="url(#clipPath124)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">java.lang.String</text>
-<line clip-path="url(#clipPath125)" fill="none" x1="11" x2="107" y1="110" y2="110"/>
-<rect x="11" y="11" clip-path="url(#clipPath126)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="12" y="12" clip-path="url(#clipPath126)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="10" y="10" clip-path="url(#clipPath127)" fill="url(#linearGradient14)" width="98" rx="0" ry="0" height="45" stroke="none"/>
-<rect x="10" y="10" clip-path="url(#clipPath127)" fill="none" width="97" rx="0" ry="0" height="44"/>
-<text xml:space="preserve" x="31" y="30" clip-path="url(#clipPath128)" stroke="none">Second</text>
-<text x="15" font-size="13" y="53" clip-path="url(#clipPath129)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">java.lang.String</text>
-<line clip-path="url(#clipPath130)" fill="none" x1="11" x2="107" y1="38" y2="38"/>
-<rect x="167" y="11" clip-path="url(#clipPath131)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="168" y="12" clip-path="url(#clipPath131)" fill="rgb(131,122,133)" width="98" rx="0" opacity="0.2549" ry="0" height="45" stroke="none"/>
-<rect x="166" y="10" clip-path="url(#clipPath132)" fill="url(#linearGradient15)" width="98" rx="0" ry="0" height="45" stroke="none"/>
-<rect x="166" y="10" clip-path="url(#clipPath132)" fill="none" width="97" rx="0" ry="0" height="44"/>
-<text xml:space="preserve" x="191" y="30" clip-path="url(#clipPath133)" stroke="none">String</text>
-<text x="171" font-size="13" y="53" clip-path="url(#clipPath134)" font-style="italic" stroke="none" font-weight="normal" xml:space="preserve">java.lang.String</text>
-<line clip-path="url(#clipPath135)" fill="none" x1="167" x2="263" y1="38" y2="38"/>
-</g>
-<g stroke-linecap="butt" font-size="11" fill="rgb(136,136,136)" font-family="'Ubuntu'" stroke="rgb(136,136,136)" stroke-width="2.1">
-<line clip-path="url(#clipPath136)" fill="none" x1="1119" x2="1090" y1="151" y2="151"/>
-<polygon fill="white" clip-path="url(#clipPath137)" points=" 1090 151 1098 147 1098 155" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath137)" points=" 1090 151 1098 147 1098 155"/>
-<line clip-path="url(#clipPath136)" fill="none" x1="803" x2="733" y1="334" y2="261"/>
-<polygon fill="white" clip-path="url(#clipPath138)" points=" 733 261 741 264 736 270" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath138)" points=" 733 261 741 264 736 270"/>
-<line clip-path="url(#clipPath136)" fill="none" x1="412" x2="415" y1="334" y2="309"/>
-<polygon fill="white" clip-path="url(#clipPath139)" points=" 415 309 418 317 410 316" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath139)" points=" 415 309 418 317 410 316"/>
-<line clip-path="url(#clipPath136)" fill="none" x1="797" x2="682" y1="380" y2="261"/>
-<polygon fill="white" clip-path="url(#clipPath140)" points=" 682 261 690 264 685 270" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath140)" points=" 682 261 690 264 685 270"/>
-<line clip-path="url(#clipPath136)" fill="none" x1="642" x2="628" y1="334" y2="261"/>
-<polygon fill="white" clip-path="url(#clipPath141)" points=" 628 261 633 268 626 270" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath141)" points=" 628 261 633 268 626 270"/>
-<line clip-path="url(#clipPath136)" fill="none" x1="1119" x2="1090" y1="151" y2="151"/>
-<polygon fill="white" clip-path="url(#clipPath137)" points=" 1090 151 1098 147 1098 155" stroke="none"/>
-<polygon fill="none" clip-path="url(#clipPath137)" points=" 1090 151 1098 147 1098 155"/>
-<line clip-path="url(#clipPath136)" fill="none" x1="647" x2="647" y1="538" y2="381" stroke-dasharray="5,5"/>
-<line clip-path="url(#clipPath142)" fill="none" x1="650" x2="647" y1="388" y2="381"/>
-<line clip-path="url(#clipPath142)" fill="none" x1="647" x2="644" y1="381" y2="388"/>
-</g>
-<g stroke-width="2.1" font-size="13" font-family="'Ubuntu'" font-weight="bold" stroke-linecap="butt">
-<line clip-path="url(#clipPath136)" fill="none" x1="269" x2="405" y1="526" y2="461"/>
-<text xml:space="preserve" x="319" y="489" clip-path="url(#clipPath143)" stroke="none">target</text>
-<line clip-path="url(#clipPath144)" fill="none" x1="400" x2="405" y1="467" y2="461"/>
-<line clip-path="url(#clipPath144)" fill="none" x1="405" x2="397" y1="461" y2="461"/>
-</g>
-</g>
-</svg>
diff --git a/doc/horizontal.md b/doc/horizontal.md
index 5217c1f97a07c01c9a38d2e2ae60c465fffefe08..303e3b2213bd5a9178188d134ea90d82a4e86900 100644
--- a/doc/horizontal.md
+++ b/doc/horizontal.md
@@ -6,7 +6,7 @@ When a scaleUp is performed, a compute node hosting a hadoop-worker component is
 which gets executed over a [models at runtime engine](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.docci).
 
 
-##Deploying the Cluster
+## Deploying the Cluster
 First, the hadoop cluster has to be deployed. Therefore, first start the MartServer.
 If the getting started VM is used the following script can be executed:
 ```
@@ -27,7 +27,7 @@ http://localhost:8080/sensor
 http://localhost:8080/monitorableproperty
 ```
 
-##Starting the MAPE-K loop
+## Starting the MAPE-K loop
 To start the MAPE-K loop execute MAPE.java as a Java Application.
 In the VM it is located on the desktop.
 ```
@@ -38,7 +38,7 @@ This scenario serves as an example on how to work with the OCCI ecosystem, inclu
 
 *Note:* To perform this scenario in a running cloud multiple adjustments have to be performed. Please refer to this [documentation](doc/openstack) to get started with actual cloud deployments.
 
-##Tuning the Scenario
+## Tuning the Scenario
 Again the simulated monitoring results can be adjusted as described in Section "Tuning the Scenario" of the [first scenario](doc/vertical.md).
 Moreover, to investigate what is happening in this scenario it is recommended to open the OCCI-Studio and execute the scenario from here.
 The class is located at:
diff --git a/doc/vertical.md b/doc/vertical.md
index 0ae70f7128f405c42264a6de0d0044da8b0e4f5d..5ece813338abf55803d7e761e1f7d3a95866e845 100644
--- a/doc/vertical.md
+++ b/doc/vertical.md
@@ -4,7 +4,7 @@ Thereafter, a MAPE-k loop is initialized that periodically checks whether the CP
 If that is the case a request against the OCCI API is performed, increasing the number of cores and memory available to the machine.
 
 
-##Deploying the Cluster
+## Deploying the Cluster
 First, the hadoop cluster has to be deployed. Therefore, first start the MartServer.
 If the getting started VM is used the following script can be executed:
 ```
@@ -25,7 +25,7 @@ http://localhost:8080/sensor
 http://localhost:8080/monitorableproperty
 ```
 
-##Starting the Adaptation Script
+## Starting the Adaptation Script
 To start the script execute the vertical.sh script.
 In the VM it is located on the desktop, otherwise you can find it [here](https://gitlab.gwdg.de/rwm/de.ugoe.cs.rwm.mocci/blob/master/src/main/resources/vertical.sh).
 ```
@@ -36,7 +36,7 @@ This scenario serves as an example on how to directly work with the OCCI API, in
 
 *Note:* This scenario mainly serves to get started with the OCCI API. Currently, there is no connector implementing the vertical adjustment as shown in this scenario.
 
-##Tuning the Scenario
+## Tuning the Scenario
 As the adaptation only reacts on a Critical behavior, it may be interesting to tune the simulated monitoring results.
 Therefore, the following steps have to be performed:
 1. Stop the MartServer (CTRL-C)