diff --git a/TR-0025-Application-Developer-Guide.md b/TR-0025-Application-Developer-Guide.md
index 8e17fbfa6b18bdfe714c1f5cb7d758fbae31b892..1608400cd38e156eecaf7d70df7c53fb57a95d92 100644
--- a/TR-0025-Application-Developer-Guide.md
+++ b/TR-0025-Application-Developer-Guide.md
@@ -179,25 +179,7 @@ Call flows regarding the registration phase depicted in figure 7.2.1-1 are order
 5. Gateway application (MN-AE) discovers the smartphone application (IN-AE) from gateway (MN-CSE) with specific filter criteria. The discovered IN-AE is granted access to the remote light control service containers.
 6. Gateway application (MN-AE) creates an accessControlPolicy resource granting all the entities playing roles in the current use case including ADN-AE1, ADN-AE2, MN-AE and IN-AE access to the created container and content instance resources.
 
-```mermaid
-%%{init: { 'sequence': {'mirrorActors': false} } }%%
-sequenceDiagram
-Participant ADNAE1 as ADN-AE1
-Participant ADNAE2 as ADN-AE2
-Participant MNAE as MN-AE
-Participant MNCSE as MN-CSE
-Participant INCSE as IN-CSE
-Participant INAE as IN-AE
-
-MNCSE ->> INCSE: 1) Gateway (MN-CSE)<br />registration into oneM2M<br />service platform (IN-CSE)
-MNAE ->> MNCSE: 2) Gateway application<br />(MN-AE) registration<br />into gateway (MN-CSE)
-ADNAE1 ->> MNCSE: 3-1) Light application (ADN-AE1)<br />registration into gateway (MN-CSE)
-ADNAE2 ->> MNCSE: 3-2) Light application (ADN-AE2)<br />registration into gateway (MN-CSE)
-INAE ->> INCSE: 4-1) Smartphone application<br />(IN-AE)registration into<br />oneM2M service platform<br />(IN-CSE)
-INCSE ->> MNCSE: 4-2) Announcement of<br />IN-AE to MN-CSE<br />by IN-CSE
-MNAE ->> MNCSE: 5) Discovery (GET) of<br />IN-AE announced<br />to MN-CSE
-MNAE ->> MNCSE: 6) Access control policy<br />creation granting ADN-AEs,<br />MN-AE and IN-AE can<br />access to remote light<br />control service containers
-```
+![Figure 7.2.1-1: Registration phase call flows](media/RegistrationPhaseCallFlows.png)
 
 **Figure 7.2.1-1: Registration phase call flows**
 
@@ -210,29 +192,7 @@ Call flows regarding the initial resource creation phase depicted in figure 7.2.
 3. Content Instance resources are created by light applications (ADN-AE1 and ADN-AE2) under each created container and represent the controlled light states.
 4. Subscription resources are created under the containers in the gateway (MN-CSE) so that subscribers, i.e. light applications, can be notified whenever there is a new contentInstance resource created by the IN-AE.
 
-
-```mermaid
-%%{init: { 'sequence': {'mirrorActors': false} } }%%
-sequenceDiagram
-Participant ADNAE1 as ADN-AE1
-Participant ADNAE2 as ADN-AE2
-Participant MNAE as MN-AE
-Participant MNCSE as MN-CSE
-Participant INCSE as IN-CSE
-Participant INAE as IN-AE
-
-MNAE ->> MNCSE: 1) Group resource<br />creation for updating<br />and retrieval of the state<br />of a group of lights
-Note right of MNCSE: Group resource is created<br />with a specific access<br />control policy under MN-CSE
-ADNAE1 ->> MNCSE: 2-1) Container resource<br />creation of light_1
-ADNAE2 ->> MNCSE: 2-2) Container resource<br />creation of light_2
-Note right of MNCSE: Container resources are<br />created with a specific access<br />control policy under MN-CSE
-ADNAE1 ->> MNCSE: 3-1) ContentInstance<br />resource creation<br />under container of light_1	
-ADNAE2 ->> MNCSE: 3-2) ContentInstance<br />resource creation<br />under container of light_2	
-Note right of MNCSE: ContentInstance resources are<br />created under the containers<br />in MN-CSE
-ADNAE1 ->> MNCSE: 4-1) Subscription resource<br />creation to container of light_1
-ADNAE2 ->> MNCSE: 4-2) Subscription resource<br />creation to container of light_2
-Note right of MNCSE: Subscription resources to<br />containers in MN-CSE are<br />created for monitoring<br />contentInstance updates
-```
+![Figure 7.2.2-1: Initial resource creation phase call flows](media/InitialResourceCreationPhaseCallFlows.png)
 
 **Figure 7.2.2-1: Initial resource creation phase call flows**
 
@@ -240,28 +200,11 @@ Note right of MNCSE: Subscription resources to<br />containers in MN-CSE are<br
 
 Call flows regarding the discovery and update of group resources are depicted in figure 7.2.3-1 and ordered as follows:
 
-1. Gateway application (MN-AE) periodically sends a RETRIEVE request including the parameter _filterUsage_ and specific filter criteria condition(s) as a query string for discovery of container resources stored in the MN-CSE of gateway. The filter criteria conditions for the discovery operation include _createdBefore, createdAfter, modifiedSince, unmodifiedSInce, label, creator, expireAfter, resourceType_ etc.
+1. Gateway application (MN-AE) periodically sends a RETRIEVE request including the parameter _filterUsage_ and specific filter criteria condition(s) as a query string for discovery of container resources stored in the MN-CSE of gateway. The filter criteria conditions for the discovery operation include _createdBefore, createdAfter, modifiedSince, unmodifiedSince, label, creator, expireAfter, resourceType_ etc.
 2. Gateway (MN-CSE) responds with URIs of the discovered container resources, if any, to the gateway application (MN-AE) according to the filter criteria(s).
 3. Gateway application (MN-AE) sends a update request to update the list of group members within the previously created group resource with identifiers of the discovered containers.
 
-```mermaid
-%%{init: { 'sequence': {'mirrorActors': false} } }%%
-sequenceDiagram
-Participant ADNAE1 as ADN-AE1
-Participant ADNAE2 as ADN-AE2
-Participant MNAE as MN-AE
-Participant MNCSE as MN-CSE
-Participant INCSE as IN-CSE
-Participant INAE as IN-AE
-
-MNAE ->> MNCSE: 1) Discovery (GET) with filter<br />criteria(s)
-activate MNCSE
-Note left of MNAE: MN-AE discovers the<br />container resources stored<br />in MN-CSE with specific<br />filter criteria(s)
-MNCSE ->> MNAE: 2) IDs of discovered<br />container resources
-deactivate MNCSE
-MNAE ->> MNCSE: 3) Update group resource<br />members with IDs of<br />discovered container<br />resources
-Note left of MNAE: MN-AE updates the<br />group resource with the<br />IDs of the discovered<br />container resources
-```
+![Figure 7.2.3-1: Discovery and group light state update phase call flows](media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.png)
 
 **Figure 7.2.3-1: Discovery and group light state update phase call flows**
 
@@ -277,66 +220,11 @@ For the case where the IN-AE sends a Discovery request for the discovery of grou
 In the case of retrieval of the latest contentInstance resources of the group of containers, the IN-AE sends a retrieve request to the _fanOutPoint_  of the discovered group resource.
 5. The MN-CSE responds to the IN-AE with the latest light state(s).
 
-
-```mermaid
-%%{init: { 'sequence': {'mirrorActors': false} } }%%
-sequenceDiagram
-Participant ADNAE1 as ADN-AE1
-Participant ADNAE2 as ADN-AE2
-Participant MNAE as MN-AE
-Participant MNCSE as MN-CSE
-Participant INCSE as IN-CSE
-Participant INAE as IN-AE
-
-INAE ->> INCSE: 1-1) Discovery single light<br />container with filter<br />criteria
-INCSE ->> MNCSE: 1-2)
-activate MNCSE
-Note left of MNCSE: IN-AE discovers each<br />single light container<br />located in MN-CSE
-MNCSE ->> INCSE: 2-1)
-deactivate MNCSE
-INCSE ->> INAE: 2-2) URIs of discovered<br />container resources<br />are responded
-INAE ->> INCSE: 3-1-1) Retrieval of the latest<br />contentInstance from<br />discovered light container<br /> light_1
-INCSE ->> MNCSE: 3-1-2)
-activate MNCSE
-Note left of MNCSE: Retrieval of the latest<br />contentInstance from<br />each discovered single<br />light container
-MNCSE ->> INCSE: 4-1-1)
-deactivate MNCSE
-INCSE ->> INAE: 4-1-2) The latest<br />contentInstance of container<br />light_1 is responded
-INAE ->> INCSE: 3-2-1) Retrieval of the latest<br />contentInstance from<br />discovered light container<br /> light_2
-INCSE ->> MNCSE: 3-2-2)
-activate MNCSE
-MNCSE ->> INCSE: 4-2-1)
-deactivate MNCSE
-INCSE ->> INAE: 4-2-2) The latest<br />contentInstance of container<br />light_2 is responded
-```
+![Figure 7.2.4-1: Discovery and single light retrieval phase call flows](media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.png)
 
 **Figure 7.2.4-1: Discovery and single light retrieval phase call flows**
 
-```mermaid
-%%{init: { 'sequence': {'mirrorActors': false} } }%%
-sequenceDiagram
-Participant ADNAE1 as ADN-AE1
-Participant ADNAE2 as ADN-AE2
-Participant MNAE as MN-AE
-Participant MNCSE as MN-CSE
-Participant INCSE as IN-CSE
-Participant INAE as IN-AE
-
-INAE ->> INCSE: 1-1) Discovery group resources<br />with filter criteria
-INCSE ->> MNCSE: 1-2)
-activate MNCSE
-Note left of MNCSE: IN-AE discovery of<br />group resources stored<br />in MN-CSE
-MNCSE ->> INCSE: 2-1)
-deactivate MNCSE
-INCSE ->> INAE: 2-2) Resond with URIs of<br />discovered group resources
-INAE ->> INCSE: 3-1) Send a fanOutPoint<br />request to the group resource<br />for retrieval of latest<br />contentInstance
-INCSE ->> MNCSE: 3-2)
-activate MNCSE
-Note left of MNCSE: IN-AE retrieves a group<br />of latest contentInstance<br />having the state of all lights
-MNCSE ->> INCSE: 4-1)
-deactivate MNCSE
-INCSE ->> INAE: 4-2) Respond with latest<br />contentInstance
-```
+![Figure 7.2.4-2 Discovery and a group of lights retrieval phase call flows](media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.png)
 
 **Figure 7.2.4-2 Discovery and a group of lights retrieval phase call flows**
 
@@ -353,27 +241,7 @@ _Light#1_ and _Light#2_  are controlled remotely by a human user through a smart
 1. When the user updates the light state on her/his smartphone, the IN-AE creates a new contentInstance     representing a new light state under the targeted container of a Light ADN-AE stored in the MN-CSE. 
 2. If the contentInstance is created sucessfully_,_ the MN-CSE sends a notification to the corresponsding Light ADN-AE to notify it that a new contentInstance resource was created. 
 
-```mermaid
-%%{init: { 'sequence': {'mirrorActors': false} } }%%
-sequenceDiagram
-Participant ADNAE1 as ADN-AE1
-Participant ADNAE2 as ADN-AE2
-Participant MNAE as MN-AE
-Participant MNCSE as MN-CSE
-Participant INCSE as IN-CSE
-Participant INAE as IN-AE
-
-INAE ->> INCSE: 1-1) Creation of a light_1<br>contentInstance with<br>new light state
-INCSE ->> MNCSE: 1-2) Processing<br>contentInstance<br>creation
-activate MNCSE
-MNCSE ->> ADNAE1: 2-1) Notification with the latest light state<br>to be executed to controlled light_1
-deactivate MNCSE
-INAE ->> INCSE: 1-3) Creation of a light_2<br>contentInstance with<br>new light state
-INCSE ->> MNCSE: 1-4) Processing<br>contentInstance<br>creation
-activate MNCSE
-MNCSE ->> ADNAE2: 2-2) Notification with the latest light state<br>to be executed to controlled light_2
-deactivate MNCSE
-```
+![Figure 7.3.2-1: Single light remote control phase call flows](media/SingleLightRemoteControlPhaseCallFlows.png)
 
 **Figure 7.3.2-1: Single light remote control phase call flows**
 
@@ -385,26 +253,7 @@ Users can also remotely control multiple lights through the smartphone applicati
 1. When the user updates the state of a group of lights on her/his smartphone, the IN-AE sends a contentInstance create request targeting the group resource on the MN-CSE. The MN-CSE then fans out the request to the individual Light container member resources on the MN-CSE.. 
 2. For each contentInstances created sucessfully, the MN-CSE sends a  notification to the corresponsding Light ADN-AE. 
 
-```mermaid
-%%{init: { 'sequence': {'mirrorActors': false} } }%%
-sequenceDiagram
-Participant ADNAE1 as ADN-AE1
-Participant ADNAE2 as ADN-AE2
-Participant MNAE as MN-AE
-Participant MNCSE as MN-CSE
-Participant INCSE as IN-CSE
-Participant INAE as IN-AE
-
-Note over INCSE: Create a group of<br>contentInstances in<br>MN-CSE when state<br>of a group of lights<br> is updated on<br>user's smartphone
-INAE ->> INCSE: 1-1)
-INCSE ->> MNCSE: 1-2)
-activate MNCSE
-Note over MNCSE: processing of<br>contentInstance<br>creation
-Note over MNAE: MN-CSE sends<br>notification to each<br>light ADN-AE in<br>group
-MNCSE ->> ADNAE2: 2-1-1)
-MNCSE ->> ADNAE1: 2-1-2)
-deactivate MNCSE
-```
+![Figure 7.3.3-1: Multiple lights remote control phase call flows](media/MultipleLightsRemoteControlPhaseCallFlows.png)
 
 **Figure 7.3.3-1: Multiple lights remote control phase call flows**
 
@@ -463,7 +312,7 @@ The resource tree of IN-CSE starts with a CSEBase named _server_  depicted in fi
 
 The root CSEBase has two direct child resources, a remoteCSE named _home_gateway_ and an AE named _smartphone_ae_ .
 
-![IN-CSE resource structure](media/IN-CSEResourceStructure.png)
+![Figure 8.5.1-1: IN-CSE resource structure](media/IN-CSE-ResourceStructure.png)
 
 **Figure 8.5.1-1: IN-CSE resource structure**
 
@@ -480,8 +329,7 @@ The resource tree is constructed with child resources as follows:
 - an MN-AE named _gateway_ae_ which contains a group child resource,
 - a group resource named _containers_group_ whose members are the _light_ containers of each AND-AEs. Smartphone application users with propper access control privileges can send a request to the _fanOutPoint_ virtual resource of this group to create and retrieve content instances in the two _light_ containers.
 
-
-![MN-CSE resource tree](media/MN-CSEResourceTree.png)
+![Figure 8.5.2-1: MN-CSE resource tree](media/MN-CSE-ResourceTree.png)
 
 **Figure 8.5.2-1: MN-CSE resource tree**
 
diff --git a/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.png b/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.png
index bd346691132205096aa75ff2afc47d29f8509a50..64ed1f982da4af81bd6dfdc70905c1e05607ef6a 100644
Binary files a/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.png and b/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.png differ
diff --git a/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.puml b/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.puml
new file mode 100644
index 0000000000000000000000000000000000000000..8fba6a803956ee1a8e23835d7348d51ab7efb3d3
--- /dev/null
+++ b/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.puml
@@ -0,0 +1,47 @@
+@startuml
+hide footbox
+skinparam sequenceMessageAlign center
+skinparam noteTextAlignment center
+'!theme plain
+'!theme mars
+'autonumber "(#) "
+
+
+Participant "ADN-AE1" as ADNAE1
+Participant "ADN-AE2" as ADNAE2
+Participant "MN-AE" as MNAE
+Participant "MN-CSE" as MNCSE
+Participant "IN-CSE" as INCSE
+Participant "IN-AE" as INAE
+
+
+INAE -> INCSE: 1-1) Discovery group resources\nwith filter criteria
+INCSE -> MNCSE: 1-2)
+activate MNCSE
+
+Note left of MNCSE
+IN-AE discovery of
+group resources stored
+in MN-CSE
+end note
+
+MNCSE -> INCSE: 2-1)
+deactivate MNCSE
+
+INCSE -> INAE: 2-2) Resond with URIs of\ndiscovered group resources
+INAE -> INCSE: 3-1) Send a fanOutPoint\nrequest to the group resource\nfor retrieval of latest\ncontentInstance
+INCSE -> MNCSE: 3-2)
+activate MNCSE
+
+Note left of MNCSE
+	IN-AE retrieves a group
+	of latest contentInstance
+	having the state of all lights
+end note
+
+MNCSE -> INCSE: 4-1)
+deactivate MNCSE
+
+INCSE -> INAE: 4-2) Respond with latest\ncontentInstance
+
+@enduml
diff --git a/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.svg b/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.svg
index 3d74c5f56bb6e762744c23ecc2c69070c8375ed7..ee99e4588ba01e869bbefd83427a4871e39b1208 100644
--- a/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.svg
+++ b/media/DiscoveryAndAGroupFfLightsRetrievalPhaseCallFlows.svg
@@ -1,197 +1 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Generated by Pixelmator Pro 3.5.6 -->
-<svg width="633" height="399" viewBox="0 0 633 399" xmlns="http://www.w3.org/2000/svg">
-    <clipPath id="clipPath1">
-        <path d="M -53.204723 -23.280334 L 664.867725 -23.280334 L 664.867725 410.685028 L -53.204723 410.685028 L -53.204723 -23.280334 Z"/>
-        <path clip-rule="evenodd" d="M -53.204723 -23.280334 L 664.905506 -23.280334 L 664.905506 410.722839 L -53.204723 410.722839 Z"/>
-    </clipPath>
-    <g id="Group" clip-path="url(#clipPath1)">
-        <path id="Path" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 24.57795 15.988953 L 85.428345 15.988953 L 85.428345 46.414185 L 24.57795 46.414185 L 24.57795 15.988953 Z"/>
-        <path id="path1" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 24.57795 46.414185 L 85.428345 46.414185 L 85.428345 15.988953 L 24.57795 15.988953 L 24.57795 46.414185 Z"/>
-        <path id="path2" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 55.003143 11.75592 L 55.003143 11.75592 L 55.003143 11.75592 L 55.003143 11.75592 L 55.003143 11.75592 L 55.003143 11.75592 Z"/>
-        <path id="path3" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 55.003143 46.678711 L 55.003143 375.762207"/>
-        <path id="path4" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 54.70079 46.716553 L 55.305511 46.716553 L 55.305511 46.414185 L 55.267715 46.300781 L 55.229919 46.187378 L 55.116531 46.149597 L 55.003143 46.111816 L 54.889771 46.149597 L 54.814178 46.187378 L 54.738586 46.300781 L 54.70079 46.414185 L 54.70079 46.716553 Z"/>
-        <path id="path5" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 55.305511 375.686615 L 54.70079 375.686615 L 54.70079 375.988983 L 54.738586 376.102356 L 54.814178 376.215759 L 54.889771 376.291351 L 55.003143 376.291351 L 55.116531 376.291351 L 55.229919 376.215759 L 55.267715 376.102356 L 55.305511 375.988983 L 55.305511 375.686615 Z"/>
-        <path id="path6" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 14.448822 15.988953 L 95.55748 15.988953 L 95.55748 46.414185 L 14.448822 46.414185 L 14.448822 15.988953 Z"/>
-        <path id="path7" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 14.448822 46.414185 L 95.55748 46.414185 L 95.55748 15.988953 L 14.448822 15.988953 L 14.448822 46.414185 Z"/>
-        <text id="ADN" xml:space="preserve" x="27" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">ADN</text>
-        <text id="-" xml:space="preserve" x="54" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="AE" xml:space="preserve" x="58" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <text id="1" xml:space="preserve" x="74" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">1</text>
-        <path id="path8" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 115.135437 15.988953 L 175.948029 15.988953 L 175.948029 46.414185 L 115.135437 46.414185 L 115.135437 15.988953 Z"/>
-        <path id="path9" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 115.135437 46.414185 L 175.948029 46.414185 L 175.948029 15.988953 L 115.135437 15.988953 L 115.135437 46.414185 Z"/>
-        <text id="AND" xml:space="preserve" x="125" y="36" font-family="Calibri" font-size="10.733858" fill="#ffffff">AND</text>
-        <text id="text1" xml:space="preserve" x="144" y="36" font-family="Calibri" font-size="10.733858" fill="#ffffff">-</text>
-        <text id="text2" xml:space="preserve" x="148" y="36" font-family="Calibri" font-size="10.733858" fill="#ffffff">AE</text>
-        <text id="2" xml:space="preserve" x="159" y="36" font-family="Calibri" font-size="10.733858" fill="#ffffff">2</text>
-        <path id="path10" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 145.560623 11.75592 L 145.560623 11.75592 L 145.560623 11.75592 L 145.560623 11.75592 L 145.560623 11.75592 L 145.560623 11.75592 Z"/>
-        <path id="path11" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 145.560623 46.678711 L 145.560623 375.762207"/>
-        <path id="path12" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 145.25827 46.716553 L 145.862991 46.716553 L 145.862991 46.414185 L 145.825195 46.300781 L 145.749603 46.187378 L 145.674011 46.149597 L 145.560623 46.111816 L 145.44725 46.149597 L 145.333862 46.187378 L 145.25827 46.300781 L 145.25827 46.414185 L 145.25827 46.716553 Z"/>
-        <path id="path13" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 145.862991 375.686615 L 145.25827 375.686615 L 145.25827 375.988983 L 145.25827 376.102356 L 145.333862 376.215759 L 145.44725 376.291351 L 145.560623 376.291351 L 145.674011 376.291351 L 145.749603 376.215759 L 145.825195 376.102356 L 145.862991 375.988983 L 145.862991 375.686615 Z"/>
-        <path id="path14" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 105.006302 15.988953 L 186.11496 15.988953 L 186.11496 46.414185 L 105.006302 46.414185 L 105.006302 15.988953 Z"/>
-        <path id="path15" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 105.006302 46.414185 L 186.11496 46.414185 L 186.11496 15.988953 L 105.006302 15.988953 L 105.006302 46.414185 Z"/>
-        <text id="text3" xml:space="preserve" x="117" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">ADN</text>
-        <text id="text4" xml:space="preserve" x="144" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text5" xml:space="preserve" x="149" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <text id="text6" xml:space="preserve" x="164" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">2</text>
-        <path id="path16" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 210.379517 15.988953 L 271.229919 15.988953 L 271.229919 46.414185 L 210.379517 46.414185 L 210.379517 15.988953 Z"/>
-        <path id="path17" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 210.379517 46.414185 L 271.229919 46.414185 L 271.229919 15.988953 L 210.379517 15.988953 L 210.379517 46.414185 Z"/>
-        <path id="path18" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 240.804718 11.75592 L 240.804718 11.75592 L 240.804718 11.75592 L 240.804718 11.75592 L 240.804718 11.75592 L 240.804718 11.75592 Z"/>
-        <path id="path19" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 240.804718 46.678711 L 240.804718 375.762207"/>
-        <path id="path20" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 240.50235 46.716553 L 241.107086 46.716553 L 241.107086 46.414185 L 241.069305 46.300781 L 241.031494 46.187378 L 240.918121 46.149597 L 240.804718 46.111816 L 240.691345 46.149597 L 240.577942 46.187378 L 240.540161 46.300781 L 240.50235 46.414185 L 240.50235 46.716553 Z"/>
-        <path id="path21" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 241.107086 375.686615 L 240.50235 375.686615 L 240.50235 375.988983 L 240.540161 376.102356 L 240.577942 376.215759 L 240.691345 376.291351 L 240.804718 376.291351 L 240.918121 376.291351 L 241.031494 376.215759 L 241.069305 376.102356 L 241.107086 375.988983 L 241.107086 375.686615 Z"/>
-        <path id="path22" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 200.250397 15.988953 L 281.35907 15.988953 L 281.35907 46.414185 L 200.250397 46.414185 L 200.250397 15.988953 Z"/>
-        <path id="path23" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 200.250397 46.414185 L 281.35907 46.414185 L 281.35907 15.988953 L 200.250397 15.988953 L 200.250397 46.414185 Z"/>
-        <text id="MN" xml:space="preserve" x="219" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">MN</text>
-        <text id="text7" xml:space="preserve" x="241" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text8" xml:space="preserve" x="245" y="37" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <path id="path24" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 300.937012 17.689758 L 361.749603 17.689758 L 361.749603 48.11499 L 300.937012 48.11499 L 300.937012 17.689758 Z"/>
-        <path id="path25" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 300.937012 48.11499 L 361.749603 48.11499 L 361.749603 17.689758 L 300.937012 17.689758 L 300.937012 48.11499 Z"/>
-        <path id="path26" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 331.324402 13.456665 L 331.324402 13.456665 L 331.324402 13.456665 L 331.324402 13.456665 L 331.324402 13.456665 L 331.324402 13.456665 Z"/>
-        <path id="path27" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 331.324402 48.379517 L 331.324402 385.399994"/>
-        <path id="path28" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 331.059845 48.417297 L 331.62677 48.417297 L 331.62677 48.11499 L 331.62677 48.001587 L 331.551178 47.888184 L 331.437805 47.812622 L 331.324402 47.812622 L 331.211029 47.812622 L 331.135437 47.888184 L 331.059845 48.001587 L 331.059845 48.11499 L 331.059845 48.417297 Z"/>
-        <path id="path29" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 331.62677 385.362213 L 331.059845 385.362213 L 331.059845 385.664581 L 331.059845 385.777954 L 331.135437 385.891327 L 331.211029 385.929138 L 331.324402 385.966919 L 331.437805 385.929138 L 331.551178 385.891327 L 331.62677 385.777954 L 331.62677 385.664581 L 331.62677 385.362213 Z"/>
-        <path id="path30" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 290.770081 17.689758 L 371.916534 17.689758 L 371.916534 48.11499 L 290.770081 48.11499 L 290.770081 17.689758 Z"/>
-        <path id="path31" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 290.770081 48.11499 L 371.916534 48.11499 L 371.916534 17.689758 L 290.770081 17.689758 L 290.770081 48.11499 Z"/>
-        <text id="text9" xml:space="preserve" x="307" y="39" font-family="Calibri" font-size="14.324409" fill="#ffffff">MN</text>
-        <text id="text10" xml:space="preserve" x="328" y="39" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="CSE" xml:space="preserve" x="333" y="39" font-family="Calibri" font-size="14.324409" fill="#ffffff">CSE</text>
-        <path id="path32" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 402.908661 17.689758 L 463.759033 17.689758 L 463.759033 48.11499 L 402.908661 48.11499 L 402.908661 17.689758 Z"/>
-        <path id="path33" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 402.908661 48.11499 L 463.759033 48.11499 L 463.759033 17.689758 L 402.908661 17.689758 L 402.908661 48.11499 Z"/>
-        <path id="path34" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 433.333862 13.456665 L 433.333862 13.456665 L 433.333862 13.456665 L 433.333862 13.456665 L 433.333862 13.456665 L 433.333862 13.456665 Z"/>
-        <path id="path35" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 433.333862 48.379517 L 433.333862 381.733856"/>
-        <path id="path36" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 433.031494 48.417297 L 433.63623 48.417297 L 433.63623 48.11499 L 433.59845 48.001587 L 433.560608 47.888184 L 433.447266 47.812622 L 433.333862 47.812622 L 433.220459 47.812622 L 433.144897 47.888184 L 433.069275 48.001587 L 433.031494 48.11499 L 433.031494 48.417297 Z"/>
-        <path id="path37" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 433.63623 381.696075 L 433.031494 381.696075 L 433.031494 381.998413 L 433.069275 382.111816 L 433.144897 382.225189 L 433.220459 382.263 L 433.333862 382.300781 L 433.447266 382.263 L 433.560608 382.225189 L 433.59845 382.111816 L 433.63623 381.998413 L 433.63623 381.696075 Z"/>
-        <path id="path38" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 392.779541 17.689758 L 473.888184 17.689758 L 473.888184 48.11499 L 392.779541 48.11499 L 392.779541 17.689758 Z"/>
-        <path id="path39" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 392.779541 48.11499 L 473.888184 48.11499 L 473.888184 17.689758 L 392.779541 17.689758 L 392.779541 48.11499 Z"/>
-        <text id="IN" xml:space="preserve" x="413" y="39" font-family="Calibri" font-size="14.324409" fill="#ffffff">IN</text>
-        <text id="text11" xml:space="preserve" x="426" y="39" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text12" xml:space="preserve" x="430" y="39" font-family="Calibri" font-size="14.324409" fill="#ffffff">CSE</text>
-        <path id="path40" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 546.568481 17.689758 L 607.381104 17.689758 L 607.381104 48.11499 L 546.568481 48.11499 L 546.568481 17.689758 Z"/>
-        <path id="path41" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 546.568481 48.11499 L 607.381104 48.11499 L 607.381104 17.689758 L 546.568481 17.689758 L 546.568481 48.11499 Z"/>
-        <path id="path42" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 576.993713 13.456665 L 576.993713 13.456665 L 576.993713 13.456665 L 576.993713 13.456665 L 576.993713 13.456665 L 576.993713 13.456665 Z"/>
-        <path id="path43" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 576.993713 48.379517 L 576.993713 384.077179"/>
-        <path id="path44" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 576.691345 48.417297 L 577.25824 48.417297 L 577.25824 48.11499 L 577.25824 48.001587 L 577.182678 47.888184 L 577.107117 47.812622 L 576.993713 47.812622 L 576.88031 47.812622 L 576.766907 47.888184 L 576.691345 48.001587 L 576.691345 48.11499 L 576.691345 48.417297 Z"/>
-        <path id="path45" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 577.25824 384.039368 L 576.691345 384.039368 L 576.691345 384.341736 L 576.691345 384.455109 L 576.766907 384.530701 L 576.88031 384.606293 L 576.993713 384.644104 L 577.107117 384.606293 L 577.182678 384.530701 L 577.25824 384.455109 L 577.25824 384.341736 L 577.25824 384.039368 Z"/>
-        <path id="path46" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 536.439392 17.689758 L 617.548035 17.689758 L 617.548035 48.11499 L 536.439392 48.11499 L 536.439392 17.689758 Z"/>
-        <path id="path47" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 536.439392 48.11499 L 617.548035 48.11499 L 617.548035 17.689758 L 536.439392 17.689758 L 536.439392 48.11499 Z"/>
-        <text id="text13" xml:space="preserve" x="559" y="39" font-family="Calibri" font-size="14.324409" fill="#ffffff">IN</text>
-        <text id="text14" xml:space="preserve" x="573" y="39" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text15" xml:space="preserve" x="577" y="39" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <path id="path48" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 576.200012 107 L 443.992126 107"/>
-        <path id="path49" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 576.086609 106.092896 L 576.086609 107.869263 L 576.993713 107.869263 L 577.333862 107.831482 L 577.59845 107.642517 L 577.787415 107.340149 L 577.862976 107 L 577.787415 106.659851 L 577.59845 106.357483 L 577.333862 106.168518 L 576.993713 106.092896 L 576.086609 106.092896 Z"/>
-        <path id="path50" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 444.143311 107.869263 L 444.143311 106.092896 L 443.236206 106.092896 L 442.896057 106.168518 L 442.593689 106.357483 L 442.404724 106.659851 L 442.329163 107 L 442.404724 107.340149 L 442.593689 107.642517 L 442.896057 107.831482 L 443.236206 107.869263 L 444.143311 107.869263 Z"/>
-        <path id="path51" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 444.634644 112.63147 L 433.333862 107 L 444.634644 101.330688 L 444.634644 112.63147 L 444.634644 112.63147 Z"/>
-        <path id="path52" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 498.87085 101.255127 L 511.456665 101.255127 L 511.456665 112.707092 L 498.87085 112.707092 L 498.87085 101.255127 Z"/>
-        <text id="text16" xml:space="preserve" x="498" y="112" font-family="Calibri" font-size="9.524409" fill="#607423">1</text>
-        <text id="text17" xml:space="preserve" x="503" y="112" font-family="Calibri" font-size="9.524409" fill="#607423">-</text>
-        <text id="text18" xml:space="preserve" x="506" y="112" font-family="Calibri" font-size="9.524409" fill="#607423">1</text>
-        <path id="path53" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 421.428345 53.179504 L 584.36377 53.179504 L 584.36377 96.908691 L 421.428345 96.908691 L 421.428345 53.179504 Z"/>
-        <path id="path54" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 421.428345 96.908691 L 584.36377 96.908691 L 584.36377 53.179504 L 421.428345 53.179504 L 421.428345 96.908691 Z"/>
-        <text id="Discovery-group-resources-with" xml:space="preserve" x="426" y="73" font-family="Calibri" font-size="11.943307" fill="#406fc5">Discovery group resources with</text>
-        <text id="filter-criterias" xml:space="preserve" x="469" y="88" font-family="Calibri" font-size="11.943307" fill="#406fc5">filter criterias</text>
-        <path id="path55" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 326.259857 108.965332 L 336.426758 108.965332 L 336.426758 183.346436 L 326.259857 183.346436 L 326.259857 108.965332 Z"/>
-        <path id="path56" fill="none" stroke="#6ca43e" stroke-width="0.604724" stroke-linejoin="round" d="M 336.426758 183.346436 L 336.426758 108.965332 L 326.259857 108.965332 L 326.259857 183.346436 L 336.426758 183.346436 Z"/>
-        <path id="path57" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 332.118103 183.346436 L 422.675598 183.346436"/>
-        <path id="path58" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 332.231506 184.25354 L 332.231506 182.439392 L 331.324402 182.439392 L 330.984253 182.514954 L 330.719696 182.703918 L 330.530701 183.006287 L 330.455109 183.346436 L 330.530701 183.686584 L 330.719696 183.988953 L 330.984253 184.177979 L 331.324402 184.25354 L 332.231506 184.25354 Z"/>
-        <path id="path59" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 422.562195 182.439392 L 422.562195 184.25354 L 423.469299 184.25354 L 423.809448 184.177979 L 424.074036 183.988953 L 424.263 183.686584 L 424.338562 183.346436 L 424.263 183.006287 L 424.074036 182.703918 L 423.809448 182.514954 L 423.469299 182.439392 L 422.562195 182.439392 Z"/>
-        <path id="path60" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 422.033081 177.714966 L 433.333862 183.346436 L 422.033081 189.015747 L 422.033081 177.714966 L 422.033081 177.714966 Z"/>
-        <path id="path61" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 376.036224 177.639343 L 388.62204 177.639343 L 388.62204 189.091309 L 376.036224 189.091309 L 376.036224 177.639343 Z"/>
-        <text id="text19" xml:space="preserve" x="375" y="188" font-family="Calibri" font-size="9.524409" fill="#607423">2</text>
-        <text id="text20" xml:space="preserve" x="380" y="188" font-family="Calibri" font-size="9.524409" fill="#607423">-</text>
-        <text id="text21" xml:space="preserve" x="383" y="188" font-family="Calibri" font-size="9.524409" fill="#607423">1</text>
-        <path id="path62" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 421.428345 117.431519 L 582.13385 117.431519 L 582.13385 178.28186 L 421.428345 178.28186 L 421.428345 117.431519 Z"/>
-        <path id="path63" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 421.428345 178.28186 L 582.13385 178.28186 L 582.13385 117.431519 L 421.428345 117.431519 L 421.428345 178.28186 Z"/>
-        <text id="Respond-with-URIs-of" xml:space="preserve" x="449" y="146" font-family="Calibri" font-size="11.943307" fill="#406fc5">Respond with URIs of</text>
-        <text id="discovered-group-resources-" xml:space="preserve" x="434" y="161" font-family="Calibri" font-size="11.943307" fill="#406fc5">discovered group resources</text>
-        <path id="path64" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 195.52597 88.480286 L 296.930695 88.480286 L 296.930695 174.842529 L 195.52597 174.842529 L 195.52597 88.480286 Z"/>
-        <path id="path65" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 195.52597 174.842529 L 296.930695 174.842529 L 296.930695 88.480286 L 195.52597 88.480286 L 195.52597 174.842529 Z"/>
-        <text id="text22" xml:space="preserve" x="201" y="123" font-family="Calibri" font-size="11.943307" fill="#406fc5">IN</text>
-        <text id="text23" xml:space="preserve" x="212" y="123" font-family="Calibri" font-size="11.943307" fill="#406fc5">-</text>
-        <text id="AE-discovery-of-" xml:space="preserve" x="215" y="123" font-family="Calibri" font-size="11.943307" fill="#406fc5">AE discovery of</text>
-        <text id="group-resources-" xml:space="preserve" x="206" y="137" font-family="Calibri" font-size="11.943307" fill="#406fc5">group resources</text>
-        <text id="stored-in-MN" xml:space="preserve" x="203" y="152" font-family="Calibri" font-size="11.943307" fill="#406fc5">stored in MN</text>
-        <text id="text24" xml:space="preserve" x="266" y="152" font-family="Calibri" font-size="11.943307" fill="#406fc5">-</text>
-        <text id="text25" xml:space="preserve" x="270" y="152" font-family="Calibri" font-size="11.943307" fill="#406fc5">CSE</text>
-        <path id="path66" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 576.200012 292.083466 L 443.992126 292.083466"/>
-        <path id="path67" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 576.086609 291.176392 L 576.086609 292.99054 L 576.993713 292.99054 L 577.333862 292.914948 L 577.59845 292.725983 L 577.787415 292.423615 L 577.862976 292.083466 L 577.787415 291.743317 L 577.59845 291.440948 L 577.333862 291.251984 L 576.993713 291.176392 L 576.086609 291.176392 Z"/>
-        <path id="path68" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 444.143311 292.99054 L 444.143311 291.176392 L 443.236206 291.176392 L 442.896057 291.251984 L 442.593689 291.440948 L 442.404724 291.743317 L 442.329163 292.083466 L 442.404724 292.423615 L 442.593689 292.725983 L 442.896057 292.914948 L 443.236206 292.99054 L 444.143311 292.99054 Z"/>
-        <path id="path69" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 444.634644 297.752747 L 433.333862 292.083466 L 444.634644 286.451965 L 444.634644 297.752747 L 444.634644 297.752747 Z"/>
-        <path id="path70" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 498.87085 286.376373 L 511.456665 286.376373 L 511.456665 297.828339 L 498.87085 297.828339 L 498.87085 286.376373 Z"/>
-        <text id="3" xml:space="preserve" x="498" y="297" font-family="Calibri" font-size="9.524409" fill="#607423">3</text>
-        <text id="text26" xml:space="preserve" x="503" y="297" font-family="Calibri" font-size="9.524409" fill="#607423">-</text>
-        <text id="text27" xml:space="preserve" x="506" y="297" font-family="Calibri" font-size="9.524409" fill="#607423">1</text>
-        <path id="path71" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 419.160645 198.615723 L 582.13385 198.615723 L 582.13385 284.940155 L 419.160645 284.940155 L 419.160645 198.615723 Z"/>
-        <path id="path72" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 419.160645 284.940155 L 582.13385 284.940155 L 582.13385 198.615723 L 419.160645 198.615723 L 419.160645 284.940155 Z"/>
-        <text id="Send-a-fanOutPoint-request" xml:space="preserve" x="426" y="233" font-family="Calibri" font-size="11.943307" fill="#406fc5">Send a fanOutPoint request to</text>
-        <text id="the-group-for-retrieval" xml:space="preserve" x="431" y="247" font-family="Calibri" font-size="11.943307" fill="#406fc5">the group for retrieval latest</text>
-        <text id="content" xml:space="preserve" x="458" y="262" font-family="Calibri" font-size="11.943307" fill="#406fc5">content</text>
-        <text id="I" xml:space="preserve" x="496" y="262" font-family="Calibri" font-size="11.943307" fill="#406fc5">I</text>
-        <text id="nstances" xml:space="preserve" x="499" y="262" font-family="Calibri" font-size="11.943307" fill="#406fc5">nstances</text>
-        <path id="path73" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 326.259857 284.788971 L 336.426758 284.788971 L 336.426758 366.540161 L 326.259857 366.540161 L 326.259857 284.788971 Z"/>
-        <path id="path74" fill="none" stroke="#6ca43e" stroke-width="0.604724" stroke-linejoin="round" d="M 336.426758 366.540161 L 336.426758 284.788971 L 326.259857 284.788971 L 326.259857 366.540161 L 336.426758 366.540161 Z"/>
-        <path id="path75" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 421.428345 300.020477 L 582.13385 300.020477 L 582.13385 360.87088 L 421.428345 360.87088 L 421.428345 300.020477 Z"/>
-        <path id="path76" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 421.428345 360.87088 L 582.13385 360.87088 L 582.13385 300.020477 L 421.428345 300.020477 L 421.428345 360.87088 Z"/>
-        <text id="Respond-with-" xml:space="preserve" x="453" y="329" font-family="Calibri" font-size="11.943307" fill="#406fc5">Respond with</text>
-        <text id="latest-" xml:space="preserve" x="522" y="329" font-family="Calibri" font-size="11.943307" fill="#406fc5">latest</text>
-        <text id="contentInstances" xml:space="preserve" x="459" y="343" font-family="Calibri" font-size="11.943307" fill="#406fc5">contentInstances</text>
-        <path id="path77" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 332.118103 369.299225 L 422.675598 369.299225"/>
-        <path id="path78" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 332.231506 370.206299 L 332.231506 368.429932 L 331.324402 368.429932 L 330.984253 368.505524 L 330.719696 368.694489 L 330.530701 368.959045 L 330.455109 369.299225 L 330.530701 369.677155 L 330.719696 369.941742 L 330.984253 370.130707 L 331.324402 370.206299 L 332.231506 370.206299 Z"/>
-        <path id="path79" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 422.562195 368.429932 L 422.562195 370.206299 L 423.469299 370.206299 L 423.809448 370.130707 L 424.074036 369.941742 L 424.263 369.677155 L 424.338562 369.299225 L 424.263 368.959045 L 424.074036 368.694489 L 423.809448 368.505524 L 423.469299 368.429932 L 422.562195 368.429932 Z"/>
-        <path id="path80" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 422.033081 363.667725 L 433.333862 369.299225 L 422.033081 374.968506 L 422.033081 363.667725 L 422.033081 363.667725 Z"/>
-        <path id="path81" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 376.036224 363.592133 L 388.62204 363.592133 L 388.62204 375.044098 L 376.036224 375.044098 L 376.036224 363.592133 Z"/>
-        <text id="4" xml:space="preserve" x="375" y="374" font-family="Calibri" font-size="9.524409" fill="#607423">4</text>
-        <text id="text28" xml:space="preserve" x="380" y="374" font-family="Calibri" font-size="9.524409" fill="#607423">-</text>
-        <text id="text29" xml:space="preserve" x="383" y="374" font-family="Calibri" font-size="9.524409" fill="#607423">1</text>
-        <path id="path82" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 195.52597 265.664581 L 296.930695 265.664581 L 296.930695 351.988983 L 195.52597 351.988983 L 195.52597 265.664581 Z"/>
-        <path id="path83" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 195.52597 351.988983 L 296.930695 351.988983 L 296.930695 265.664581 L 195.52597 265.664581 L 195.52597 351.988983 Z"/>
-        <text id="text30" xml:space="preserve" x="205" y="286" font-family="Calibri" font-size="11.943307" fill="#406fc5">I</text>
-        <text id="N" xml:space="preserve" x="208" y="286" font-family="Calibri" font-size="11.943307" fill="#406fc5">N</text>
-        <text id="text31" xml:space="preserve" x="215" y="286" font-family="Calibri" font-size="11.943307" fill="#406fc5">-</text>
-        <text id="text32" xml:space="preserve" x="219" y="286" font-family="Calibri" font-size="11.943307" fill="#406fc5">AE</text>
-        <text id="retrieves-" xml:space="preserve" x="234" y="286" font-family="Calibri" font-size="11.943307" fill="#406fc5">retrieves</text>
-        <text id="a-" xml:space="preserve" x="280" y="286" font-family="Calibri" font-size="11.943307" fill="#406fc5">a</text>
-        <text id="group-of" xml:space="preserve" x="210" y="300" font-family="Calibri" font-size="11.943307" fill="#406fc5">group of</text>
-        <text id="latest" xml:space="preserve" x="254" y="300" font-family="Calibri" font-size="11.943307" fill="#406fc5">latest</text>
-        <text id="content-instances-" xml:space="preserve" x="202" y="314" font-family="Calibri" font-size="11.943307" fill="#406fc5">content instances</text>
-        <text id="having" xml:space="preserve" x="200" y="329" font-family="Calibri" font-size="11.943307" fill="#406fc5">having</text>
-        <text id="the-state-of-" xml:space="preserve" x="235" y="329" font-family="Calibri" font-size="11.943307" fill="#406fc5">the state of</text>
-        <text id="all" xml:space="preserve" x="225" y="343" font-family="Calibri" font-size="11.943307" fill="#406fc5">all</text>
-        <text id="lights" xml:space="preserve" x="239" y="343" font-family="Calibri" font-size="11.943307" fill="#406fc5">lights</text>
-        <path id="path84" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 432.577942 107 L 347.085052 107"/>
-        <path id="path85" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 432.464539 106.092896 L 432.464539 107.869263 L 433.333862 107.869263 L 433.674011 107.831482 L 433.976379 107.642517 L 434.165344 107.340149 L 434.240967 107 L 434.165344 106.659851 L 433.976379 106.357483 L 433.674011 106.168518 L 433.333862 106.092896 L 432.464539 106.092896 Z"/>
-        <path id="path86" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 347.198425 107.869263 L 347.198425 106.092896 L 346.291351 106.092896 L 345.951172 106.168518 L 345.686615 106.357483 L 345.459839 106.659851 L 345.422058 107 L 345.459839 107.340149 L 345.686615 107.642517 L 345.951172 107.831482 L 346.291351 107.869263 L 347.198425 107.869263 Z"/>
-        <path id="path87" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 347.72757 112.63147 L 336.426758 107 L 347.72757 101.330688 L 347.72757 112.63147 L 347.72757 112.63147 Z"/>
-        <path id="path88" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 378.568512 101.255127 L 391.154327 101.255127 L 391.154327 112.707092 L 378.568512 112.707092 L 378.568512 101.255127 Z"/>
-        <text id="text33" xml:space="preserve" x="378" y="112" font-family="Calibri" font-size="9.524409" fill="#607423">1</text>
-        <text id="text34" xml:space="preserve" x="382" y="112" font-family="Calibri" font-size="9.524409" fill="#607423">-</text>
-        <text id="text35" xml:space="preserve" x="385" y="112" font-family="Calibri" font-size="9.524409" fill="#607423">2</text>
-        <path id="path89" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 434.127563 183.346436 L 566.297607 183.346436"/>
-        <path id="path90" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 434.240967 184.25354 L 434.240967 182.439392 L 433.333862 182.439392 L 432.993713 182.514954 L 432.691345 182.703918 L 432.50238 183.006287 L 432.464539 183.346436 L 432.50238 183.686584 L 432.691345 183.988953 L 432.993713 184.177979 L 433.333862 184.25354 L 434.240967 184.25354 Z"/>
-        <path id="path91" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 566.184265 182.439392 L 566.184265 184.25354 L 567.091309 184.25354 L 567.431519 184.177979 L 567.733887 183.988953 L 567.922852 183.686584 L 567.998413 183.346436 L 567.922852 183.006287 L 567.733887 182.703918 L 567.431519 182.514954 L 567.091309 182.439392 L 566.184265 182.439392 Z"/>
-        <path id="path92" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 565.692932 177.714966 L 576.993713 183.346436 L 565.692932 189.015747 L 565.692932 177.714966 L 565.692932 177.714966 Z"/>
-        <path id="path93" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 498.87085 177.639343 L 511.456665 177.639343 L 511.456665 189.091309 L 498.87085 189.091309 L 498.87085 177.639343 Z"/>
-        <text id="text36" xml:space="preserve" x="498" y="188" font-family="Calibri" font-size="9.524409" fill="#607423">2</text>
-        <text id="text37" xml:space="preserve" x="503" y="188" font-family="Calibri" font-size="9.524409" fill="#607423">-</text>
-        <text id="text38" xml:space="preserve" x="506" y="188" font-family="Calibri" font-size="9.524409" fill="#607423">2</text>
-        <path id="path94" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 434.127563 369.299225 L 566.297607 369.299225"/>
-        <path id="path95" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 434.240967 370.206299 L 434.240967 368.429932 L 433.333862 368.429932 L 432.993713 368.505524 L 432.691345 368.694489 L 432.50238 368.959045 L 432.464539 369.299225 L 432.50238 369.677155 L 432.691345 369.941742 L 432.993713 370.130707 L 433.333862 370.206299 L 434.240967 370.206299 Z"/>
-        <path id="path96" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 566.184265 368.429932 L 566.184265 370.206299 L 567.091309 370.206299 L 567.431519 370.130707 L 567.733887 369.941742 L 567.922852 369.677155 L 567.998413 369.299225 L 567.922852 368.959045 L 567.733887 368.694489 L 567.431519 368.505524 L 567.091309 368.429932 L 566.184265 368.429932 Z"/>
-        <path id="path97" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 565.692932 363.667725 L 576.993713 369.299225 L 565.692932 374.968506 L 565.692932 363.667725 L 565.692932 363.667725 Z"/>
-        <path id="path98" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 498.87085 363.592133 L 511.456665 363.592133 L 511.456665 375.044098 L 498.87085 375.044098 L 498.87085 363.592133 Z"/>
-        <text id="text39" xml:space="preserve" x="498" y="374" font-family="Calibri" font-size="9.524409" fill="#607423">4</text>
-        <text id="text40" xml:space="preserve" x="503" y="374" font-family="Calibri" font-size="9.524409" fill="#607423">-</text>
-        <text id="text41" xml:space="preserve" x="506" y="374" font-family="Calibri" font-size="9.524409" fill="#607423">2</text>
-        <path id="path99" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 432.577942 292.083466 L 342.020477 292.083466"/>
-        <path id="path100" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 432.464539 291.176392 L 432.464539 292.99054 L 433.333862 292.99054 L 433.674011 292.914948 L 433.976379 292.725983 L 434.165344 292.423615 L 434.240967 292.083466 L 434.165344 291.743317 L 433.976379 291.440948 L 433.674011 291.251984 L 433.333862 291.176392 L 432.464539 291.176392 Z"/>
-        <path id="path101" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 342.13385 292.99054 L 342.13385 291.176392 L 341.226776 291.176392 L 340.886627 291.251984 L 340.584259 291.440948 L 340.395264 291.743317 L 340.319672 292.083466 L 340.395264 292.423615 L 340.584259 292.725983 L 340.886627 292.914948 L 341.226776 292.99054 L 342.13385 292.99054 Z"/>
-        <path id="path102" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 342.662994 297.752747 L 331.324402 292.083466 L 342.662994 286.451965 L 342.662994 297.752747 L 342.662994 297.752747 Z"/>
-        <path id="path103" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 376.036224 286.376373 L 388.62204 286.376373 L 388.62204 297.828339 L 376.036224 297.828339 L 376.036224 286.376373 Z"/>
-        <text id="text42" xml:space="preserve" x="375" y="297" font-family="Calibri" font-size="9.524409" fill="#607423">3</text>
-        <text id="text43" xml:space="preserve" x="380" y="297" font-family="Calibri" font-size="9.524409" fill="#607423">-</text>
-        <text id="text44" xml:space="preserve" x="383" y="297" font-family="Calibri" font-size="9.524409" fill="#607423">2</text>
-        <path id="path104" fill="none" stroke="#000000" stroke-width="0.907087" stroke-linejoin="round" d="M 240.804718 87.384277 L 240.804718 88.102356"/>
-        <path id="path105" fill="#000000" fill-rule="evenodd" stroke="none" d="M 240.351196 87.422058 L 241.25827 87.422058 L 241.25827 87.006287 L 241.220459 86.817322 L 241.107086 86.666138 L 240.955902 86.590576 L 240.804718 86.552734 L 240.615753 86.590576 L 240.50235 86.666138 L 240.388977 86.817322 L 240.351196 87.006287 L 240.351196 87.422058 Z"/>
-        <path id="path106" fill="#000000" fill-rule="evenodd" stroke="none" d="M 241.25827 88.064575 L 240.351196 88.064575 L 240.351196 88.480286 L 240.388977 88.669312 L 240.50235 88.820496 L 240.615753 88.896057 L 240.804718 88.933838 L 240.955902 88.896057 L 241.107086 88.820496 L 241.220459 88.669312 L 241.25827 88.480286 L 241.25827 88.064575 Z"/>
-    </g>
-</svg>
+<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="517px" preserveAspectRatio="none" style="width:610px;height:517px;background:#FFFFFF;" version="1.1" viewBox="0 0 610 517" width="610px" zoomAndPan="magnify"><defs/><g><rect fill="#FFFFFF" height="94.5313" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="111.6953"/><rect fill="#FFFFFF" height="94.5313" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="354.1563"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="43" x2="43" y1="36.2969" y2="510.9531"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="129" x2="129" y1="36.2969" y2="510.9531"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="206" x2="206" y1="36.2969" y2="510.9531"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="280" x2="280" y1="36.2969" y2="510.9531"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="355" x2="355" y1="36.2969" y2="510.9531"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="579" x2="579" y1="36.2969" y2="510.9531"/><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="5" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="12" y="24.9951">ADN-AE1</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="91" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="98" y="24.9951">ADN-AE2</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="59" x="177" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="184" y="24.9951">MN-AE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="69" x="246" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="253" y="24.9951">MN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="60" x="325" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="332" y="24.9951">IN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="50" x="554" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="561" y="24.9951">IN-AE</text><rect fill="#FFFFFF" height="94.5313" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="111.6953"/><rect fill="#FFFFFF" height="94.5313" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="354.1563"/><polygon fill="#181818" points="366,78.5625,356,82.5625,366,86.5625,362,82.5625" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="360" x2="578" y1="82.5625" y2="82.5625"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="200" x="367" y="62.3638">1-1) Discovery group resources</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="105" x="414.5" y="77.4966">with filter criteria</text><polygon fill="#181818" points="296.5,107.6953,286.5,111.6953,296.5,115.6953,292.5,111.6953" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="290.5" x2="354" y1="111.6953" y2="111.6953"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="26" x="307.25" y="106.6294">1-2)</text><path d="M91,124.6953 L91,179.6953 L270,179.6953 L270,134.6953 L260,124.6953 L91,124.6953 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M260,124.6953 L260,134.6953 L270,134.6953 L260,124.6953 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="115" x="123" y="141.7622">IN-AE discovery of</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="149" x="106" y="156.895">group resources stored</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="67" x="147" y="172.0278">in MN-CSE</text><polygon fill="#181818" points="343,202.2266,353,206.2266,343,210.2266,347,206.2266" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="280.5" x2="349" y1="206.2266" y2="206.2266"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="26" x="304.75" y="201.1606">2-1)</text><polygon fill="#181818" points="567,246.4922,577,250.4922,567,254.4922,571,250.4922" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="355" x2="573" y1="250.4922" y2="250.4922"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="154" x="390" y="230.2935">2-2) Resond with URIs of</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="177" x="378.5" y="245.4263">discovered group resources</text><polygon fill="#181818" points="366,321.0234,356,325.0234,366,329.0234,362,325.0234" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="360" x2="578" y1="325.0234" y2="325.0234"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="154" x="390" y="274.5591">3-1) Send a fanOutPoint</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="192" x="371" y="289.6919">request to the group resource</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="129" x="402.5" y="304.8247">for retrieval of latest</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="103" x="415.5" y="319.9575">contentInstance</text><polygon fill="#181818" points="296.5,350.1563,286.5,354.1563,296.5,358.1563,292.5,354.1563" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="290.5" x2="354" y1="354.1563" y2="354.1563"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="26" x="307.25" y="349.0903">3-2)</text><path d="M64,367.1563 L64,422.1563 L270,422.1563 L270,377.1563 L260,367.1563 L64,367.1563 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M260,367.1563 L260,377.1563 L270,377.1563 L260,367.1563 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="148" x="93" y="384.2231">IN-AE retrieves a group</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="159" x="87.5" y="399.356">of latest contentInstance</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="176" x="79" y="414.4888">having the state of all lights</text><polygon fill="#181818" points="343,444.6875,353,448.6875,343,452.6875,347,448.6875" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="280.5" x2="349" y1="448.6875" y2="448.6875"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="26" x="304.75" y="443.6216">4-1)</text><polygon fill="#181818" points="567,488.9531,577,492.9531,567,496.9531,571,492.9531" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="355" x2="573" y1="492.9531" y2="492.9531"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="154" x="390" y="472.7544">4-2) Respond with latest</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="103" x="415.5" y="487.8872">contentInstance</text><!--SRC=[ZLExKkD048ozNp7d2y210mkY2wXIuGiKo51mbpaPf96rTTAiRdTauEyPoP8Dub54- -ZPxfxMgBGvGU6SFBWd4_vPRj1Z3O7-jyGPfHG2xYYkx8uX8nRohwhO2VsX9-dXMj6nvEo7b5GJD1LQFfvgzC6SOIkEs_g1FCpFVovWReovHIysimqgnJnURvRnxzKSC83kTViH7ftmw2sUTd2FfWg-mwxlHr1tRz7aX2OVel48AgyntGBBgqFjBrWjLmjOsv2vFVbds7dNDk0fkDPd5BRyQAM4mbOQ46JUwcBHz6yxadGaYHO6Cx5x51eycetc31KL0guOxdepa1_LN64cWX34USgDPJXqROZp_fCPauwgW_L8hPkSfhh9gIpkgw85t2c_ylJD_BrBWYflUVH1-RJjQKWNNKZtdHE40lccbLjdMRRikuaB0k90fsL2i-N2UJs9jxJ7gekXKfz1tsLE9uubuI2e0_ikq8jl1Zex93feQ7nuy61cHp6OQirAt5lUzORrIZcr5giAz7ye9NmH-EMt0hyS0c-EYN_MzGi0]--></g></svg>
\ No newline at end of file
diff --git a/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.png b/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.png
index 459c718591a6d633fbb6ab2234536627e106caed..c5df65ff8e2fd82f86371a0377157f98ab7f056c 100644
Binary files a/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.png and b/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.png differ
diff --git a/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.puml b/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.puml
new file mode 100644
index 0000000000000000000000000000000000000000..b166891065dcc3f13889f0458562dd57d509328c
--- /dev/null
+++ b/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.puml
@@ -0,0 +1,38 @@
+@startuml
+hide footbox
+skinparam sequenceMessageAlign center
+skinparam noteTextAlignment center
+'!theme plain
+'!theme mars
+'autonumber "(#) "
+
+
+Participant "ADN-AE1" as ADNAE1
+Participant "ADN-AE2" as ADNAE2
+Participant "MN-AE" as MNAE
+Participant "MN-CSE" as MNCSE
+Participant "IN-CSE" as INCSE
+Participant "IN-AE" as INAE
+
+
+MNAE -> MNCSE: 1) Discovery (GET) with filter\ncriteria(s)
+activate MNCSE
+Note left of MNAE
+	MN-AE discovers the
+	container resources stored
+	in MN-CSE with specific
+	filter criteria(s)
+end note
+
+MNCSE -> MNAE: 2) IDs of discovered\ncontainer resources
+deactivate MNCSE
+
+MNAE -> MNCSE: 3) Update group resource\nmembers with IDs of\ndiscovered container\nresources
+Note left of MNAE
+	MN-AE updates the
+	group resource with the
+	IDs of the discovered
+	container resources
+end note
+
+@enduml
diff --git a/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.svg b/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.svg
index 63c1a96aedaaf6f7292e70add3e12561133fa1a6..7875a1942b24541eac0bbe4ce64317ea40d881da 100644
--- a/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.svg
+++ b/media/DiscoveryAndGroupLightStateUpdatePhaseCallFlows.svg
@@ -1,152 +1 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Generated by Pixelmator Pro 3.5.6 -->
-<svg width="680" height="560" viewBox="0 0 680 560" xmlns="http://www.w3.org/2000/svg">
-    <clipPath id="clipPath1">
-        <path d="M -14.204723 -16.664581 L 703.867725 -16.664581 L 703.867725 570.069305 L -14.204723 570.069305 L -14.204723 -16.664581 Z"/>
-    </clipPath>
-    <g id="Group" clip-path="url(#clipPath1)">
-        <path id="Path" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 30.809448 30.125977 L 91.659836 30.125977 L 91.659836 60.551208 L 30.809448 60.551208 L 30.809448 30.125977 Z"/>
-        <path id="path1" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 30.809448 60.551208 L 91.659836 60.551208 L 91.659836 30.125977 L 30.809448 30.125977 L 30.809448 60.551208 Z"/>
-        <path id="path2" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 61.234642 18.333862 L 61.234642 18.333862 L 61.234642 18.333862 L 61.234642 18.333862 L 61.234642 18.333862 L 61.234642 18.333862 Z"/>
-        <path id="path3" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 61.234642 68.412598 L 61.234642 527.398438"/>
-        <path id="path4" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 60.932281 68.450378 L 61.53701 68.450378 L 61.53701 68.14801 L 61.499214 68.034668 L 61.461418 67.921265 L 61.34803 67.883484 L 61.234642 67.845642 L 61.121262 67.883484 L 61.007874 67.921265 L 60.970078 68.034668 L 60.932281 68.14801 L 60.932281 68.450378 Z"/>
-        <path id="path5" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 61.53701 527.360596 L 60.932281 527.360596 L 60.932281 527.662964 L 60.970078 527.776367 L 61.007874 527.889771 L 61.121262 527.965332 L 61.234642 527.965332 L 61.34803 527.965332 L 61.461418 527.889771 L 61.499214 527.776367 L 61.53701 527.662964 L 61.53701 527.360596 Z"/>
-        <path id="path6" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 17.656693 22.566956 L 104.812592 22.566956 L 104.812592 68.14801 L 17.656693 68.14801 L 17.656693 22.566956 Z"/>
-        <path id="path7" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 17.656693 68.14801 L 104.812592 68.14801 L 104.812592 22.566956 L 17.656693 22.566956 L 17.656693 68.14801 Z"/>
-        <text id="ADN" xml:space="preserve" x="33" y="52" font-family="Calibri" font-size="14.324409" fill="#ffffff">ADN</text>
-        <text id="-" xml:space="preserve" x="60" y="52" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="AE" xml:space="preserve" x="65" y="52" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <text id="1" xml:space="preserve" x="80" y="52" font-family="Calibri" font-size="14.324409" fill="#ffffff">1</text>
-        <path id="path8" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 120.686615 31.411011 L 181.499207 31.411011 L 181.499207 61.836243 L 120.686615 61.836243 L 120.686615 31.411011 Z"/>
-        <path id="path9" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 120.686615 61.836243 L 181.499207 61.836243 L 181.499207 31.411011 L 120.686615 31.411011 L 120.686615 61.836243 Z"/>
-        <text id="AND" xml:space="preserve" x="130" y="52" font-family="Calibri" font-size="10.733858" fill="#ffffff">AND</text>
-        <text id="text1" xml:space="preserve" x="150" y="52" font-family="Calibri" font-size="10.733858" fill="#ffffff">-</text>
-        <text id="text2" xml:space="preserve" x="153" y="52" font-family="Calibri" font-size="10.733858" fill="#ffffff">AE</text>
-        <text id="2" xml:space="preserve" x="165" y="52" font-family="Calibri" font-size="10.733858" fill="#ffffff">2</text>
-        <path id="path10" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 151.07402 19.581116 L 151.07402 19.581116 L 151.07402 19.581116 L 151.07402 19.581116 L 151.07402 19.581116 L 151.07402 19.581116 Z"/>
-        <path id="path11" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 151.07402 69.659851 L 151.07402 536.280273"/>
-        <path id="path12" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 150.809448 69.697632 L 151.376373 69.697632 L 151.376373 69.395264 L 151.376373 69.28186 L 151.300781 69.206299 L 151.187408 69.130737 L 151.07402 69.092896 L 150.960632 69.130737 L 150.88504 69.206299 L 150.809448 69.28186 L 150.809448 69.395264 L 150.809448 69.697632 Z"/>
-        <path id="path13" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 151.376373 536.242554 L 150.809448 536.242554 L 150.809448 536.544922 L 150.809448 536.658264 L 150.88504 536.771667 L 150.960632 536.847229 L 151.07402 536.847229 L 151.187408 536.847229 L 151.300781 536.771667 L 151.376373 536.658264 L 151.376373 536.544922 L 151.376373 536.242554 Z"/>
-        <path id="path14" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 107.533859 23.814148 L 194.651962 23.814148 L 194.651962 69.395264 L 107.533859 69.395264 L 107.533859 23.814148 Z"/>
-        <path id="path15" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 107.533859 69.395264 L 194.651962 69.395264 L 194.651962 23.814148 L 107.533859 23.814148 L 107.533859 69.395264 Z"/>
-        <text id="text3" xml:space="preserve" x="123" y="53" font-family="Calibri" font-size="14.324409" fill="#ffffff">ADN</text>
-        <text id="text4" xml:space="preserve" x="150" y="53" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text5" xml:space="preserve" x="154" y="53" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <text id="text6" xml:space="preserve" x="170" y="53" font-family="Calibri" font-size="14.324409" fill="#ffffff">2</text>
-        <path id="path16" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 250.173218 32.658264 L 310.98584 32.658264 L 310.98584 63.083435 L 250.173218 63.083435 L 250.173218 32.658264 Z"/>
-        <path id="path17" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 250.173218 63.083435 L 310.98584 63.083435 L 310.98584 32.658264 L 250.173218 32.658264 L 250.173218 63.083435 Z"/>
-        <path id="path18" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 280.598419 20.86615 L 280.598419 20.86615 L 280.598419 20.86615 L 280.598419 20.86615 L 280.598419 20.86615 L 280.598419 20.86615 Z"/>
-        <path id="path19" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 280.598419 70.944885 L 280.598419 532.122803"/>
-        <path id="path20" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 280.296051 70.982666 L 280.863007 70.982666 L 280.863007 70.680298 L 280.863007 70.566956 L 280.787415 70.453552 L 280.711823 70.415771 L 280.598419 70.37793 L 280.485046 70.415771 L 280.371643 70.453552 L 280.296051 70.566956 L 280.296051 70.680298 L 280.296051 70.982666 Z"/>
-        <path id="path21" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 280.863007 532.085083 L 280.296051 532.085083 L 280.296051 532.38739 L 280.296051 532.500793 L 280.371643 532.576416 L 280.485046 532.651978 L 280.598419 532.689758 L 280.711823 532.651978 L 280.787415 532.576416 L 280.863007 532.500793 L 280.863007 532.38739 L 280.863007 532.085083 Z"/>
-        <path id="path22" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 237.020477 25.099182 L 324.13858 25.099182 L 324.13858 70.680298 L 237.020477 70.680298 L 237.020477 25.099182 Z"/>
-        <path id="path23" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 237.020477 70.680298 L 324.13858 70.680298 L 324.13858 25.099182 L 237.020477 25.099182 L 237.020477 70.680298 Z"/>
-        <text id="MN" xml:space="preserve" x="259" y="54" font-family="Calibri" font-size="14.324409" fill="#ffffff">MN</text>
-        <text id="text7" xml:space="preserve" x="281" y="54" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text8" xml:space="preserve" x="285" y="54" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <path id="path24" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 445.839355 31.411011 L 506.651978 31.411011 L 506.651978 61.836243 L 445.839355 61.836243 L 445.839355 31.411011 Z"/>
-        <path id="path25" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 445.839355 61.836243 L 506.651978 61.836243 L 506.651978 31.411011 L 445.839355 31.411011 L 445.839355 61.836243 Z"/>
-        <path id="path26" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 476.226746 18.333862 L 476.226746 18.333862 L 476.226746 18.333862 L 476.226746 18.333862 L 476.226746 18.333862 L 476.226746 18.333862 Z"/>
-        <path id="path27" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 476.226746 70.944885 L 476.226746 536.280273"/>
-        <path id="path28" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 475.924438 70.982666 L 476.529114 70.982666 L 476.529114 70.680298 L 476.529114 70.566956 L 476.453552 70.453552 L 476.340149 70.415771 L 476.226746 70.37793 L 476.113403 70.415771 L 476.037781 70.453552 L 475.962219 70.566956 L 475.924438 70.680298 L 475.924438 70.982666 Z"/>
-        <path id="path29" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 476.529114 536.242554 L 475.924438 536.242554 L 475.924438 536.544922 L 475.962219 536.658264 L 476.037781 536.771667 L 476.113403 536.847229 L 476.226746 536.847229 L 476.340149 536.847229 L 476.453552 536.771667 L 476.529114 536.658264 L 476.529114 536.544922 L 476.529114 536.242554 Z"/>
-        <path id="path30" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 432.648804 22.566956 L 519.804749 22.566956 L 519.804749 70.680298 L 432.648804 70.680298 L 432.648804 22.566956 Z"/>
-        <path id="path31" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 432.648804 70.680298 L 519.804749 70.680298 L 519.804749 22.566956 L 432.648804 22.566956 L 432.648804 70.680298 Z"/>
-        <text id="text9" xml:space="preserve" x="451" y="53" font-family="Calibri" font-size="14.324409" fill="#ffffff">MN</text>
-        <text id="text10" xml:space="preserve" x="473" y="53" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="CSE" xml:space="preserve" x="478" y="53" font-family="Calibri" font-size="14.324409" fill="#ffffff">CSE</text>
-        <path id="path32" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 530.803162 32.658264 L 591.615723 32.658264 L 591.615723 63.083435 L 530.803162 63.083435 L 530.803162 32.658264 Z"/>
-        <path id="path33" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 530.803162 63.083435 L 591.615723 63.083435 L 591.615723 32.658264 L 530.803162 32.658264 L 530.803162 63.083435 Z"/>
-        <path id="path34" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 561.190552 20.86615 L 561.190552 20.86615 L 561.190552 20.86615 L 561.190552 20.86615 L 561.190552 20.86615 L 561.190552 20.86615 Z"/>
-        <path id="path35" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 561.190552 70.944885 L 561.190552 536.280273"/>
-        <path id="path36" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 560.925964 70.982666 L 561.49292 70.982666 L 561.49292 70.680298 L 561.49292 70.566956 L 561.417297 70.453552 L 561.303955 70.415771 L 561.190552 70.37793 L 561.077148 70.415771 L 561.001587 70.453552 L 560.925964 70.566956 L 560.925964 70.680298 L 560.925964 70.982666 Z"/>
-        <path id="path37" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 561.49292 536.242554 L 560.925964 536.242554 L 560.925964 536.544922 L 560.925964 536.658264 L 561.001587 536.771667 L 561.077148 536.847229 L 561.190552 536.847229 L 561.303955 536.847229 L 561.417297 536.771667 L 561.49292 536.658264 L 561.49292 536.544922 L 561.49292 536.242554 Z"/>
-        <path id="path38" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 529.518127 25.099182 L 592.900818 25.099182 L 592.900818 70.680298 L 529.518127 70.680298 L 529.518127 25.099182 Z"/>
-        <path id="path39" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 529.518127 70.680298 L 592.900818 70.680298 L 592.900818 25.099182 L 529.518127 25.099182 L 529.518127 70.680298 Z"/>
-        <text id="IN" xml:space="preserve" x="541" y="54" font-family="Calibri" font-size="14.324409" fill="#ffffff">IN</text>
-        <text id="text11" xml:space="preserve" x="554" y="54" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text12" xml:space="preserve" x="558" y="54" font-family="Calibri" font-size="14.324409" fill="#ffffff">CSE</text>
-        <path id="path40" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 600.49762 32.658264 L 661.348022 32.658264 L 661.348022 63.083435 L 600.49762 63.083435 L 600.49762 32.658264 Z"/>
-        <path id="path41" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 600.49762 63.083435 L 661.348022 63.083435 L 661.348022 32.658264 L 600.49762 32.658264 L 600.49762 63.083435 Z"/>
-        <text id="text13" xml:space="preserve" x="619" y="53" font-family="Calibri" font-size="9.524409" fill="#ffffff">IN</text>
-        <text id="text14" xml:space="preserve" x="628" y="53" font-family="Calibri" font-size="9.524409" fill="#ffffff">-</text>
-        <text id="text15" xml:space="preserve" x="631" y="53" font-family="Calibri" font-size="9.524409" fill="#ffffff">AE</text>
-        <path id="path42" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 630.922852 20.86615 L 630.922852 20.86615 L 630.922852 20.86615 L 630.922852 20.86615 L 630.922852 20.86615 L 630.922852 20.86615 Z"/>
-        <path id="path43" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 630.922852 70.944885 L 630.922852 536.280273"/>
-        <path id="path44" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 630.620483 70.982666 L 631.22522 70.982666 L 631.22522 70.680298 L 631.187378 70.566956 L 631.149597 70.453552 L 631.036194 70.415771 L 630.922852 70.37793 L 630.809448 70.415771 L 630.733887 70.453552 L 630.658264 70.566956 L 630.620483 70.680298 L 630.620483 70.982666 Z"/>
-        <path id="path45" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 631.22522 536.242554 L 630.620483 536.242554 L 630.620483 536.544922 L 630.658264 536.658264 L 630.733887 536.771667 L 630.809448 536.847229 L 630.922852 536.847229 L 631.036194 536.847229 L 631.149597 536.771667 L 631.187378 536.658264 L 631.22522 536.544922 L 631.22522 536.242554 Z"/>
-        <path id="path46" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 599.212585 25.099182 L 662.633057 25.099182 L 662.633057 70.680298 L 599.212585 70.680298 L 599.212585 25.099182 Z"/>
-        <path id="path47" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 599.212585 70.680298 L 662.633057 70.680298 L 662.633057 25.099182 L 599.212585 25.099182 L 599.212585 70.680298 Z"/>
-        <text id="text16" xml:space="preserve" x="613" y="54" font-family="Calibri" font-size="14.324409" fill="#ffffff">IN</text>
-        <text id="text17" xml:space="preserve" x="627" y="54" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text18" xml:space="preserve" x="631" y="54" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <path id="path48" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 281.35434 154.623596 L 465.568481 154.623596"/>
-        <path id="path49" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 281.467712 155.530701 L 281.467712 153.754333 L 280.598419 153.754333 L 280.25827 153.829895 L 279.955902 154.018921 L 279.766937 154.283447 L 279.691345 154.623596 L 279.766937 155.001587 L 279.955902 155.266113 L 280.25827 155.455139 L 280.598419 155.530701 L 281.467712 155.530701 Z"/>
-        <path id="path50" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 465.455139 153.754333 L 465.455139 155.530701 L 466.362183 155.530701 L 466.702393 155.455139 L 466.966919 155.266113 L 467.193726 155.001587 L 467.231506 154.623596 L 467.193726 154.283447 L 466.966919 154.018921 L 466.702393 153.829895 L 466.362183 153.754333 L 465.455139 153.754333 Z"/>
-        <path id="path51" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 464.925964 148.992126 L 476.226746 154.623596 L 464.925964 160.292908 L 464.925964 148.992126 L 464.925964 148.992126 Z"/>
-        <path id="path52" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 375.993713 148.916565 L 380.831482 148.916565 L 380.831482 160.36853 L 375.993713 160.36853 L 375.993713 148.916565 Z"/>
-        <text id="text19" xml:space="preserve" x="375" y="159" font-family="Calibri" font-size="9.524409" fill="#607423">1</text>
-        <path id="path53" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 296.925995 89.048828 L 464.812622 89.048828 L 464.812622 142.226746 L 296.925995 142.226746 L 296.925995 89.048828 Z"/>
-        <path id="path54" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 296.925995 142.226746 L 464.812622 142.226746 L 464.812622 89.048828 L 296.925995 89.048828 L 296.925995 142.226746 Z"/>
-        <text id="Discovery-" xml:space="preserve" x="317" y="108" font-family="Calibri" font-size="11.943307" fill="#406fc5">Discovery</text>
-        <text id="text20" xml:space="preserve" x="366" y="108" font-family="Calibri" font-size="11.943307" fill="#406fc5">(</text>
-        <text id="GET" xml:space="preserve" x="370" y="108" font-family="Calibri" font-size="11.943307" fill="#406fc5">GET</text>
-        <text id="text21" xml:space="preserve" x="389" y="108" font-family="Calibri" font-size="11.943307" fill="#406fc5">)</text>
-        <text id="with-filter-" xml:space="preserve" x="396" y="108" font-family="Calibri" font-size="11.943307" fill="#406fc5">with filter</text>
-        <text id="criteria" xml:space="preserve" x="357" y="131" font-family="Calibri" font-size="11.943307" fill="#406fc5">criteria</text>
-        <text id="text22" xml:space="preserve" x="391" y="131" font-family="Calibri" font-size="11.943307" fill="#406fc5">(</text>
-        <text id="s" xml:space="preserve" x="395" y="131" font-family="Calibri" font-size="11.943307" fill="#406fc5">s</text>
-        <text id="text23" xml:space="preserve" x="399" y="131" font-family="Calibri" font-size="11.943307" fill="#406fc5">)</text>
-        <path id="path55" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 475.470886 277.38269 L 291.256683 277.38269"/>
-        <path id="path56" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 475.357483 276.475586 L 475.357483 278.251953 L 476.226746 278.251953 L 476.566956 278.214172 L 476.869263 277.987427 L 477.058289 277.722839 L 477.13385 277.38269 L 477.058289 277.042542 L 476.869263 276.740173 L 476.566956 276.551208 L 476.226746 276.475586 L 475.357483 276.475586 Z"/>
-        <path id="path57" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 291.370087 278.251953 L 291.370087 276.475586 L 290.462982 276.475586 L 290.122833 276.551208 L 289.820465 276.740173 L 289.6315 277.042542 L 289.593689 277.38269 L 289.6315 277.722839 L 289.820465 277.987427 L 290.122833 278.214172 L 290.462982 278.251953 L 291.370087 278.251953 Z"/>
-        <path id="path58" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 291.8992 283.01416 L 280.598419 277.38269 L 291.8992 271.713379 L 291.8992 283.01416 L 291.8992 283.01416 Z"/>
-        <path id="path59" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 375.993713 271.637817 L 380.831482 271.637817 L 380.831482 283.089783 L 375.993713 283.089783 L 375.993713 271.637817 Z"/>
-        <text id="text24" xml:space="preserve" x="375" y="282" font-family="Calibri" font-size="9.524409" fill="#607423">2</text>
-        <path id="path60" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 294.847229 180.24884 L 464.812622 180.24884 L 464.812622 257.653564 L 294.847229 257.653564 L 294.847229 180.24884 Z"/>
-        <path id="path61" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 294.847229 257.653564 L 464.812622 257.653564 L 464.812622 180.24884 L 294.847229 180.24884 L 294.847229 257.653564 Z"/>
-        <text id="IDs-of-discovered-" xml:space="preserve" x="313" y="217" font-family="Calibri" font-size="11.943307" fill="#406fc5">IDs of discovered</text>
-        <text id="container" xml:space="preserve" x="399" y="217" font-family="Calibri" font-size="11.943307" fill="#406fc5">container</text>
-        <text id="resources" xml:space="preserve" x="355" y="232" font-family="Calibri" font-size="11.943307" fill="#406fc5">resources</text>
-        <path id="path62" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 159.955902 85.38269 L 268.881897 85.38269 L 268.881897 248.318115 L 159.955902 248.318115 L 159.955902 85.38269 Z"/>
-        <path id="path63" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 159.955902 248.318115 L 268.881897 248.318115 L 268.881897 85.38269 L 159.955902 85.38269 L 159.955902 248.318115 Z"/>
-        <text id="text25" xml:space="preserve" x="171" y="137" font-family="Calibri" font-size="11.943307" fill="#406fc5">MN</text>
-        <text id="text26" xml:space="preserve" x="189" y="137" font-family="Calibri" font-size="11.943307" fill="#406fc5">-</text>
-        <text id="text27" xml:space="preserve" x="193" y="137" font-family="Calibri" font-size="11.943307" fill="#406fc5">AE</text>
-        <text id="discovers-" xml:space="preserve" x="211" y="137" font-family="Calibri" font-size="11.943307" fill="#406fc5">discovers</text>
-        <text id="the-container-" xml:space="preserve" x="181" y="151" font-family="Calibri" font-size="11.943307" fill="#406fc5">the container</text>
-        <text id="resources-stored-in-" xml:space="preserve" x="167" y="165" font-family="Calibri" font-size="11.943307" fill="#406fc5">resources stored in</text>
-        <text id="text28" xml:space="preserve" x="182" y="180" font-family="Calibri" font-size="11.943307" fill="#406fc5">MN</text>
-        <text id="text29" xml:space="preserve" x="200" y="180" font-family="Calibri" font-size="11.943307" fill="#406fc5">-</text>
-        <text id="CSE-with-" xml:space="preserve" x="203" y="180" font-family="Calibri" font-size="11.943307" fill="#406fc5">CSE with</text>
-        <text id="specific-filter-" xml:space="preserve" x="182" y="194" font-family="Calibri" font-size="11.943307" fill="#406fc5">specific filter</text>
-        <text id="text30" xml:space="preserve" x="190" y="208" font-family="Calibri" font-size="11.943307" fill="#406fc5">criteria</text>
-        <text id="text31" xml:space="preserve" x="225" y="208" font-family="Calibri" font-size="11.943307" fill="#406fc5">(</text>
-        <text id="text32" xml:space="preserve" x="228" y="208" font-family="Calibri" font-size="11.943307" fill="#406fc5">s</text>
-        <text id="text33" xml:space="preserve" x="233" y="208" font-family="Calibri" font-size="11.943307" fill="#406fc5">)</text>
-        <path id="path64" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 281.35434 467.266144 L 465.568481 467.266144"/>
-        <path id="path65" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 281.467712 468.173218 L 281.467712 466.396851 L 280.598419 466.396851 L 280.25827 466.472443 L 279.955902 466.661407 L 279.766937 466.925995 L 279.691345 467.266144 L 279.766937 467.606293 L 279.955902 467.908661 L 280.25827 468.097626 L 280.598419 468.173218 L 281.467712 468.173218 Z"/>
-        <path id="path66" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 465.455139 466.396851 L 465.455139 468.173218 L 466.362183 468.173218 L 466.702393 468.097626 L 466.966919 467.908661 L 467.193726 467.606293 L 467.231506 467.266144 L 467.193726 466.925995 L 466.966919 466.661407 L 466.702393 466.472443 L 466.362183 466.396851 L 465.455139 466.396851 Z"/>
-        <path id="path67" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 464.925964 461.634644 L 476.226746 467.266144 L 464.925964 472.935425 L 464.925964 461.634644 L 464.925964 461.634644 Z"/>
-        <path id="path68" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 375.993713 461.559052 L 380.831482 461.559052 L 380.831482 473.011017 L 375.993713 473.011017 L 375.993713 461.559052 Z"/>
-        <text id="3" xml:space="preserve" x="375" y="472" font-family="Calibri" font-size="9.524409" fill="#607423">3</text>
-        <path id="path69" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 159.955902 320.204712 L 268.881897 320.204712 L 268.881897 483.140167 L 159.955902 483.140167 L 159.955902 320.204712 Z"/>
-        <path id="path70" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 159.955902 483.140167 L 268.881897 483.140167 L 268.881897 320.204712 L 159.955902 320.204712 L 159.955902 483.140167 Z"/>
-        <text id="text34" xml:space="preserve" x="166" y="371" font-family="Calibri" font-size="11.943307" fill="#406fc5">MN</text>
-        <text id="text35" xml:space="preserve" x="184" y="371" font-family="Calibri" font-size="11.943307" fill="#406fc5">-</text>
-        <text id="AE-update" xml:space="preserve" x="187" y="371" font-family="Calibri" font-size="11.943307" fill="#406fc5">AE update</text>
-        <text id="text36" xml:space="preserve" x="237" y="371" font-family="Calibri" font-size="11.943307" fill="#406fc5">s</text>
-        <text id="the-" xml:space="preserve" x="245" y="371" font-family="Calibri" font-size="11.943307" fill="#406fc5">the</text>
-        <text id="group-resource-with-" xml:space="preserve" x="164" y="386" font-family="Calibri" font-size="11.943307" fill="#406fc5">group resource with</text>
-        <text id="the-IDs-of-the" xml:space="preserve" x="181" y="400" font-family="Calibri" font-size="11.943307" fill="#406fc5">the IDs of the</text>
-        <text id="discovered-" xml:space="preserve" x="187" y="414" font-family="Calibri" font-size="11.943307" fill="#406fc5">discovered</text>
-        <text id="container-resources" xml:space="preserve" x="165" y="429" font-family="Calibri" font-size="11.943307" fill="#406fc5">container resources</text>
-        <path id="path71" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 294.847229 329.577942 L 466.891357 329.577942 L 466.891357 435.933868 L 294.847229 435.933868 L 294.847229 329.577942 Z"/>
-        <path id="path72" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 294.847229 435.933868 L 466.891357 435.933868 L 466.891357 329.577942 L 294.847229 329.577942 L 294.847229 435.933868 Z"/>
-        <text id="Update-group-resource-members" xml:space="preserve" x="299" y="374" font-family="Calibri" font-size="11.943307" fill="#406fc5">Update group resource members</text>
-        <text id="with-IDs-of-discovered" xml:space="preserve" x="302" y="388" font-family="Calibri" font-size="11.943307" fill="#406fc5">with IDs of discovered container</text>
-        <text id="text37" xml:space="preserve" x="356" y="403" font-family="Calibri" font-size="11.943307" fill="#406fc5">resources</text>
-        <path id="path73" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 471.162231 175.524414 L 481.329163 175.524414 L 481.329163 277.38269 L 471.162231 277.38269 L 471.162231 175.524414 Z"/>
-        <path id="path74" fill="none" stroke="#6ca43e" stroke-width="0.604724" stroke-linejoin="round" d="M 481.329163 277.38269 L 481.329163 175.524414 L 471.162231 175.524414 L 471.162231 277.38269 L 481.329163 277.38269 Z"/>
-    </g>
-</svg>
+<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="387px" preserveAspectRatio="none" style="width:585px;height:387px;background:#FFFFFF;" version="1.1" viewBox="0 0 585 387" width="585px" zoomAndPan="magnify"><defs/><g><rect fill="#FFFFFF" height="124.7969" style="stroke:#181818;stroke-width:1.0;" width="10" x="409.5" y="82.5625"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="48" x2="48" y1="36.2969" y2="380.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="134" x2="134" y1="36.2969" y2="380.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="211" x2="211" y1="36.2969" y2="380.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="414" x2="414" y1="36.2969" y2="380.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="489" x2="489" y1="36.2969" y2="380.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="554" x2="554" y1="36.2969" y2="380.4219"/><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="10" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="17" y="24.9951">ADN-AE1</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="96" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="103" y="24.9951">ADN-AE2</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="59" x="182" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="189" y="24.9951">MN-AE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="69" x="380" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="387" y="24.9951">MN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="60" x="459" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="466" y="24.9951">IN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="50" x="529" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="536" y="24.9951">IN-AE</text><rect fill="#FFFFFF" height="124.7969" style="stroke:#181818;stroke-width:1.0;" width="10" x="409.5" y="82.5625"/><polygon fill="#181818" points="397.5,78.5625,407.5,82.5625,397.5,86.5625,401.5,82.5625" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="211.5" x2="403.5" y1="82.5625" y2="82.5625"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="179" x="221" y="62.3638">1) Discovery (GET) with filter</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="61" x="280" y="77.4966">criteria(s)</text><path d="M5,95.5625 L5,165.5625 L207,165.5625 L207,105.5625 L197,95.5625 L5,95.5625 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M197,95.5625 L197,105.5625 L207,105.5625 L197,95.5625 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="132" x="40" y="112.6294">MN-AE discovers the</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="172" x="20" y="127.7622">container resources stored</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="147" x="32.5" y="142.895">in MN-CSE with specific</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="93" x="59.5" y="158.0278">filter criteria(s)</text><polygon fill="#181818" points="222.5,203.3594,212.5,207.3594,222.5,211.3594,218.5,207.3594" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="216.5" x2="413.5" y1="207.3594" y2="207.3594"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="126" x="250" y="187.1606">2) IDs of discovered</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="127" x="249.5" y="202.2935">container resources</text><polygon fill="#181818" points="402.5,277.8906,412.5,281.8906,402.5,285.8906,406.5,281.8906" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="211.5" x2="408.5" y1="281.8906" y2="281.8906"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="165" x="230.5" y="231.4263">3) Update group resource</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="131" x="247.5" y="246.5591">members with IDs of</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="133" x="246.5" y="261.6919">discovered container</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="63" x="281.5" y="276.8247">resources</text><path d="M25,294.8906 L25,364.8906 L206,364.8906 L206,304.8906 L196,294.8906 L25,294.8906 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M196,294.8906 L196,304.8906 L206,304.8906 L196,294.8906 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="124" x="53.5" y="311.9575">MN-AE updates the</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="151" x="40" y="327.0903">group resource with the</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="134" x="48.5" y="342.2231">IDs of the discovered</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="127" x="52" y="357.356">container resources</text><!--SRC=[TP8_Ry8m4CNd-5DSqm4oC42t3fMYWYe6KANIBOknBs0riLFReVJRzn8dX7-TVDRFldVlsNib4N9Z_DOScVjIkkAMb-3mkqOjS8NEyHscXTff4AWzshDJsdZSuD6tk2JQ7naz-3sM25N1bJxjIcuT6_7Q6rsNMxGGZnyJY1bZxznw9LJ5gKMSpjUJT36DWJkWcifxV3RmsILVDRYbAu8txFMZXrHTqkL0btTfsaFgorZJ7YOleTCpJ1EOAoVC0UqlZDyMcmH-bDz3hWhA9DF2AbeL7xk4SU7LWNlifbXJa51Wxi7aOUgeTG6oQ-Y08cIHCDfJeXITHMTgAz21yyQYP97I4Dm5LLUXKBaIB0hwS2wFMhQFrtXeRhGcKl8mIs0vTyqKlJ9AclnMbacyyd0TnrC2dvLi-CwQkZfTpUYdDA_lmfn1BjE37fpaCZte_HjHtOfq0LrA1OKMTAweFdDsDz0Xd3y0]--></g></svg>
\ No newline at end of file
diff --git a/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.png b/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.png
index 93b0070244728c6f41268766998c696335256d5a..709a0f922148592d593c32a5d865348117e1b2cc 100644
Binary files a/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.png and b/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.png differ
diff --git a/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.puml b/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.puml
new file mode 100644
index 0000000000000000000000000000000000000000..a3d4cb48991fc0cc645f7b9b6f182b03bd3ab4da
--- /dev/null
+++ b/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.puml
@@ -0,0 +1,53 @@
+@startuml
+hide footbox
+skinparam sequenceMessageAlign center
+skinparam noteTextAlignment center
+'!theme plain
+'!theme mars
+'autonumber "(#) "
+
+
+Participant "ADN-AE1" as ADNAE1
+Participant "ADN-AE2" as ADNAE2
+Participant "MN-AE" as MNAE
+Participant "MN-CSE" as MNCSE
+Participant "IN-CSE" as INCSE
+Participant "IN-AE" as INAE
+
+INAE -> INCSE: 1-1) Discovery single light\ncontainer with filter\ncriteria
+INCSE -> MNCSE: 1-2)
+activate MNCSE
+Note left of MNCSE
+	IN-AE discovers each
+	single light container
+	located in MN-CSE
+end note
+
+MNCSE -> INCSE: 2-1)
+deactivate MNCSE
+
+INCSE -> INAE: 2-2) URIs of discovered\ncontainer resources\nare responded
+INAE -> INCSE: 3-1-1) Retrieval of the latest\ncontentInstance from\ndiscovered light container\n light#1
+INCSE -> MNCSE: 3-1-2)
+activate MNCSE
+Note left of MNCSE
+	Retrieval of the latest
+	contentInstance from
+	each discovered single
+	light container
+end note
+
+MNCSE -> INCSE: 4-1-1)
+deactivate MNCSE
+
+INCSE -> INAE: 4-1-2) The latest\ncontentInstance of container\nlight_1 is responded
+INAE -> INCSE: 3-2-1) Retrieval of the latest\ncontentInstance from\ndiscovered light container\n light#2
+INCSE -> MNCSE: 3-2-2)
+activate MNCSE
+
+MNCSE ->> INCSE: 4-2-1)
+deactivate MNCSE
+
+INCSE ->> INAE: 4-2-2) The latest\ncontentInstance of container\nlight#2 is responded
+
+@enduml
diff --git a/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.svg b/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.svg
index 38cd6f4d6904886bc105b1873a75e2ec31feac11..6a8366d912136ea0bf44c6ada1db9bdd5b04d873 100644
--- a/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.svg
+++ b/media/DiscoveryAndSingleLightRetrievalPhaseCallFlows.svg
@@ -1,255 +1 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Generated by Pixelmator Pro 3.5.6 -->
-<svg width="750" height="601" viewBox="0 0 750 601" xmlns="http://www.w3.org/2000/svg">
-    <g id="id3">
-        <path id="Path" fill="none" stroke="none" d="M 13.795277 14.713379 L 731.905518 14.713379 L 731.905518 600.766968 L 13.795277 600.766968 Z"/>
-        <path id="path1" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 25.587402 20.571655 L 86.51339 20.571655 L 86.51339 51.072449 L 25.587402 51.072449 L 25.587402 20.571655 Z"/>
-        <path id="path2" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 25.587402 51.072449 L 86.51339 51.072449 L 86.51339 20.571655 L 25.587402 20.571655 L 25.587402 51.072449 Z"/>
-        <path id="path3" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 56.050392 51.450378 L 56.050392 572.231506"/>
-        <path id="path4" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 55.596848 51.526001 L 56.503937 51.526001 L 56.503937 51.072449 L 56.466141 50.883484 L 56.352753 50.770081 L 56.201576 50.656677 L 56.050392 50.618896 L 55.86142 50.656677 L 55.710236 50.770081 L 55.634644 50.883484 L 55.596848 51.072449 L 55.596848 51.526001 Z"/>
-        <path id="path5" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 56.503937 572.155884 L 55.596848 572.155884 L 55.596848 572.609436 L 55.634644 572.798462 L 55.710236 572.911804 L 55.86142 573.025208 L 56.050392 573.062988 L 56.201576 573.025208 L 56.352753 572.911804 L 56.466141 572.798462 L 56.503937 572.609436 L 56.503937 572.155884 Z"/>
-        <path id="path6" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 15.420471 20.571655 L 96.642517 20.571655 L 96.642517 51.072449 L 15.420471 51.072449 L 15.420471 20.571655 Z"/>
-        <path id="path7" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 15.420471 51.072449 L 96.642517 51.072449 L 96.642517 20.571655 L 15.420471 20.571655 L 15.420471 51.072449 Z"/>
-        <text id="ADN" xml:space="preserve" x="28" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">ADN</text>
-        <text id="-" xml:space="preserve" x="55" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="AE" xml:space="preserve" x="59" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <text id="1" xml:space="preserve" x="75" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">1</text>
-        <path id="path8" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 171.099213 20.571655 L 232.025208 20.571655 L 232.025208 51.072449 L 171.099213 51.072449 L 171.099213 20.571655 Z"/>
-        <path id="path9" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 171.099213 51.072449 L 232.025208 51.072449 L 232.025208 20.571655 L 171.099213 20.571655 L 171.099213 51.072449 Z"/>
-        <text id="AND" xml:space="preserve" x="181" y="41" font-family="Calibri" font-size="10.733858" fill="#ffffff">AND</text>
-        <text id="text1" xml:space="preserve" x="200" y="41" font-family="Calibri" font-size="10.733858" fill="#ffffff">-</text>
-        <text id="text2" xml:space="preserve" x="204" y="41" font-family="Calibri" font-size="10.733858" fill="#ffffff">AE</text>
-        <text id="2" xml:space="preserve" x="215" y="41" font-family="Calibri" font-size="10.733858" fill="#ffffff">2</text>
-        <path id="path10" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 201.56221 51.450378 L 201.56221 578.996826"/>
-        <path id="path11" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 201.108658 51.526001 L 202.015747 51.526001 L 202.015747 51.072449 L 201.977951 50.883484 L 201.864563 50.770081 L 201.713379 50.656677 L 201.56221 50.618896 L 201.37323 50.656677 L 201.259842 50.770081 L 201.146454 50.883484 L 201.108658 51.072449 L 201.108658 51.526001 Z"/>
-        <path id="path12" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 202.015747 578.921265 L 201.108658 578.921265 L 201.108658 579.374817 L 201.146454 579.563782 L 201.259842 579.714966 L 201.37323 579.790527 L 201.56221 579.828369 L 201.713379 579.790527 L 201.864563 579.714966 L 201.977951 579.563782 L 202.015747 579.374817 L 202.015747 578.921265 Z"/>
-        <path id="path13" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 160.932281 20.571655 L 242.154327 20.571655 L 242.154327 51.072449 L 160.932281 51.072449 L 160.932281 20.571655 Z"/>
-        <path id="path14" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 160.932281 51.072449 L 242.154327 51.072449 L 242.154327 20.571655 L 160.932281 20.571655 L 160.932281 51.072449 Z"/>
-        <text id="text3" xml:space="preserve" x="173" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">ADN</text>
-        <text id="text4" xml:space="preserve" x="200" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text5" xml:space="preserve" x="205" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <text id="text6" xml:space="preserve" x="221" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">2</text>
-        <path id="path15" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 292.913391 20.571655 L 353.839355 20.571655 L 353.839355 51.072449 L 292.913391 51.072449 L 292.913391 20.571655 Z"/>
-        <path id="path16" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 292.913391 51.072449 L 353.839355 51.072449 L 353.839355 20.571655 L 292.913391 20.571655 L 292.913391 51.072449 Z"/>
-        <path id="path17" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 323.376373 51.450378 L 323.376373 578.996826"/>
-        <path id="path18" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 322.922821 51.526001 L 323.829926 51.526001 L 323.829926 51.072449 L 323.792114 50.883484 L 323.716522 50.770081 L 323.565369 50.656677 L 323.376373 50.618896 L 323.225189 50.656677 L 323.074005 50.770081 L 322.960632 50.883484 L 322.922821 51.072449 L 322.922821 51.526001 Z"/>
-        <path id="path19" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 323.829926 578.921265 L 322.922821 578.921265 L 322.922821 579.374817 L 322.960632 579.563782 L 323.074005 579.714966 L 323.225189 579.790527 L 323.376373 579.828369 L 323.565369 579.790527 L 323.716522 579.714966 L 323.792114 579.563782 L 323.829926 579.374817 L 323.829926 578.921265 Z"/>
-        <path id="path20" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 282.784241 20.571655 L 364.006287 20.571655 L 364.006287 51.072449 L 282.784241 51.072449 L 282.784241 20.571655 Z"/>
-        <path id="path21" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 282.784241 51.072449 L 364.006287 51.072449 L 364.006287 20.571655 L 282.784241 20.571655 L 282.784241 51.072449 Z"/>
-        <text id="MN" xml:space="preserve" x="301" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">MN</text>
-        <text id="text7" xml:space="preserve" x="323" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text8" xml:space="preserve" x="328" y="42" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <path id="path22" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 394.469299 22.272461 L 455.357483 22.272461 L 455.357483 52.773254 L 394.469299 52.773254 L 394.469299 22.272461 Z"/>
-        <path id="path23" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 394.469299 52.773254 L 455.357483 52.773254 L 455.357483 22.272461 L 394.469299 22.272461 L 394.469299 52.773254 Z"/>
-        <path id="path24" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 424.894501 53.151184 L 424.894501 578.996826"/>
-        <path id="path25" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 424.440948 53.226746 L 425.348022 53.226746 L 425.348022 52.773254 L 425.310242 52.584229 L 425.23465 52.433044 L 425.083466 52.357483 L 424.894501 52.319702 L 424.743317 52.357483 L 424.592133 52.433044 L 424.478729 52.584229 L 424.440948 52.773254 L 424.440948 53.226746 Z"/>
-        <path id="path26" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 425.348022 578.921265 L 424.440948 578.921265 L 424.440948 579.374817 L 424.478729 579.563782 L 424.592133 579.714966 L 424.743317 579.790527 L 424.894501 579.828369 L 425.083466 579.790527 L 425.23465 579.714966 L 425.310242 579.563782 L 425.348022 579.374817 L 425.348022 578.921265 Z"/>
-        <path id="path27" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 384.302368 22.272461 L 465.524414 22.272461 L 465.524414 52.773254 L 384.302368 52.773254 L 384.302368 22.272461 Z"/>
-        <path id="path28" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 384.302368 52.773254 L 465.524414 52.773254 L 465.524414 22.272461 L 384.302368 22.272461 L 384.302368 52.773254 Z"/>
-        <text id="text9" xml:space="preserve" x="400" y="44" font-family="Calibri" font-size="14.324409" fill="#ffffff">MN</text>
-        <text id="text10" xml:space="preserve" x="422" y="44" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="CSE" xml:space="preserve" x="426" y="44" font-family="Calibri" font-size="14.324409" fill="#ffffff">CSE</text>
-        <path id="path29" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 516.283447 22.272461 L 577.171631 22.272461 L 577.171631 52.773254 L 516.283447 52.773254 L 516.283447 22.272461 Z"/>
-        <path id="path30" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 516.283447 52.773254 L 577.171631 52.773254 L 577.171631 22.272461 L 516.283447 22.272461 L 516.283447 52.773254 Z"/>
-        <path id="path31" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 546.74646 53.151184 L 546.74646 578.996826"/>
-        <path id="path32" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 546.292908 53.226746 L 547.200012 53.226746 L 547.200012 52.773254 L 547.162231 52.584229 L 547.048828 52.433044 L 546.897644 52.357483 L 546.74646 52.319702 L 546.557495 52.357483 L 546.406311 52.433044 L 546.330688 52.584229 L 546.292908 52.773254 L 546.292908 53.226746 Z"/>
-        <path id="path33" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 547.200012 578.921265 L 546.292908 578.921265 L 546.292908 579.374817 L 546.330688 579.563782 L 546.406311 579.714966 L 546.557495 579.790527 L 546.74646 579.828369 L 546.897644 579.790527 L 547.048828 579.714966 L 547.162231 579.563782 L 547.200012 579.374817 L 547.200012 578.921265 Z"/>
-        <path id="path34" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 506.116516 22.272461 L 587.338562 22.272461 L 587.338562 52.773254 L 506.116516 52.773254 L 506.116516 22.272461 Z"/>
-        <path id="path35" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 506.116516 52.773254 L 587.338562 52.773254 L 587.338562 22.272461 L 506.116516 22.272461 L 506.116516 52.773254 Z"/>
-        <text id="IN" xml:space="preserve" x="526" y="44" font-family="Calibri" font-size="14.324409" fill="#ffffff">IN</text>
-        <text id="text11" xml:space="preserve" x="540" y="44" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text12" xml:space="preserve" x="544" y="44" font-family="Calibri" font-size="14.324409" fill="#ffffff">CSE</text>
-        <path id="path36" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 660.094482 22.272461 L 721.020447 22.272461 L 721.020447 52.773254 L 660.094482 52.773254 L 660.094482 22.272461 Z"/>
-        <path id="path37" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 660.094482 52.773254 L 721.020447 52.773254 L 721.020447 22.272461 L 660.094482 22.272461 L 660.094482 52.773254 Z"/>
-        <path id="path38" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 690.557495 53.151184 L 690.557495 578.996826"/>
-        <path id="path39" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 690.103943 53.226746 L 691.011047 53.226746 L 691.011047 52.773254 L 690.973206 52.584229 L 690.859863 52.433044 L 690.708679 52.357483 L 690.557495 52.319702 L 690.36853 52.357483 L 690.255127 52.433044 L 690.141724 52.584229 L 690.103943 52.773254 L 690.103943 53.226746 Z"/>
-        <path id="path40" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 691.011047 578.921265 L 690.103943 578.921265 L 690.103943 579.374817 L 690.141724 579.563782 L 690.255127 579.714966 L 690.36853 579.790527 L 690.557495 579.828369 L 690.708679 579.790527 L 690.859863 579.714966 L 690.973206 579.563782 L 691.011047 579.374817 L 691.011047 578.921265 Z"/>
-        <path id="path41" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 649.965332 22.272461 L 731.149597 22.272461 L 731.149597 52.773254 L 649.965332 52.773254 L 649.965332 22.272461 Z"/>
-        <path id="path42" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 649.965332 52.773254 L 731.149597 52.773254 L 731.149597 22.272461 L 649.965332 22.272461 L 649.965332 52.773254 Z"/>
-        <text id="text13" xml:space="preserve" x="673" y="44" font-family="Calibri" font-size="14.324409" fill="#ffffff">IN</text>
-        <text id="text14" xml:space="preserve" x="686" y="44" font-family="Calibri" font-size="14.324409" fill="#ffffff">-</text>
-        <text id="text15" xml:space="preserve" x="691" y="44" font-family="Calibri" font-size="14.324409" fill="#ffffff">AE</text>
-        <path id="path43" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 689.763794 111.544861 L 557.404724 113.548035"/>
-        <path id="path44" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 689.650391 110.675598 L 689.688171 112.451965 L 690.557495 112.451965 L 690.897644 112.376404 L 691.200012 112.187378 L 691.388977 111.88501 L 691.464539 111.544861 L 691.388977 111.204712 L 691.162231 110.902344 L 690.897644 110.713379 L 690.557495 110.637817 L 689.650391 110.675598 Z"/>
-        <path id="path45" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 557.555908 114.455139 L 557.518127 112.678711 L 556.611023 112.678711 L 556.270874 112.754333 L 556.006287 112.943298 L 555.817322 113.245667 L 555.74176 113.585815 L 555.817322 113.925964 L 556.006287 114.228333 L 556.308655 114.417297 L 556.648804 114.455139 L 557.555908 114.455139 Z"/>
-        <path id="path46" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 558.122864 119.217346 L 546.74646 113.737 L 557.97168 107.878723 L 558.122864 119.217346 L 558.122864 119.217346 Z"/>
-        <path id="path47" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 612.35907 106.896057 L 624.944885 106.896057 L 624.944885 118.385803 L 612.35907 118.385803 L 612.35907 106.896057 Z"/>
-        <text id="text16" xml:space="preserve" x="611" y="117" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text17" xml:space="preserve" x="616" y="117" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text18" xml:space="preserve" x="619" y="117" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <path id="path48" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 563.338562 59.727539 L 676.686584 59.727539 L 676.686584 102.927551 L 563.338562 102.927551 L 563.338562 59.727539 Z"/>
-        <path id="path49" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 563.338562 102.927551 L 676.686584 102.927551 L 676.686584 59.727539 L 563.338562 59.727539 L 563.338562 102.927551 Z"/>
-        <text id="Discovery-single-light-" xml:space="preserve" x="568" y="73" font-family="Calibri" font-size="11.640945" fill="#406fc5">Discovery single light</text>
-        <text id="container-with-filter-" xml:space="preserve" x="571" y="87" font-family="Calibri" font-size="11.640945" fill="#406fc5">container with filter</text>
-        <text id="criterias" xml:space="preserve" x="599" y="101" font-family="Calibri" font-size="11.640945" fill="#406fc5">criterias</text>
-        <path id="path50" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 429.996857 188.231506 L 429.996857 113.737 L 419.829926 113.737 L 419.829926 188.231506 L 429.996857 188.231506 L 429.996857 188.231506 Z"/>
-        <path id="path51" fill="none" stroke="#6ca43e" stroke-width="0.907087" stroke-linejoin="round" d="M 429.996857 188.231506 L 429.996857 113.737 L 419.829926 113.737 L 419.829926 188.231506 L 429.996857 188.231506 Z"/>
-        <path id="path52" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 425.688202 188.231506 L 536.050415 188.231506"/>
-        <path id="path53" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 425.801575 189.138611 L 425.801575 187.324402 L 424.894501 187.324402 L 424.554321 187.400024 L 424.289764 187.588989 L 424.062988 187.891357 L 424.025208 188.231506 L 424.062988 188.571655 L 424.289764 188.874023 L 424.554321 189.062988 L 424.894501 189.138611 L 425.801575 189.138611 Z"/>
-        <path id="path54" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 535.937012 187.324402 L 535.937012 189.138611 L 536.844116 189.138611 L 537.184265 189.062988 L 537.448792 188.874023 L 537.675598 188.571655 L 537.713379 188.231506 L 537.675598 187.891357 L 537.448792 187.588989 L 537.184265 187.400024 L 536.844116 187.324402 L 535.937012 187.324402 Z"/>
-        <path id="path55" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 535.407898 182.562195 L 546.74646 188.231506 L 535.407898 193.900818 L 535.407898 182.562195 L 535.407898 182.562195 Z"/>
-        <path id="path56" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 479.508667 182.486633 L 492.132263 182.486633 L 492.132263 193.976379 L 479.508667 193.976379 L 479.508667 182.486633 Z"/>
-        <text id="text19" xml:space="preserve" x="479" y="193" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <text id="text20" xml:space="preserve" x="483" y="193" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text21" xml:space="preserve" x="486" y="193" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <path id="path57" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 563.64093 122.203125 L 676.686584 122.203125 L 676.686584 183.166931 L 563.64093 183.166931 L 563.64093 122.203125 Z"/>
-        <path id="path58" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 563.64093 183.166931 L 676.686584 183.166931 L 676.686584 122.203125 L 563.64093 122.203125 L 563.64093 183.166931 Z"/>
-        <text id="URIs-of-discovered-" xml:space="preserve" x="574" y="144" font-family="Calibri" font-size="11.640945" fill="#406fc5">URIs of discovered</text>
-        <text id="container-" xml:space="preserve" x="571" y="158" font-family="Calibri" font-size="11.640945" fill="#406fc5">container</text>
-        <text id="resources-" xml:space="preserve" x="620" y="158" font-family="Calibri" font-size="11.640945" fill="#406fc5">resources</text>
-        <text id="are-responded" xml:space="preserve" x="584" y="173" font-family="Calibri" font-size="11.640945" fill="#406fc5">are responded</text>
-        <path id="path59" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 272.314972 110.033081 L 385.662994 110.033081 L 385.662994 188.722839 L 272.314972 188.722839 L 272.314972 110.033081 Z"/>
-        <path id="path60" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 272.314972 188.722839 L 385.662994 188.722839 L 385.662994 110.033081 L 272.314972 110.033081 L 272.314972 188.722839 Z"/>
-        <text id="text22" xml:space="preserve" x="278" y="141" font-family="Calibri" font-size="11.640945" fill="#406fc5">IN</text>
-        <text id="text23" xml:space="preserve" x="288" y="141" font-family="Calibri" font-size="11.640945" fill="#406fc5">-</text>
-        <text id="text24" xml:space="preserve" x="292" y="141" font-family="Calibri" font-size="11.640945" fill="#406fc5">AE</text>
-        <text id="discovers-" xml:space="preserve" x="307" y="141" font-family="Calibri" font-size="11.640945" fill="#406fc5">discovers</text>
-        <text id="each-" xml:space="preserve" x="355" y="141" font-family="Calibri" font-size="11.640945" fill="#406fc5">each</text>
-        <text id="single" xml:space="preserve" x="277" y="155" font-family="Calibri" font-size="11.640945" fill="#406fc5">single</text>
-        <text id="light-container-" xml:space="preserve" x="308" y="155" font-family="Calibri" font-size="11.640945" fill="#406fc5">light container</text>
-        <text id="located" xml:space="preserve" x="283" y="169" font-family="Calibri" font-size="11.640945" fill="#406fc5">located</text>
-        <text id="in-MN" xml:space="preserve" x="322" y="169" font-family="Calibri" font-size="11.640945" fill="#406fc5">in MN</text>
-        <text id="text25" xml:space="preserve" x="352" y="169" font-family="Calibri" font-size="11.640945" fill="#406fc5">-</text>
-        <text id="text26" xml:space="preserve" x="355" y="169" font-family="Calibri" font-size="11.640945" fill="#406fc5">CSE</text>
-        <path id="path61" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 689.763794 289.825195 L 557.404724 289.825195"/>
-        <path id="path62" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 689.650391 288.918091 L 689.650391 290.7323 L 690.557495 290.7323 L 690.897644 290.656677 L 691.200012 290.467712 L 691.388977 290.165344 L 691.464539 289.825195 L 691.388977 289.485046 L 691.200012 289.182678 L 690.897644 288.993713 L 690.557495 288.918091 L 689.650391 288.918091 Z"/>
-        <path id="path63" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 557.518127 290.7323 L 557.518127 288.918091 L 556.648804 288.918091 L 556.308655 288.993713 L 556.006287 289.182678 L 555.817322 289.485046 L 555.74176 289.825195 L 555.817322 290.165344 L 556.006287 290.467712 L 556.308655 290.656677 L 556.648804 290.7323 L 557.518127 290.7323 Z"/>
-        <path id="path64" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 558.047241 295.494507 L 546.74646 289.825195 L 558.047241 284.155884 L 558.047241 295.494507 L 558.047241 295.494507 Z"/>
-        <path id="path65" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 608.466125 284.080322 L 628.837769 284.080322 L 628.837769 295.570068 L 608.466125 295.570068 L 608.466125 284.080322 Z"/>
-        <text id="3" xml:space="preserve" x="607" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">3</text>
-        <text id="text27" xml:space="preserve" x="612" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text28" xml:space="preserve" x="615" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text29" xml:space="preserve" x="620" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text30" xml:space="preserve" x="623" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <path id="path66" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 563.64093 201.951172 L 676.686584 201.951172 L 676.686584 280.678711 L 563.64093 280.678711 L 563.64093 201.951172 Z"/>
-        <path id="path67" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 563.64093 280.678711 L 676.686584 280.678711 L 676.686584 201.951172 L 563.64093 201.951172 L 563.64093 280.678711 Z"/>
-        <text id="retrieval-of-" xml:space="preserve" x="568" y="225" font-family="Calibri" font-size="11.640945" fill="#406fc5">retrieval of</text>
-        <text id="the-latest-" xml:space="preserve" x="624" y="225" font-family="Calibri" font-size="11.640945" fill="#406fc5">the latest</text>
-        <text id="content-instance-" xml:space="preserve" x="579" y="240" font-family="Calibri" font-size="11.640945" fill="#406fc5">content instance</text>
-        <text id="from-discovered-light-" xml:space="preserve" x="568" y="254" font-family="Calibri" font-size="11.640945" fill="#406fc5">from discovered light</text>
-        <text id="container-light" xml:space="preserve" x="581" y="268" font-family="Calibri" font-size="11.640945" fill="#406fc5">container light</text>
-        <text id="text31" xml:space="preserve" x="651" y="268" font-family="Calibri" font-size="11.640945" fill="#406fc5">1</text>
-        <path id="path68" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 429.996857 374.486603 L 429.996857 289.825195 L 419.829926 289.825195 L 419.829926 374.486603 L 429.996857 374.486603 L 429.996857 374.486603 Z"/>
-        <path id="path69" fill="none" stroke="#6ca43e" stroke-width="0.907087" stroke-linejoin="round" d="M 429.996857 374.486603 L 429.996857 289.825195 L 419.829926 289.825195 L 419.829926 374.486603 L 429.996857 374.486603 Z"/>
-        <path id="path70" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 563.64093 305.056702 L 676.686584 305.056702 L 676.686584 366.020477 L 563.64093 366.020477 L 563.64093 305.056702 Z"/>
-        <path id="path71" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 563.64093 366.020477 L 676.686584 366.020477 L 676.686584 305.056702 L 563.64093 305.056702 L 563.64093 366.020477 Z"/>
-        <text id="the-latest-content-" xml:space="preserve" x="576" y="327" font-family="Calibri" font-size="11.640945" fill="#406fc5">the latest content</text>
-        <text id="instance-of-container-" xml:space="preserve" x="568" y="341" font-family="Calibri" font-size="11.640945" fill="#406fc5">instance of container</text>
-        <text id="light" xml:space="preserve" x="573" y="355" font-family="Calibri" font-size="11.640945" fill="#406fc5">light</text>
-        <text id="1-" xml:space="preserve" x="594" y="355" font-family="Calibri" font-size="11.640945" fill="#406fc5">1</text>
-        <text id="i" xml:space="preserve" x="603" y="355" font-family="Calibri" font-size="11.640945" fill="#406fc5">i</text>
-        <text id="s-responded" xml:space="preserve" x="606" y="355" font-family="Calibri" font-size="11.640945" fill="#406fc5">s responded</text>
-        <path id="path72" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 425.688202 374.486603 L 536.050415 374.486603"/>
-        <path id="path73" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 425.801575 375.393707 L 425.801575 373.579529 L 424.894501 373.579529 L 424.554321 373.655121 L 424.289764 373.844086 L 424.062988 374.146454 L 424.025208 374.486603 L 424.062988 374.826782 L 424.289764 375.12912 L 424.554321 375.318115 L 424.894501 375.393707 L 425.801575 375.393707 Z"/>
-        <path id="path74" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 535.937012 373.579529 L 535.937012 375.393707 L 536.844116 375.393707 L 537.184265 375.318115 L 537.448792 375.12912 L 537.675598 374.826782 L 537.713379 374.486603 L 537.675598 374.146454 L 537.448792 373.844086 L 537.184265 373.655121 L 536.844116 373.579529 L 535.937012 373.579529 Z"/>
-        <path id="path75" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 535.407898 368.817322 L 546.74646 374.486603 L 535.407898 380.155914 L 535.407898 368.817322 L 535.407898 368.817322 Z"/>
-        <path id="path76" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 475.653534 368.74173 L 495.987427 368.74173 L 495.987427 380.231506 L 475.653534 380.231506 L 475.653534 368.74173 Z"/>
-        <text id="4" xml:space="preserve" x="475" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">4</text>
-        <text id="text32" xml:space="preserve" x="479" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text33" xml:space="preserve" x="482" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text34" xml:space="preserve" x="487" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text35" xml:space="preserve" x="490" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <path id="path77" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 272.61731 288.313416 L 385.662994 288.313416 L 385.662994 384.237793 L 272.61731 384.237793 L 272.61731 288.313416 Z"/>
-        <path id="path78" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 272.61731 384.237793 L 385.662994 384.237793 L 385.662994 288.313416 L 272.61731 288.313416 L 272.61731 384.237793 Z"/>
-        <text id="text36" xml:space="preserve" x="277" y="313" font-family="Calibri" font-size="11.640945" fill="#406fc5">retrieval of</text>
-        <text id="text37" xml:space="preserve" x="333" y="313" font-family="Calibri" font-size="11.640945" fill="#406fc5">the latest</text>
-        <text id="text38" xml:space="preserve" x="288" y="328" font-family="Calibri" font-size="11.640945" fill="#406fc5">content instance</text>
-        <text id="from-each-" xml:space="preserve" x="303" y="342" font-family="Calibri" font-size="11.640945" fill="#406fc5">from each</text>
-        <text id="discovered-single-" xml:space="preserve" x="286" y="356" font-family="Calibri" font-size="11.640945" fill="#406fc5">discovered single</text>
-        <text id="light-container" xml:space="preserve" x="293" y="371" font-family="Calibri" font-size="11.640945" fill="#406fc5">light container</text>
-        <path id="path79" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 563.64093 393.11969 L 676.686584 393.11969 L 676.686584 454.083466 L 563.64093 454.083466 L 563.64093 393.11969 Z"/>
-        <path id="path80" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 563.64093 454.083466 L 676.686584 454.083466 L 676.686584 393.11969 L 563.64093 393.11969 L 563.64093 454.083466 Z"/>
-        <text id="text39" xml:space="preserve" x="568" y="408" font-family="Calibri" font-size="11.640945" fill="#406fc5">retrieval of</text>
-        <text id="text40" xml:space="preserve" x="624" y="408" font-family="Calibri" font-size="11.640945" fill="#406fc5">the latest</text>
-        <text id="text41" xml:space="preserve" x="579" y="422" font-family="Calibri" font-size="11.640945" fill="#406fc5">content instance</text>
-        <text id="text42" xml:space="preserve" x="568" y="436" font-family="Calibri" font-size="11.640945" fill="#406fc5">from discovered light</text>
-        <text id="text43" xml:space="preserve" x="581" y="451" font-family="Calibri" font-size="11.640945" fill="#406fc5">container light</text>
-        <text id="text44" xml:space="preserve" x="651" y="451" font-family="Calibri" font-size="11.640945" fill="#406fc5">2</text>
-        <path id="path81" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 429.996857 547.21106 L 429.996857 462.549591 L 419.829926 462.549591 L 419.829926 547.21106 L 429.996857 547.21106 L 429.996857 547.21106 Z"/>
-        <path id="path82" fill="none" stroke="#6ca43e" stroke-width="0.907087" stroke-linejoin="round" d="M 429.996857 547.21106 L 429.996857 462.549591 L 419.829926 462.549591 L 419.829926 547.21106 L 429.996857 547.21106 Z"/>
-        <path id="path83" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 563.64093 481.182678 L 676.686584 481.182678 L 676.686584 542.146484 L 563.64093 542.146484 L 563.64093 481.182678 Z"/>
-        <path id="path84" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 563.64093 542.146484 L 676.686584 542.146484 L 676.686584 481.182678 L 563.64093 481.182678 L 563.64093 542.146484 Z"/>
-        <text id="text45" xml:space="preserve" x="576" y="503" font-family="Calibri" font-size="11.640945" fill="#406fc5">the latest content</text>
-        <text id="text46" xml:space="preserve" x="568" y="517" font-family="Calibri" font-size="11.640945" fill="#406fc5">instance of container</text>
-        <text id="text47" xml:space="preserve" x="573" y="532" font-family="Calibri" font-size="11.640945" fill="#406fc5">light</text>
-        <text id="2-" xml:space="preserve" x="594" y="532" font-family="Calibri" font-size="11.640945" fill="#406fc5">2</text>
-        <text id="text48" xml:space="preserve" x="603" y="532" font-family="Calibri" font-size="11.640945" fill="#406fc5">i</text>
-        <text id="text49" xml:space="preserve" x="606" y="532" font-family="Calibri" font-size="11.640945" fill="#406fc5">s responded</text>
-        <path id="path85" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 545.952759 113.737 L 440.655121 113.737"/>
-        <path id="path86" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 545.839355 112.829895 L 545.839355 114.606323 L 546.74646 114.606323 L 547.086609 114.568481 L 547.351196 114.341736 L 547.577942 114.077148 L 547.615723 113.737 L 547.577942 113.396851 L 547.351196 113.094482 L 547.086609 112.905518 L 546.74646 112.829895 L 545.839355 112.829895 Z"/>
-        <path id="path87" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 440.768494 114.606323 L 440.768494 112.829895 L 439.8992 112.829895 L 439.559052 112.905518 L 439.256683 113.094482 L 439.067719 113.396851 L 438.992126 113.737 L 439.067719 114.077148 L 439.256683 114.341736 L 439.559052 114.568481 L 439.8992 114.606323 L 440.768494 114.606323 Z"/>
-        <path id="path88" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 441.297638 119.36853 L 429.996857 113.737 L 441.297638 108.067688 L 441.297638 119.36853 L 441.297638 119.36853 Z"/>
-        <path id="path89" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 482.040955 107.992126 L 494.664551 107.992126 L 494.664551 119.444092 L 482.040955 119.444092 L 482.040955 107.992126 Z"/>
-        <text id="text50" xml:space="preserve" x="481" y="119" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text51" xml:space="preserve" x="486" y="119" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text52" xml:space="preserve" x="489" y="119" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <path id="path90" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 547.50238 188.231506 L 679.861389 188.231506"/>
-        <path id="path91" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 547.615723 189.138611 L 547.615723 187.324402 L 546.74646 187.324402 L 546.406311 187.400024 L 546.103943 187.588989 L 545.914978 187.891357 L 545.839355 188.231506 L 545.914978 188.571655 L 546.103943 188.874023 L 546.406311 189.062988 L 546.74646 189.138611 L 547.615723 189.138611 Z"/>
-        <path id="path92" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 679.748047 187.324402 L 679.748047 189.138611 L 680.65509 189.138611 L 680.9953 189.062988 L 681.297607 188.874023 L 681.486633 188.571655 L 681.562195 188.231506 L 681.486633 187.891357 L 681.297607 187.588989 L 680.9953 187.400024 L 680.65509 187.324402 L 679.748047 187.324402 Z"/>
-        <path id="path93" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 679.256714 182.562195 L 690.557495 188.231506 L 679.256714 193.900818 L 679.256714 182.562195 L 679.256714 182.562195 Z"/>
-        <path id="path94" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 612.35907 182.486633 L 624.944885 182.486633 L 624.944885 193.976379 L 612.35907 193.976379 L 612.35907 182.486633 Z"/>
-        <text id="text53" xml:space="preserve" x="611" y="193" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <text id="text54" xml:space="preserve" x="616" y="193" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text55" xml:space="preserve" x="619" y="193" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <path id="path95" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 545.952759 289.825195 L 435.590546 289.825195"/>
-        <path id="path96" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 545.839355 288.918091 L 545.839355 290.7323 L 546.74646 290.7323 L 547.086609 290.656677 L 547.351196 290.467712 L 547.577942 290.165344 L 547.615723 289.825195 L 547.577942 289.485046 L 547.351196 289.182678 L 547.086609 288.993713 L 546.74646 288.918091 L 545.839355 288.918091 Z"/>
-        <path id="path97" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 435.703949 290.7323 L 435.703949 288.918091 L 434.796844 288.918091 L 434.456696 288.993713 L 434.192139 289.182678 L 433.965363 289.485046 L 433.927551 289.825195 L 433.965363 290.165344 L 434.192139 290.467712 L 434.456696 290.656677 L 434.796844 290.7323 L 435.703949 290.7323 Z"/>
-        <path id="path98" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 436.233063 295.494507 L 424.894501 289.825195 L 436.233063 284.155884 L 436.233063 295.494507 L 436.233063 295.494507 Z"/>
-        <path id="path99" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 475.653534 284.080322 L 495.987427 284.080322 L 495.987427 295.570068 L 475.653534 295.570068 L 475.653534 284.080322 Z"/>
-        <text id="text56" xml:space="preserve" x="475" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">3</text>
-        <text id="text57" xml:space="preserve" x="479" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text58" xml:space="preserve" x="482" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text59" xml:space="preserve" x="487" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text60" xml:space="preserve" x="490" y="295" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <path id="path100" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 547.50238 374.486603 L 679.861389 374.486603"/>
-        <path id="path101" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 547.615723 375.393707 L 547.615723 373.579529 L 546.74646 373.579529 L 546.406311 373.655121 L 546.103943 373.844086 L 545.914978 374.146454 L 545.839355 374.486603 L 545.914978 374.826782 L 546.103943 375.12912 L 546.406311 375.318115 L 546.74646 375.393707 L 547.615723 375.393707 Z"/>
-        <path id="path102" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 679.748047 373.579529 L 679.748047 375.393707 L 680.65509 375.393707 L 680.9953 375.318115 L 681.297607 375.12912 L 681.486633 374.826782 L 681.562195 374.486603 L 681.486633 374.146454 L 681.297607 373.844086 L 680.9953 373.655121 L 680.65509 373.579529 L 679.748047 373.579529 Z"/>
-        <path id="path103" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 679.256714 368.817322 L 690.557495 374.486603 L 679.256714 380.155914 L 679.256714 368.817322 L 679.256714 368.817322 Z"/>
-        <path id="path104" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 608.466125 368.74173 L 628.837769 368.74173 L 628.837769 380.231506 L 608.466125 380.231506 L 608.466125 368.74173 Z"/>
-        <text id="text61" xml:space="preserve" x="607" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">4</text>
-        <text id="text62" xml:space="preserve" x="612" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text63" xml:space="preserve" x="615" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text64" xml:space="preserve" x="620" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text65" xml:space="preserve" x="623" y="379" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <path id="path105" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 689.99054 466.6315 L 557.593689 466.6315"/>
-        <path id="path106" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 689.839355 465.724396 L 689.839355 467.500793 L 690.74646 467.500793 L 691.086609 467.462982 L 691.388977 467.236206 L 691.577942 466.971649 L 691.653564 466.6315 L 691.577942 466.291351 L 691.388977 465.988983 L 691.086609 465.799988 L 690.74646 465.724396 L 689.839355 465.724396 Z"/>
-        <path id="path107" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 557.707092 467.500793 L 557.707092 465.724396 L 556.837769 465.724396 L 556.49762 465.799988 L 556.195251 465.988983 L 556.006287 466.291351 L 555.930725 466.6315 L 556.006287 466.971649 L 556.195251 467.236206 L 556.49762 467.462982 L 556.837769 467.500793 L 557.707092 467.500793 Z"/>
-        <path id="path108" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 558.236206 472.263 L 546.935425 466.6315 L 558.236206 460.962219 L 558.236206 472.263 L 558.236206 472.263 Z"/>
-        <path id="path109" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 608.65509 460.886627 L 629.026794 460.886627 L 629.026794 472.338593 L 608.65509 472.338593 L 608.65509 460.886627 Z"/>
-        <text id="text66" xml:space="preserve" x="608" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">3</text>
-        <text id="text67" xml:space="preserve" x="612" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text68" xml:space="preserve" x="615" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <text id="text69" xml:space="preserve" x="620" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text70" xml:space="preserve" x="623" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <path id="path110" fill="none" stroke="#7c9530" stroke-width="1.776378" stroke-linejoin="round" d="M 546.141724 466.6315 L 435.779541 466.6315"/>
-        <path id="path111" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 546.02832 465.724396 L 546.02832 467.500793 L 546.935425 467.500793 L 547.275574 467.462982 L 547.577942 467.236206 L 547.766907 466.971649 L 547.804749 466.6315 L 547.766907 466.291351 L 547.577942 465.988983 L 547.275574 465.799988 L 546.935425 465.724396 L 546.02832 465.724396 Z"/>
-        <path id="path112" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 435.892914 467.500793 L 435.892914 465.724396 L 434.98584 465.724396 L 434.64566 465.799988 L 434.381104 465.988983 L 434.192139 466.291351 L 434.116547 466.6315 L 434.192139 466.971649 L 434.381104 467.236206 L 434.64566 467.462982 L 434.98584 467.500793 L 435.892914 467.500793 Z"/>
-        <path id="path113" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 436.422058 472.263 L 425.083466 466.6315 L 436.422058 460.962219 L 436.422058 472.263 L 436.422058 472.263 Z"/>
-        <path id="path114" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 475.842529 460.886627 L 496.214172 460.886627 L 496.214172 472.338593 L 475.842529 472.338593 L 475.842529 460.886627 Z"/>
-        <text id="text71" xml:space="preserve" x="475" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">3</text>
-        <text id="text72" xml:space="preserve" x="480" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text73" xml:space="preserve" x="483" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <text id="text74" xml:space="preserve" x="487" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text75" xml:space="preserve" x="490" y="471" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <path id="path115" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 425.877167 550.234619 L 536.23938 550.234619"/>
-        <path id="path116" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 425.99054 551.141724 L 425.99054 549.365356 L 425.083466 549.365356 L 424.743317 549.440918 L 424.478729 549.629883 L 424.289764 549.894531 L 424.214172 550.234619 L 424.289764 550.61261 L 424.478729 550.877197 L 424.743317 551.066162 L 425.083466 551.141724 L 425.99054 551.141724 Z"/>
-        <path id="path117" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 536.125977 549.365356 L 536.125977 551.141724 L 537.033081 551.141724 L 537.37323 551.066162 L 537.675598 550.877197 L 537.864563 550.61261 L 537.902344 550.234619 L 537.864563 549.894531 L 537.675598 549.629883 L 537.37323 549.440918 L 537.033081 549.365356 L 536.125977 549.365356 Z"/>
-        <path id="path118" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 535.596863 544.603149 L 546.935425 550.234619 L 535.596863 555.903931 L 535.596863 544.603149 L 535.596863 544.603149 Z"/>
-        <path id="path119" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 475.842529 544.527588 L 496.214172 544.527588 L 496.214172 555.979492 L 475.842529 555.979492 L 475.842529 544.527588 Z"/>
-        <text id="text76" xml:space="preserve" x="475" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">4</text>
-        <text id="text77" xml:space="preserve" x="480" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text78" xml:space="preserve" x="483" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <text id="text79" xml:space="preserve" x="487" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text80" xml:space="preserve" x="490" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <path id="path120" fill="none" stroke="#fd9759" stroke-width="1.776378" stroke-linejoin="round" d="M 547.691345 550.234619 L 680.088196 550.234619"/>
-        <path id="path121" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 547.804749 551.141724 L 547.804749 549.365356 L 546.935425 549.365356 L 546.595276 549.440918 L 546.292908 549.629883 L 546.103943 549.894531 L 546.02832 550.234619 L 546.103943 550.61261 L 546.292908 550.877197 L 546.595276 551.066162 L 546.935425 551.141724 L 547.804749 551.141724 Z"/>
-        <path id="path122" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 679.937012 549.365356 L 679.937012 551.141724 L 680.844116 551.141724 L 681.184265 551.066162 L 681.486633 550.877197 L 681.675598 550.61261 L 681.75116 550.234619 L 681.675598 549.894531 L 681.486633 549.629883 L 681.184265 549.440918 L 680.844116 549.365356 L 679.937012 549.365356 Z"/>
-        <path id="path123" fill="#fd9759" fill-rule="evenodd" stroke="none" d="M 679.445679 544.603149 L 690.74646 550.234619 L 679.445679 555.903931 L 679.445679 544.603149 L 679.445679 544.603149 Z"/>
-        <path id="path124" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 608.65509 544.527588 L 629.026794 544.527588 L 629.026794 555.979492 L 608.65509 555.979492 L 608.65509 544.527588 Z"/>
-        <text id="text81" xml:space="preserve" x="608" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">4</text>
-        <text id="text82" xml:space="preserve" x="612" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text83" xml:space="preserve" x="615" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <text id="text84" xml:space="preserve" x="620" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text85" xml:space="preserve" x="623" y="555" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-    </g>
-</svg>
+<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="770px" preserveAspectRatio="none" style="width:593px;height:770px;background:#FFFFFF;" version="1.1" viewBox="0 0 593 770" width="593px" zoomAndPan="magnify"><defs/><g><rect fill="#FFFFFF" height="94.5313" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="126.8281"/><rect fill="#FFFFFF" height="109.6641" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="384.4219"/><rect fill="#FFFFFF" height="29.1328" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="657.1484"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="43" x2="43" y1="36.2969" y2="763.6797"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="129" x2="129" y1="36.2969" y2="763.6797"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="206" x2="206" y1="36.2969" y2="763.6797"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="280" x2="280" y1="36.2969" y2="763.6797"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="355" x2="355" y1="36.2969" y2="763.6797"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="562" x2="562" y1="36.2969" y2="763.6797"/><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="5" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="12" y="24.9951">ADN-AE1</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="91" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="98" y="24.9951">ADN-AE2</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="59" x="177" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="184" y="24.9951">MN-AE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="69" x="246" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="253" y="24.9951">MN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="60" x="325" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="332" y="24.9951">IN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="50" x="537" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="544" y="24.9951">IN-AE</text><rect fill="#FFFFFF" height="94.5313" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="126.8281"/><rect fill="#FFFFFF" height="109.6641" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="384.4219"/><rect fill="#FFFFFF" height="29.1328" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="657.1484"/><polygon fill="#181818" points="366,93.6953,356,97.6953,366,101.6953,362,97.6953" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="360" x2="561" y1="97.6953" y2="97.6953"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="164" x="376.5" y="62.3638">1-1) Discovery single light</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="121" x="398" y="77.4966">container with filter</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="44" x="436.5" y="92.6294">criteria</text><polygon fill="#181818" points="296.5,122.8281,286.5,126.8281,296.5,130.8281,292.5,126.8281" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="290.5" x2="354" y1="126.8281" y2="126.8281"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="26" x="307.25" y="121.7622">1-2)</text><path d="M106,139.8281 L106,194.8281 L270,194.8281 L270,149.8281 L260,139.8281 L106,139.8281 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M260,139.8281 L260,149.8281 L270,149.8281 L260,139.8281 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="134" x="121" y="156.895">IN-AE discovers each</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="132" x="122" y="172.0278">single light container</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="118" x="129" y="187.1606">located in MN-CSE</text><polygon fill="#181818" points="343,217.3594,353,221.3594,343,225.3594,347,221.3594" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="280.5" x2="349" y1="221.3594" y2="221.3594"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="26" x="304.75" y="216.2935">2-1)</text><polygon fill="#181818" points="550,276.7578,560,280.7578,550,284.7578,554,280.7578" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="355" x2="556" y1="280.7578" y2="280.7578"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="147" x="385" y="245.4263">2-2) URIs of discovered</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="127" x="395" y="260.5591">container resources</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="93" x="412" y="275.6919">are responded</text><polygon fill="#181818" points="366,351.2891,356,355.2891,366,359.2891,362,355.2891" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="360" x2="561" y1="355.2891" y2="355.2891"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="179" x="369" y="304.8247">3-1-1) Retrieval of the latest</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="137" x="390" y="319.9575">contentInstance from</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="164" x="376.5" y="335.0903">discovered light container</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="46" x="437.5" y="350.2231">light#1</text><polygon fill="#181818" points="296.5,380.4219,286.5,384.4219,296.5,388.4219,292.5,384.4219" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="290.5" x2="354" y1="384.4219" y2="384.4219"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="39" x="300.75" y="379.356">3-1-2)</text><path d="M95,397.4219 L95,467.4219 L270,467.4219 L270,407.4219 L260,397.4219 L95,397.4219 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M260,397.4219 L260,407.4219 L270,407.4219 L260,397.4219 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="136" x="114.5" y="414.4888">Retrieval of the latest</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="137" x="114" y="429.6216">contentInstance from</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="145" x="110" y="444.7544">each discovered single</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="91" x="137" y="459.8872">light container</text><polygon fill="#181818" points="343,490.0859,353,494.0859,343,498.0859,347,494.0859" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="280.5" x2="349" y1="494.0859" y2="494.0859"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="39" x="298.25" y="489.02">4-1-1)</text><polygon fill="#181818" points="550,549.4844,560,553.4844,550,557.4844,554,553.4844" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="355" x2="556" y1="553.4844" y2="553.4844"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="106" x="405.5" y="518.1528">4-1-2) The latest</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="183" x="367" y="533.2856">contentInstance of container</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="128" x="394.5" y="548.4185">light_1 is responded</text><polygon fill="#181818" points="366,624.0156,356,628.0156,366,632.0156,362,628.0156" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="360" x2="561" y1="628.0156" y2="628.0156"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="179" x="369" y="577.5513">3-2-1) Retrieval of the latest</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="137" x="390" y="592.6841">contentInstance from</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="164" x="376.5" y="607.8169">discovered light container</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="46" x="437.5" y="622.9497">light#2</text><polygon fill="#181818" points="296.5,653.1484,286.5,657.1484,296.5,661.1484,292.5,657.1484" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="290.5" x2="354" y1="657.1484" y2="657.1484"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="39" x="300.75" y="652.0825">3-2-2)</text><line style="stroke:#181818;stroke-width:1.0;" x1="353" x2="343" y1="686.2813" y2="682.2813"/><line style="stroke:#181818;stroke-width:1.0;" x1="353" x2="343" y1="686.2813" y2="690.2813"/><line style="stroke:#181818;stroke-width:1.0;" x1="280.5" x2="354" y1="686.2813" y2="686.2813"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="39" x="298.25" y="681.2153">4-2-1)</text><line style="stroke:#181818;stroke-width:1.0;" x1="560" x2="550" y1="745.6797" y2="741.6797"/><line style="stroke:#181818;stroke-width:1.0;" x1="560" x2="550" y1="745.6797" y2="749.6797"/><line style="stroke:#181818;stroke-width:1.0;" x1="355" x2="561" y1="745.6797" y2="745.6797"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="106" x="405.5" y="710.3481">4-2-2) The latest</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="183" x="367" y="725.481">contentInstance of container</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="132" x="392.5" y="740.6138">light#2 is responded</text><!--SRC=[jPB1Rjim38RFrbDmoQ7B8GThFUrG85XtoC75q7Mt08Cgqx4mcyea9UlUVfHYnqxgjiE0NMn9Fq7-_CZQb0YLjU7HFWd_mz1EETM2nvzx98q5Ug-sk6hCba0Z1NIZAB817_0f9BbbjG-vUXTgR15sZJ9qkhNAUN6bzi7Ildr41xFtymNCX11Vb0j6cvtY5BFLxTrozJcVWVB0PpvEwNBGvRbUH3cf1OlFj4zVUv5Fv-fwKDUJwgeNEQ-8NrZU74C_GhxC5t1hlBO7TB_16zes24oc3XlIbWAZu9v_cL13PHh6nC_EyDyeaNB4P4MVJ2w4qi4SLC3EwXtJXWQh0BRgdhBa2SgkgWTKkXRPk3QSIekiiPhJbM08ZY04KfccA4JHE-ZQaToEAF72ms0qTX-Zv0A-tQzzzDJRm7BSi4DlzqwZtv1o6AyxIoMMb_m-B1F1UmpEu44rCIFl3JHStNS8URlMv8FYpOJAsNP3GytBTZTqV9ddp-Z6Kd_7zmKt8fjo8xA8VuIXMm86Vp69bx5V9mflWxzEBS33Au3OyGX6il0z1-DV6u7yFoEG4oEG4oCuuHZnU6CH1o3o7u3CvJcGFm00]--></g></svg>
\ No newline at end of file
diff --git a/media/IN-CSE-ResourceStructure.png b/media/IN-CSE-ResourceStructure.png
new file mode 100644
index 0000000000000000000000000000000000000000..6dbd763ddee2f78db63d2008f907885061c64959
Binary files /dev/null and b/media/IN-CSE-ResourceStructure.png differ
diff --git a/media/IN-CSE-ResourceStructure.puml b/media/IN-CSE-ResourceStructure.puml
new file mode 100644
index 0000000000000000000000000000000000000000..bae260c52518e0e25632163fd32112acc0e851a0
--- /dev/null
+++ b/media/IN-CSE-ResourceStructure.puml
@@ -0,0 +1,15 @@
+@startuml
+
+skinparam Legend {
+    BackgroundColor transparent
+    BorderColor transparent
+    FontSize 20
+}
+
+legend
+server
+|_ home_gateway
+|_ smartphone_ae
+end legend
+
+@enduml
\ No newline at end of file
diff --git a/media/IN-CSE-ResourceStructure.svg b/media/IN-CSE-ResourceStructure.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1aaa11f45cd2cd5c4d50ccadbfd49b92e996af9d
--- /dev/null
+++ b/media/IN-CSE-ResourceStructure.svg
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="125px" preserveAspectRatio="none" style="width:221px;height:125px;background:#FFFFFF;" version="1.1" viewBox="0 0 221 125" width="221px" zoomAndPan="magnify"><defs/><g><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="61" x="17" y="45.5645">server</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="152" x="41" y="70.8457">home_gateway</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="155" x="41" y="94.127">smartphone_ae</text><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="32" y="62.9219"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="33" y1="63.9219" y2="63.9219"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="25" y1="52.2813" y2="63.9219"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="32" y="86.2031"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="33" y1="87.2031" y2="87.2031"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="25" y1="63.9219" y2="87.2031"/><!--SRC=[ROv13i9030FlUKMUW7W2I9ouyO1Ln5hRgjsaoWOG5FvE2npnpHhRSXjwdSIbyX45cdacNhIJyr3SBfhtDffpk6XRSj3uSlCC_yyEfd7g7-3jXbv4usUN6lmAfsVYpYfIaS1DxgjlLJocpXH9GEk7N-KD]--></g></svg>
\ No newline at end of file
diff --git a/media/InitialResourceCreationPhaseCallFlows.png b/media/InitialResourceCreationPhaseCallFlows.png
index 11b42785408fbdd9dd70268a11d2b2d3aaefde14..a4e192010bd3c6eddf7d08e5cb5853c663f20249 100644
Binary files a/media/InitialResourceCreationPhaseCallFlows.png and b/media/InitialResourceCreationPhaseCallFlows.png differ
diff --git a/media/InitialResourceCreationPhaseCallFlows.puml b/media/InitialResourceCreationPhaseCallFlows.puml
new file mode 100644
index 0000000000000000000000000000000000000000..83a4aaff5e56805a65de2d3ede13cf9685570877
--- /dev/null
+++ b/media/InitialResourceCreationPhaseCallFlows.puml
@@ -0,0 +1,49 @@
+@startuml
+hide footbox
+skinparam sequenceMessageAlign center
+skinparam noteTextAlignment center
+'!theme plain
+'!theme mars
+'autonumber "(#) "
+
+
+Participant "ADN-AE1" as ADNAE1
+Participant "ADN-AE2" as ADNAE2
+Participant "MN-AE" as MNAE
+Participant "MN-CSE" as MNCSE
+Participant "IN-CSE" as INCSE
+Participant "IN-AE" as INAE
+
+MNAE -> MNCSE: 1) Group resource\ncreation for updating\nand retrieval of the state\nof a group of lights
+Note right of MNCSE
+	Group resource is created
+	with a specific access
+	control policy under MN-CSE
+end note
+
+ADNAE1 -> MNCSE: 2-1) Container resource\ncreation of light#1
+ADNAE2 -> MNCSE: 2-2) Container resource\ncreation of light#2
+Note right of MNCSE
+	Container resources are
+	created with a specific access
+	control policy under MN-CSE
+end note
+
+ADNAE1 -> MNCSE: 3-1) ContentInstance\nresource creation\nunder container of light#1
+ADNAE2 -> MNCSE: 3-2) ContentInstance\nresource creation\nunder container of light#2
+Note right of MNCSE
+	ContentInstance resources are
+	created under the containers
+	in MN-CSE
+end note
+
+ADNAE1 -> MNCSE: 4-1) Subscription resource\ncreation to container of light#1
+ADNAE2 -> MNCSE: 4-2) Subscription resource\ncreation to container of light#2
+Note right of MNCSE
+	Subscription resources to
+	containers in MN-CSE are
+	created for monitoring
+	contentInstance updates
+end note
+
+@enduml
\ No newline at end of file
diff --git a/media/InitialResourceCreationPhaseCallFlows.svg b/media/InitialResourceCreationPhaseCallFlows.svg
index 33b0371615d0cd2916482dc8c3d604c6603a6d03..9cec184fc5b04bd29e2b200575703642f03cd4fa 100644
--- a/media/InitialResourceCreationPhaseCallFlows.svg
+++ b/media/InitialResourceCreationPhaseCallFlows.svg
@@ -1,230 +1 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Generated by Pixelmator Pro 3.5.6 -->
-<svg width="754" height="640" viewBox="0 0 754 640" xmlns="http://www.w3.org/2000/svg">
-    <clipPath id="clipPath1">
-        <path d="M 14.795277 13.173203 L 732.867725 13.173203 L 732.867725 638.231491 L 14.795277 638.231491 L 14.795277 13.173203 Z"/>
-    </clipPath>
-    <g id="Group" clip-path="url(#clipPath1)">
-        <path id="Path" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 25.755905 20.240967 L 82.411026 20.240967 L 82.411026 48.587402 L 25.755905 48.587402 L 25.755905 20.240967 Z"/>
-        <path id="path1" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 25.755905 48.587402 L 82.411026 48.587402 L 82.411026 20.240967 L 25.755905 20.240967 L 25.755905 48.587402 Z"/>
-        <path id="path2" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 54.102364 16.688171 L 54.102364 16.688171 L 54.102364 16.688171 L 54.102364 16.688171 L 54.102364 16.688171 L 54.102364 16.688171 Z"/>
-        <path id="path3" fill="none" stroke="#5692c9" stroke-width="0.566929" stroke-linejoin="round" d="M 54.102364 48.436218 L 54.102364 607.163818"/>
-        <path id="path4" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 53.800003 48.473999 L 54.366928 48.473999 L 54.366928 48.171631 L 54.329132 48.058289 L 54.291336 47.982666 L 54.177956 47.907104 L 54.102364 47.907104 L 53.988976 47.907104 L 53.875587 47.982666 L 53.837799 48.058289 L 53.800003 48.171631 L 53.800003 48.473999 Z"/>
-        <path id="path5" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 54.366928 607.125977 L 53.800003 607.125977 L 53.800003 607.390564 L 53.837799 607.503906 L 53.875587 607.61731 L 53.988976 607.655151 L 54.102364 607.692871 L 54.177956 607.655151 L 54.291336 607.61731 L 54.329132 607.503906 L 54.366928 607.390564 L 54.366928 607.125977 Z"/>
-        <path id="path6" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 16.307087 20.618896 L 91.85984 20.618896 L 91.85984 48.171631 L 16.307087 48.171631 L 16.307087 20.618896 Z"/>
-        <path id="path7" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 16.307087 48.171631 L 91.85984 48.171631 L 91.85984 20.618896 L 16.307087 20.618896 L 16.307087 48.171631 Z"/>
-        <text id="ADN" xml:space="preserve" x="28" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">ADN</text>
-        <text id="-" xml:space="preserve" x="53" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">-</text>
-        <text id="AE" xml:space="preserve" x="57" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">AE</text>
-        <text id="1" xml:space="preserve" x="72" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">1</text>
-        <path id="path8" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 161.743301 19.825195 L 218.360626 19.825195 L 218.360626 48.171631 L 161.743301 48.171631 L 161.743301 19.825195 Z"/>
-        <path id="path9" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 161.743301 48.171631 L 218.360626 48.171631 L 218.360626 19.825195 L 161.743301 19.825195 L 161.743301 48.171631 Z"/>
-        <text id="AND" xml:space="preserve" x="170" y="39" font-family="Calibri" font-size="9.977953" fill="#ffffff">AND</text>
-        <text id="text1" xml:space="preserve" x="189" y="39" font-family="Calibri" font-size="9.977953" fill="#ffffff">-</text>
-        <text id="text2" xml:space="preserve" x="192" y="39" font-family="Calibri" font-size="9.977953" fill="#ffffff">AE</text>
-        <text id="2" xml:space="preserve" x="203" y="39" font-family="Calibri" font-size="9.977953" fill="#ffffff">2</text>
-        <path id="path10" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 190.051971 16.272461 L 190.051971 16.272461 L 190.051971 16.272461 L 190.051971 16.272461 L 190.051971 16.272461 L 190.051971 16.272461 Z"/>
-        <path id="path11" fill="none" stroke="#5692c9" stroke-width="0.566929" stroke-linejoin="round" d="M 190.051971 47.982666 L 190.051971 616.61261"/>
-        <path id="path12" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 189.787399 48.020447 L 190.316528 48.020447 L 190.316528 47.75592 L 190.316528 47.642517 L 190.240952 47.566956 L 190.165359 47.491333 L 190.051971 47.491333 L 189.938583 47.491333 L 189.862991 47.566956 L 189.787399 47.642517 L 189.787399 47.75592 L 189.787399 48.020447 Z"/>
-        <path id="path13" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 190.316528 616.574829 L 189.787399 616.574829 L 189.787399 616.839355 L 189.787399 616.952759 L 189.862991 617.066162 L 189.938583 617.103943 L 190.051971 617.141724 L 190.165359 617.103943 L 190.240952 617.066162 L 190.316528 616.952759 L 190.316528 616.839355 L 190.316528 616.574829 Z"/>
-        <path id="path14" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 152.294495 20.203125 L 227.809448 20.203125 L 227.809448 47.75592 L 152.294495 47.75592 L 152.294495 20.203125 Z"/>
-        <path id="path15" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 152.294495 47.75592 L 227.809448 47.75592 L 227.809448 20.203125 L 152.294495 20.203125 L 152.294495 47.75592 Z"/>
-        <text id="text3" xml:space="preserve" x="164" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">ADN</text>
-        <text id="text4" xml:space="preserve" x="189" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">-</text>
-        <text id="text5" xml:space="preserve" x="193" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">AE</text>
-        <text id="text6" xml:space="preserve" x="208" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">2</text>
-        <path id="path16" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 297.692902 20.203125 L 354.348022 20.203125 L 354.348022 48.549622 L 297.692902 48.549622 L 297.692902 20.203125 Z"/>
-        <path id="path17" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 297.692902 48.549622 L 354.348022 48.549622 L 354.348022 20.203125 L 297.692902 20.203125 L 297.692902 48.549622 Z"/>
-        <path id="path18" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 326.039368 15.47876 L 326.039368 15.47876 L 326.039368 15.47876 L 326.039368 15.47876 L 326.039368 15.47876 L 326.039368 15.47876 Z"/>
-        <path id="path19" fill="none" stroke="#5692c9" stroke-width="0.566929" stroke-linejoin="round" d="M 326.039368 49.570068 L 326.039368 616.61261"/>
-        <path id="path20" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 325.737 49.607849 L 326.303925 49.607849 L 326.303925 49.343323 L 326.266144 49.229919 L 326.228333 49.154358 L 326.11496 49.078735 L 326.039368 49.040955 L 325.925995 49.078735 L 325.812592 49.154358 L 325.774811 49.229919 L 325.737 49.343323 L 325.737 49.607849 Z"/>
-        <path id="path21" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 326.303925 616.574829 L 325.737 616.574829 L 325.737 616.839355 L 325.774811 616.952759 L 325.812592 617.066162 L 325.925995 617.103943 L 326.039368 617.141724 L 326.11496 617.103943 L 326.228333 617.066162 L 326.266144 616.952759 L 326.303925 616.839355 L 326.303925 616.574829 Z"/>
-        <path id="path22" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 288.24408 19.409424 L 363.796844 19.409424 L 363.796844 49.343323 L 288.24408 49.343323 L 288.24408 19.409424 Z"/>
-        <path id="path23" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 288.24408 49.343323 L 363.796844 49.343323 L 363.796844 19.409424 L 288.24408 19.409424 L 288.24408 49.343323 Z"/>
-        <text id="MN" xml:space="preserve" x="305" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">MN</text>
-        <text id="text7" xml:space="preserve" x="326" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">-</text>
-        <text id="text8" xml:space="preserve" x="330" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">AE</text>
-        <path id="path24" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 452.842529 19.409424 L 509.49762 19.409424 L 509.49762 47.75592 L 452.842529 47.75592 L 452.842529 19.409424 Z"/>
-        <path id="path25" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 452.842529 47.75592 L 509.49762 47.75592 L 509.49762 19.409424 L 452.842529 19.409424 L 452.842529 47.75592 Z"/>
-        <path id="path26" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 481.151184 14.685059 L 481.151184 14.685059 L 481.151184 14.685059 L 481.151184 14.685059 L 481.151184 14.685059 L 481.151184 14.685059 Z"/>
-        <path id="path27" fill="none" stroke="#5692c9" stroke-width="0.566929" stroke-linejoin="round" d="M 481.151184 48.776367 L 481.151184 616.61261"/>
-        <path id="path28" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 480.886627 48.814148 L 481.453552 48.814148 L 481.453552 48.549622 L 481.415741 48.436218 L 481.340149 48.360657 L 481.264557 48.285034 L 481.151184 48.285034 L 481.037781 48.285034 L 480.962219 48.360657 L 480.886627 48.436218 L 480.886627 48.549622 L 480.886627 48.814148 Z"/>
-        <path id="path29" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 481.453552 616.574829 L 480.886627 616.574829 L 480.886627 616.839355 L 480.886627 616.952759 L 480.962219 617.066162 L 481.037781 617.103943 L 481.151184 617.141724 L 481.264557 617.103943 L 481.340149 617.066162 L 481.415741 616.952759 L 481.453552 616.839355 L 481.453552 616.574829 Z"/>
-        <path id="path30" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 443.393707 18.653564 L 518.908691 18.653564 L 518.908691 48.549622 L 443.393707 48.549622 L 443.393707 18.653564 Z"/>
-        <path id="path31" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 443.393707 48.549622 L 518.908691 48.549622 L 518.908691 18.653564 L 443.393707 18.653564 L 443.393707 48.549622 Z"/>
-        <text id="text9" xml:space="preserve" x="458" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">MN</text>
-        <text id="text10" xml:space="preserve" x="478" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">-</text>
-        <text id="CSE" xml:space="preserve" x="482" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">CSE</text>
-        <path id="path32" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 583.122864 19.409424 L 639.777954 19.409424 L 639.777954 47.75592 L 583.122864 47.75592 L 583.122864 19.409424 Z"/>
-        <path id="path33" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 583.122864 47.75592 L 639.777954 47.75592 L 639.777954 19.409424 L 583.122864 19.409424 L 583.122864 47.75592 Z"/>
-        <path id="path34" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 611.431519 15.47876 L 611.431519 15.47876 L 611.431519 15.47876 L 611.431519 15.47876 L 611.431519 15.47876 L 611.431519 15.47876 Z"/>
-        <path id="path35" fill="none" stroke="#5692c9" stroke-width="0.566929" stroke-linejoin="round" d="M 611.431519 47.982666 L 611.431519 616.61261"/>
-        <path id="path36" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 611.166931 48.020447 L 611.696045 48.020447 L 611.696045 47.75592 L 611.696045 47.642517 L 611.620483 47.566956 L 611.544861 47.491333 L 611.431519 47.491333 L 611.318115 47.491333 L 611.242493 47.566956 L 611.166931 47.642517 L 611.166931 47.75592 L 611.166931 48.020447 Z"/>
-        <path id="path37" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 611.696045 616.574829 L 611.166931 616.574829 L 611.166931 616.839355 L 611.166931 616.952759 L 611.242493 617.066162 L 611.318115 617.103943 L 611.431519 617.141724 L 611.544861 617.103943 L 611.620483 617.066162 L 611.696045 616.952759 L 611.696045 616.839355 L 611.696045 616.574829 Z"/>
-        <path id="path38" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 573.674011 19.409424 L 649.188965 19.409424 L 649.188965 47.75592 L 573.674011 47.75592 L 573.674011 19.409424 Z"/>
-        <path id="path39" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 573.674011 47.75592 L 649.188965 47.75592 L 649.188965 19.409424 L 573.674011 19.409424 L 573.674011 47.75592 Z"/>
-        <text id="IN" xml:space="preserve" x="592" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">IN</text>
-        <text id="text11" xml:space="preserve" x="605" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">-</text>
-        <text id="text12" xml:space="preserve" x="609" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">CSE</text>
-        <path id="path40" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 665.251953 19.409424 L 721.907104 19.409424 L 721.907104 47.75592 L 665.251953 47.75592 L 665.251953 19.409424 Z"/>
-        <path id="path41" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 665.251953 47.75592 L 721.907104 47.75592 L 721.907104 19.409424 L 665.251953 19.409424 L 665.251953 47.75592 Z"/>
-        <path id="path42" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 693.59845 15.47876 L 693.59845 15.47876 L 693.59845 15.47876 L 693.59845 15.47876 L 693.59845 15.47876 L 693.59845 15.47876 Z"/>
-        <path id="path43" fill="none" stroke="#5692c9" stroke-width="0.566929" stroke-linejoin="round" d="M 693.59845 47.982666 L 693.59845 616.61261"/>
-        <path id="path44" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 693.296082 48.020447 L 693.862976 48.020447 L 693.862976 47.75592 L 693.825195 47.642517 L 693.787415 47.566956 L 693.674011 47.491333 L 693.59845 47.491333 L 693.485046 47.491333 L 693.371643 47.566956 L 693.333862 47.642517 L 693.296082 47.75592 L 693.296082 48.020447 Z"/>
-        <path id="path45" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 693.862976 616.574829 L 693.296082 616.574829 L 693.296082 616.839355 L 693.333862 616.952759 L 693.371643 617.066162 L 693.485046 617.103943 L 693.59845 617.141724 L 693.674011 617.103943 L 693.787415 617.066162 L 693.825195 616.952759 L 693.862976 616.839355 L 693.862976 616.574829 Z"/>
-        <path id="path46" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 655.803162 19.409424 L 731.355896 19.409424 L 731.355896 47.75592 L 655.803162 47.75592 L 655.803162 19.409424 Z"/>
-        <path id="path47" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 655.803162 47.75592 L 731.355896 47.75592 L 731.355896 19.409424 L 655.803162 19.409424 L 655.803162 47.75592 Z"/>
-        <text id="text13" xml:space="preserve" x="677" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">IN</text>
-        <text id="text14" xml:space="preserve" x="689" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">-</text>
-        <text id="text15" xml:space="preserve" x="694" y="40" font-family="Calibri" font-size="13.341732" fill="#ffffff">AE</text>
-        <path id="path48" fill="none" stroke="#7c9530" stroke-width="1.662992" stroke-linejoin="round" d="M 326.757477 164.694458 L 471.211029 163.976379"/>
-        <path id="path49" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 326.87088 165.526001 L 326.87088 163.862976 L 326.001587 163.862976 L 325.699219 163.938599 L 325.434631 164.127563 L 325.245667 164.392151 L 325.207886 164.694458 L 325.245667 165.034668 L 325.434631 165.299194 L 325.699219 165.488159 L 326.039368 165.526001 L 326.87088 165.526001 Z"/>
-        <path id="path50" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 471.097626 163.144897 L 471.135437 164.807861 L 471.966919 164.807861 L 472.269287 164.7323 L 472.533844 164.543335 L 472.722839 164.278748 L 472.798431 163.976379 L 472.722839 163.63623 L 472.533844 163.371643 L 472.269287 163.182678 L 471.929138 163.144897 L 471.097626 163.144897 Z"/>
-        <path id="path51" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 470.606293 158.722839 L 481.151184 163.900818 L 470.644104 169.229919 L 470.606293 158.722839 L 470.606293 158.722839 Z"/>
-        <path id="path52" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 397.737 158.987427 L 409.453552 158.987427 L 409.453552 169.645691 L 397.737 169.645691 L 397.737 158.987427 Z"/>
-        <text id="text16" xml:space="preserve" x="397" y="169" font-family="Calibri" font-size="8.88189" fill="#607423">1</text>
-        <text id="text17" xml:space="preserve" x="401" y="169" font-family="Calibri" font-size="8.88189" fill="#607423">-</text>
-        <text id="text18" xml:space="preserve" x="404" y="169" font-family="Calibri" font-size="8.88189" fill="#607423">1</text>
-        <path id="path53" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 341.11969 57.922852 L 465.730713 57.922852 L 465.730713 133.210999 L 341.11969 133.210999 L 341.11969 57.922852 Z"/>
-        <path id="path54" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 341.11969 133.210999 L 465.730713 133.210999 L 465.730713 57.922852 L 341.11969 57.922852 L 341.11969 133.210999 Z"/>
-        <text id="Group-resource-creation-" xml:space="preserve" x="345" y="78" font-family="Calibri" font-size="11.111811" fill="#406fc5">Group resource creation</text>
-        <text id="for" xml:space="preserve" x="345" y="92" font-family="Calibri" font-size="11.111811" fill="#406fc5">for</text>
-        <text id="u" xml:space="preserve" x="360" y="92" font-family="Calibri" font-size="11.111811" fill="#406fc5">u</text>
-        <text id="pdating-and-retrieval-" xml:space="preserve" x="366" y="92" font-family="Calibri" font-size="11.111811" fill="#406fc5">pdating and retrieval</text>
-        <text id="of-the-state-of" xml:space="preserve" x="345" y="105" font-family="Calibri" font-size="11.111811" fill="#406fc5">of the state of a group of</text>
-        <text id="lights" xml:space="preserve" x="345" y="122" font-family="Calibri" font-size="11.111811" fill="#406fc5">lights</text>
-        <text id="text19" xml:space="preserve" x="369" y="122" font-family="Calibri" font-size="11.111811" fill="#406fc5">.</text>
-        <path id="path55" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 493.094482 139.522827 L 598.240967 139.522827 L 598.240967 227.661438 L 493.094482 227.661438 L 493.094482 139.522827 Z"/>
-        <path id="path56" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 493.094482 227.661438 L 598.240967 227.661438 L 598.240967 139.522827 L 493.094482 139.522827 L 493.094482 227.661438 Z"/>
-        <text id="Group-resource-is-" xml:space="preserve" x="505" y="162" font-family="Calibri" font-size="11.111811" fill="#406fc5">Group resource is</text>
-        <text id="created-with-a-" xml:space="preserve" x="512" y="176" font-family="Calibri" font-size="11.111811" fill="#406fc5">created with a</text>
-        <text id="specific-access-" xml:space="preserve" x="512" y="189" font-family="Calibri" font-size="11.111811" fill="#406fc5">specific access</text>
-        <text id="control-policy-under-" xml:space="preserve" x="499" y="202" font-family="Calibri" font-size="11.111811" fill="#406fc5">control policy under</text>
-        <text id="text20" xml:space="preserve" x="526" y="216" font-family="Calibri" font-size="11.111811" fill="#406fc5">MN</text>
-        <text id="text21" xml:space="preserve" x="543" y="216" font-family="Calibri" font-size="11.111811" fill="#406fc5">-</text>
-        <text id="text22" xml:space="preserve" x="546" y="216" font-family="Calibri" font-size="11.111811" fill="#406fc5">CSE</text>
-        <path id="path57" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 69.371651 222.483459 L 174.782684 222.483459 L 174.782684 261.110229 L 69.371651 261.110229 L 69.371651 222.483459 Z"/>
-        <path id="path58" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 69.371651 261.110229 L 174.782684 261.110229 L 174.782684 222.483459 L 69.371651 222.483459 L 69.371651 261.110229 Z"/>
-        <text id="container-resource-" xml:space="preserve" x="73" y="238" font-family="Calibri" font-size="11.111811" fill="#406fc5">container resource</text>
-        <text id="creation" xml:space="preserve" x="73" y="255" font-family="Calibri" font-size="11.111811" fill="#406fc5">creation</text>
-        <text id="for-light" xml:space="preserve" x="113" y="255" font-family="Calibri" font-size="11.111811" fill="#406fc5">for light</text>
-        <text id="text23" xml:space="preserve" x="148" y="255" font-family="Calibri" font-size="11.111811" fill="#406fc5">#</text>
-        <text id="text24" xml:space="preserve" x="154" y="255" font-family="Calibri" font-size="11.111811" fill="#406fc5">1</text>
-        <path id="path59" fill="none" stroke="#595959" stroke-width="1.662992" stroke-linejoin="round" d="M 54.820473 269.727539 L 471.211029 270.10553"/>
-        <path id="path60" fill="#595959" fill-rule="evenodd" stroke="none" d="M 54.933861 270.559082 L 54.933861 268.896057 L 54.102364 268.896057 L 53.762207 268.97168 L 53.497635 269.122864 L 53.308662 269.425171 L 53.270866 269.727539 L 53.308662 270.029907 L 53.497635 270.332275 L 53.762207 270.483459 L 54.102364 270.559082 L 54.933861 270.559082 Z"/>
-        <path id="path61" fill="#595959" fill-rule="evenodd" stroke="none" d="M 471.135437 269.236206 L 471.097626 270.937012 L 471.966919 270.937012 L 472.269287 270.861389 L 472.533844 270.672424 L 472.722839 270.407898 L 472.798431 270.10553 L 472.722839 269.765381 L 472.533844 269.500793 L 472.269287 269.311829 L 471.966919 269.236206 L 471.135437 269.236206 Z"/>
-        <path id="path62" fill="#595959" fill-rule="evenodd" stroke="none" d="M 470.644104 264.814148 L 481.151184 270.10553 L 470.644104 275.35907 L 470.644104 264.814148 L 470.644104 264.814148 Z"/>
-        <path id="path63" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 261.749603 264.587402 L 273.466156 264.587402 L 273.466156 275.245667 L 261.749603 275.245667 L 261.749603 264.587402 Z"/>
-        <text id="text25" xml:space="preserve" x="261" y="275" font-family="Calibri" font-size="8.88189" fill="#607423">2</text>
-        <text id="text26" xml:space="preserve" x="265" y="275" font-family="Calibri" font-size="8.88189" fill="#607423">-</text>
-        <text id="text27" xml:space="preserve" x="268" y="275" font-family="Calibri" font-size="8.88189" fill="#607423">1</text>
-        <path id="path64" fill="none" stroke="#595959" stroke-width="1.662992" stroke-linejoin="round" d="M 190.770081 331.144897 L 471.211029 331.900818"/>
-        <path id="path65" fill="#595959" fill-rule="evenodd" stroke="none" d="M 190.883469 331.976379 L 190.883469 330.313416 L 190.051971 330.275574 L 189.749603 330.351196 L 189.485046 330.540161 L 189.296066 330.804749 L 189.220474 331.107117 L 189.296066 331.447266 L 189.44725 331.711792 L 189.749603 331.900818 L 190.051971 331.976379 L 190.883469 331.976379 Z"/>
-        <path id="path66" fill="#595959" fill-rule="evenodd" stroke="none" d="M 471.135437 331.069275 L 471.097626 332.7323 L 471.929138 332.7323 L 472.269287 332.656677 L 472.533844 332.467712 L 472.722839 332.203125 L 472.798431 331.900818 L 472.722839 331.560608 L 472.533844 331.296082 L 472.269287 331.107117 L 471.966919 331.069275 L 471.135437 331.069275 Z"/>
-        <path id="path67" fill="#595959" fill-rule="evenodd" stroke="none" d="M 470.644104 326.609436 L 481.151184 331.900818 L 470.606293 337.154358 L 470.644104 326.609436 L 470.644104 326.609436 Z"/>
-        <path id="path68" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 329.743317 326.193726 L 341.459839 326.193726 L 341.459839 336.85199 L 329.743317 336.85199 L 329.743317 326.193726 Z"/>
-        <text id="text28" xml:space="preserve" x="329" y="336" font-family="Calibri" font-size="8.88189" fill="#607423">2</text>
-        <text id="text29" xml:space="preserve" x="333" y="336" font-family="Calibri" font-size="8.88189" fill="#607423">-</text>
-        <text id="text30" xml:space="preserve" x="336" y="336" font-family="Calibri" font-size="8.88189" fill="#607423">2</text>
-        <path id="path69" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 209.743301 281.897644 L 315.154327 281.897644 L 315.154327 320.524414 L 209.743301 320.524414 L 209.743301 281.897644 Z"/>
-        <path id="path70" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 209.743301 320.524414 L 315.154327 320.524414 L 315.154327 281.897644 L 209.743301 281.897644 L 209.743301 320.524414 Z"/>
-        <text id="text31" xml:space="preserve" x="213" y="297" font-family="Calibri" font-size="11.111811" fill="#406fc5">container resource</text>
-        <text id="creation-for-light" xml:space="preserve" x="213" y="315" font-family="Calibri" font-size="11.111811" fill="#406fc5">creation for light</text>
-        <text id="text32" xml:space="preserve" x="289" y="315" font-family="Calibri" font-size="11.111811" fill="#406fc5">#</text>
-        <text id="text33" xml:space="preserve" x="294" y="315" font-family="Calibri" font-size="11.111811" fill="#406fc5">2</text>
-        <path id="path71" fill="none" stroke="#007f7f" stroke-width="1.662992" stroke-linejoin="round" d="M 55.46299 396.455109 L 471.853546 396.833069"/>
-        <path id="path72" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 55.576378 397.286621 L 55.576378 395.623627 L 54.744881 395.623627 L 54.404724 395.699219 L 54.14016 395.850403 L 53.95118 396.152771 L 53.913383 396.455109 L 53.95118 396.757477 L 54.14016 397.059845 L 54.404724 397.211029 L 54.744881 397.286621 L 55.576378 397.286621 Z"/>
-        <path id="path73" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 471.777954 395.963776 L 471.777954 397.664581 L 472.609436 397.664581 L 472.911804 397.588989 L 473.176392 397.399994 L 473.365356 397.135437 L 473.440948 396.833069 L 473.365356 396.49292 L 473.176392 396.228333 L 472.911804 396.039368 L 472.609436 395.963776 L 471.777954 395.963776 Z"/>
-        <path id="path74" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 471.286621 391.541718 L 481.793701 396.833069 L 471.286621 402.086609 L 471.286621 391.541718 L 471.286621 391.541718 Z"/>
-        <path id="path75" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 262.39212 391.314972 L 274.146454 391.314972 L 274.146454 401.973236 L 262.39212 401.973236 L 262.39212 391.314972 Z"/>
-        <text id="3" xml:space="preserve" x="261" y="401" font-family="Calibri" font-size="8.88189" fill="#607423">3</text>
-        <text id="text34" xml:space="preserve" x="266" y="401" font-family="Calibri" font-size="8.88189" fill="#607423">-</text>
-        <text id="text35" xml:space="preserve" x="269" y="401" font-family="Calibri" font-size="8.88189" fill="#607423">1</text>
-        <path id="path76" fill="none" stroke="#007f7f" stroke-width="1.662992" stroke-linejoin="round" d="M 190.770081 466.527557 L 471.211029 467.283478"/>
-        <path id="path77" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 190.883469 467.35907 L 190.883469 465.696075 L 190.051971 465.696075 L 189.749603 465.733856 L 189.485046 465.922821 L 189.296066 466.187408 L 189.220474 466.527557 L 189.296066 466.829926 L 189.44725 467.094482 L 189.749603 467.283478 L 190.051971 467.35907 L 190.883469 467.35907 Z"/>
-        <path id="path78" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 471.135437 466.451965 L 471.097626 468.11496 L 471.929138 468.11496 L 472.269287 468.039368 L 472.533844 467.850403 L 472.722839 467.585815 L 472.798431 467.283478 L 472.722839 466.943298 L 472.533844 466.678741 L 472.269287 466.489777 L 471.966919 466.451965 L 471.135437 466.451965 Z"/>
-        <path id="path79" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 470.644104 461.992126 L 481.151184 467.283478 L 470.606293 472.537018 L 470.644104 461.992126 L 470.644104 461.992126 Z"/>
-        <path id="path80" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 329.743317 461.576385 L 341.459839 461.576385 L 341.459839 472.23465 L 329.743317 472.23465 L 329.743317 461.576385 Z"/>
-        <text id="text36" xml:space="preserve" x="329" y="472" font-family="Calibri" font-size="8.88189" fill="#607423">3</text>
-        <text id="text37" xml:space="preserve" x="333" y="472" font-family="Calibri" font-size="8.88189" fill="#607423">-</text>
-        <text id="text38" xml:space="preserve" x="336" y="472" font-family="Calibri" font-size="8.88189" fill="#607423">2</text>
-        <path id="path81" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 69.371651 333.488159 L 174.782684 333.488159 L 174.782684 390.143311 L 69.371651 390.143311 L 69.371651 333.488159 Z"/>
-        <path id="path82" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 69.371651 390.143311 L 174.782684 390.143311 L 174.782684 333.488159 L 69.371651 333.488159 L 69.371651 390.143311 Z"/>
-        <text id="contentInstance-" xml:space="preserve" x="73" y="344" font-family="Calibri" font-size="11.111811" fill="#406fc5">contentInstance</text>
-        <text id="resource-creation-" xml:space="preserve" x="73" y="358" font-family="Calibri" font-size="11.111811" fill="#406fc5">resource creation</text>
-        <text id="under-container-of-" xml:space="preserve" x="73" y="371" font-family="Calibri" font-size="11.111811" fill="#406fc5">under container of</text>
-        <text id="light" xml:space="preserve" x="73" y="388" font-family="Calibri" font-size="11.111811" fill="#406fc5">light</text>
-        <text id="text39" xml:space="preserve" x="93" y="388" font-family="Calibri" font-size="11.111811" fill="#406fc5">#</text>
-        <text id="text40" xml:space="preserve" x="98" y="388" font-family="Calibri" font-size="11.111811" fill="#406fc5">1</text>
-        <path id="path83" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 207.324402 402.766937 L 312.470856 402.766937 L 312.470856 459.422058 L 207.324402 459.422058 L 207.324402 402.766937 Z"/>
-        <path id="path84" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 207.324402 459.422058 L 312.470856 459.422058 L 312.470856 402.766937 L 207.324402 402.766937 L 207.324402 459.422058 Z"/>
-        <text id="text41" xml:space="preserve" x="211" y="414" font-family="Calibri" font-size="11.111811" fill="#406fc5">contentInstance</text>
-        <text id="text42" xml:space="preserve" x="211" y="427" font-family="Calibri" font-size="11.111811" fill="#406fc5">resource creation</text>
-        <text id="text43" xml:space="preserve" x="211" y="440" font-family="Calibri" font-size="11.111811" fill="#406fc5">under container of</text>
-        <text id="text44" xml:space="preserve" x="211" y="458" font-family="Calibri" font-size="11.111811" fill="#406fc5">light</text>
-        <text id="text45" xml:space="preserve" x="231" y="458" font-family="Calibri" font-size="11.111811" fill="#406fc5">#</text>
-        <text id="text46" xml:space="preserve" x="236" y="458" font-family="Calibri" font-size="11.111811" fill="#406fc5">2</text>
-        <path id="path85" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 493.094482 254.0047 L 598.240967 254.0047 L 598.240967 342.143311 L 493.094482 342.143311 L 493.094482 254.0047 Z"/>
-        <path id="path86" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 493.094482 342.143311 L 598.240967 342.143311 L 598.240967 254.0047 L 493.094482 254.0047 L 493.094482 342.143311 Z"/>
-        <text id="Container-resources-" xml:space="preserve" x="499" y="277" font-family="Calibri" font-size="11.111811" fill="#406fc5">Container resources</text>
-        <text id="are-created-with-a" xml:space="preserve" x="504" y="290" font-family="Calibri" font-size="11.111811" fill="#406fc5">are created with a</text>
-        <text id="text47" xml:space="preserve" x="512" y="303" font-family="Calibri" font-size="11.111811" fill="#406fc5">specific access</text>
-        <text id="text48" xml:space="preserve" x="499" y="317" font-family="Calibri" font-size="11.111811" fill="#406fc5">control policy under</text>
-        <text id="text49" xml:space="preserve" x="526" y="330" font-family="Calibri" font-size="11.111811" fill="#406fc5">MN</text>
-        <text id="text50" xml:space="preserve" x="543" y="330" font-family="Calibri" font-size="11.111811" fill="#406fc5">-</text>
-        <text id="text51" xml:space="preserve" x="546" y="330" font-family="Calibri" font-size="11.111811" fill="#406fc5">CSE</text>
-        <path id="path87" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 493.094482 385.759064 L 598.240967 385.759064 L 598.240967 473.897644 L 493.094482 473.897644 L 493.094482 385.759064 Z"/>
-        <path id="path88" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 493.094482 473.897644 L 598.240967 473.897644 L 598.240967 385.759064 L 493.094482 385.759064 L 493.094482 473.897644 Z"/>
-        <text id="ContentInstance-" xml:space="preserve" x="507" y="409" font-family="Calibri" font-size="11.111811" fill="#406fc5">ContentInstance</text>
-        <text id="resources-are-" xml:space="preserve" x="514" y="422" font-family="Calibri" font-size="11.111811" fill="#406fc5">resources are</text>
-        <text id="created-under-" xml:space="preserve" x="513" y="435" font-family="Calibri" font-size="11.111811" fill="#406fc5">created under</text>
-        <text id="created-containers-in-" xml:space="preserve" x="497" y="448" font-family="Calibri" font-size="11.111811" fill="#406fc5">created containers in</text>
-        <text id="text52" xml:space="preserve" x="526" y="462" font-family="Calibri" font-size="11.111811" fill="#406fc5">MN</text>
-        <text id="text53" xml:space="preserve" x="543" y="462" font-family="Calibri" font-size="11.111811" fill="#406fc5">-</text>
-        <text id="text54" xml:space="preserve" x="546" y="462" font-family="Calibri" font-size="11.111811" fill="#406fc5">CSE</text>
-        <path id="path89" fill="none" stroke="#007f7f" stroke-width="1.662992" stroke-linejoin="round" d="M 54.820473 537.771667 L 471.211029 538.149597"/>
-        <path id="path90" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 54.933861 538.603149 L 54.933861 536.940186 L 54.102364 536.940186 L 53.762207 537.015747 L 53.497635 537.166931 L 53.308662 537.469299 L 53.270866 537.771667 L 53.308662 538.111816 L 53.497635 538.376343 L 53.762207 538.527588 L 54.102364 538.603149 L 54.933861 538.603149 Z"/>
-        <path id="path91" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 471.135437 537.280273 L 471.097626 538.981079 L 471.966919 538.981079 L 472.269287 538.905518 L 472.533844 538.716553 L 472.722839 538.451965 L 472.798431 538.149597 L 472.722839 537.809448 L 472.533844 537.544922 L 472.269287 537.355896 L 471.966919 537.318115 L 471.135437 537.280273 Z"/>
-        <path id="path92" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 470.644104 532.858276 L 481.151184 538.149597 L 470.644104 543.403137 L 470.644104 532.858276 L 470.644104 532.858276 Z"/>
-        <path id="path93" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 261.749603 532.63147 L 273.466156 532.63147 L 273.466156 543.289795 L 261.749603 543.289795 L 261.749603 532.63147 Z"/>
-        <text id="4" xml:space="preserve" x="261" y="543" font-family="Calibri" font-size="8.88189" fill="#607423">4</text>
-        <text id="text55" xml:space="preserve" x="265" y="543" font-family="Calibri" font-size="8.88189" fill="#607423">-</text>
-        <text id="text56" xml:space="preserve" x="268" y="543" font-family="Calibri" font-size="8.88189" fill="#607423">1</text>
-        <path id="path94" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 69.371651 475.182678 L 174.782684 475.182678 L 174.782684 531.837769 L 69.371651 531.837769 L 69.371651 475.182678 Z"/>
-        <path id="path95" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 69.371651 531.837769 L 174.782684 531.837769 L 174.782684 475.182678 L 69.371651 475.182678 L 69.371651 531.837769 Z"/>
-        <text id="subscription" xml:space="preserve" x="73" y="493" font-family="Calibri" font-size="11.111811" fill="#406fc5">subscription</text>
-        <text id="resource-creation-to-" xml:space="preserve" x="73" y="506" font-family="Calibri" font-size="11.111811" fill="#406fc5">resource creation to</text>
-        <text id="container-of" xml:space="preserve" x="73" y="524" font-family="Calibri" font-size="11.111811" fill="#406fc5">container of</text>
-        <text id="text57" xml:space="preserve" x="130" y="524" font-family="Calibri" font-size="11.111811" fill="#406fc5">light</text>
-        <text id="text58" xml:space="preserve" x="150" y="524" font-family="Calibri" font-size="11.111811" fill="#406fc5">#</text>
-        <text id="text59" xml:space="preserve" x="156" y="524" font-family="Calibri" font-size="11.111811" fill="#406fc5">1</text>
-        <path id="path96" fill="none" stroke="#007f7f" stroke-width="1.662992" stroke-linejoin="round" d="M 190.770081 608.184265 L 471.211029 608.940186"/>
-        <path id="path97" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 190.883469 609.015747 L 190.883469 607.352783 L 190.051971 607.352783 L 189.749603 607.428345 L 189.485046 607.61731 L 189.296066 607.881897 L 189.220474 608.184265 L 189.296066 608.524414 L 189.44725 608.78894 L 189.749603 608.977966 L 190.051971 609.015747 L 190.883469 609.015747 Z"/>
-        <path id="path98" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 471.135437 608.108643 L 471.097626 609.771667 L 471.929138 609.771667 L 472.269287 609.733887 L 472.533844 609.544922 L 472.722839 609.280273 L 472.798431 608.977966 L 472.722839 608.637817 L 472.533844 608.37323 L 472.269287 608.184265 L 471.966919 608.108643 L 471.135437 608.108643 Z"/>
-        <path id="path99" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 470.644104 603.686646 L 481.151184 608.977966 L 470.606293 614.231506 L 470.644104 603.686646 L 470.644104 603.686646 Z"/>
-        <path id="path100" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 329.743317 603.270874 L 341.459839 603.270874 L 341.459839 613.929138 L 329.743317 613.929138 L 329.743317 603.270874 Z"/>
-        <text id="text60" xml:space="preserve" x="329" y="613" font-family="Calibri" font-size="8.88189" fill="#607423">4</text>
-        <text id="text61" xml:space="preserve" x="333" y="613" font-family="Calibri" font-size="8.88189" fill="#607423">-</text>
-        <text id="text62" xml:space="preserve" x="336" y="613" font-family="Calibri" font-size="8.88189" fill="#607423">2</text>
-        <path id="path101" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 209.743301 541.664551 L 315.154327 541.664551 L 315.154327 598.319702 L 209.743301 598.319702 L 209.743301 541.664551 Z"/>
-        <path id="path102" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 209.743301 598.319702 L 315.154327 598.319702 L 315.154327 541.664551 L 209.743301 541.664551 L 209.743301 598.319702 Z"/>
-        <text id="text63" xml:space="preserve" x="213" y="559" font-family="Calibri" font-size="11.111811" fill="#406fc5">subscription</text>
-        <text id="text64" xml:space="preserve" x="213" y="573" font-family="Calibri" font-size="11.111811" fill="#406fc5">resource creation to</text>
-        <text id="container-of-light" xml:space="preserve" x="213" y="590" font-family="Calibri" font-size="11.111811" fill="#406fc5">container of light</text>
-        <text id="text65" xml:space="preserve" x="290" y="590" font-family="Calibri" font-size="11.111811" fill="#406fc5">#</text>
-        <text id="text66" xml:space="preserve" x="296" y="590" font-family="Calibri" font-size="11.111811" fill="#406fc5">2</text>
-        <path id="path103" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 493.094482 487.503937 L 598.240967 487.503937 L 598.240967 616.839355 L 493.094482 616.839355 L 493.094482 487.503937 Z"/>
-        <path id="path104" fill="none" stroke="#ffffff" stroke-width="0.566929" stroke-linejoin="round" d="M 493.094482 616.839355 L 598.240967 616.839355 L 598.240967 487.503937 L 493.094482 487.503937 L 493.094482 616.839355 Z"/>
-        <text id="subscription-" xml:space="preserve" x="517" y="518" font-family="Calibri" font-size="11.111811" fill="#406fc5">subscription</text>
-        <text id="resources-" xml:space="preserve" x="517" y="531" font-family="Calibri" font-size="11.111811" fill="#406fc5">resources</text>
-        <text id="to" xml:space="preserve" x="563" y="531" font-family="Calibri" font-size="11.111811" fill="#406fc5">to</text>
-        <text id="containers-in-MN" xml:space="preserve" x="504" y="544" font-family="Calibri" font-size="11.111811" fill="#406fc5">containers in MN</text>
-        <text id="text67" xml:space="preserve" x="582" y="544" font-family="Calibri" font-size="11.111811" fill="#406fc5">-</text>
-        <text id="text68" xml:space="preserve" x="502" y="557" font-family="Calibri" font-size="11.111811" fill="#406fc5">CSE</text>
-        <text id="are-created" xml:space="preserve" x="520" y="557" font-family="Calibri" font-size="11.111811" fill="#406fc5">are created</text>
-        <text id="for-" xml:space="preserve" x="575" y="557" font-family="Calibri" font-size="11.111811" fill="#406fc5">for</text>
-        <text id="monitoring-" xml:space="preserve" x="520" y="571" font-family="Calibri" font-size="11.111811" fill="#406fc5">monitoring</text>
-        <text id="text69" xml:space="preserve" x="508" y="584" font-family="Calibri" font-size="11.111811" fill="#406fc5">contentInstance</text>
-        <text id="update" xml:space="preserve" x="529" y="597" font-family="Calibri" font-size="11.111811" fill="#406fc5">update</text>
-    </g>
-</svg>
+<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="710px" preserveAspectRatio="none" style="width:627px;height:710px;background:#FFFFFF;" version="1.1" viewBox="0 0 627 710" width="627px" zoomAndPan="magnify"><defs/><g><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="43" x2="43" y1="36.2969" y2="703.4141"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="129" x2="129" y1="36.2969" y2="703.4141"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="206" x2="206" y1="36.2969" y2="703.4141"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="388" x2="388" y1="36.2969" y2="703.4141"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="463" x2="463" y1="36.2969" y2="703.4141"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="528" x2="528" y1="36.2969" y2="703.4141"/><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="5" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="12" y="24.9951">ADN-AE1</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="91" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="98" y="24.9951">ADN-AE2</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="59" x="177" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="184" y="24.9951">MN-AE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="69" x="354" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="361" y="24.9951">MN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="60" x="433" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="440" y="24.9951">IN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="50" x="503" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="510" y="24.9951">IN-AE</text><polygon fill="#181818" points="376.5,108.8281,386.5,112.8281,376.5,116.8281,380.5,112.8281" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="206.5" x2="382.5" y1="112.8281" y2="112.8281"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="116" x="239.5" y="62.3638">1) Group resource</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="133" x="231" y="77.4966">creation for updating</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="158" x="218.5" y="92.6294">and retrieval of the state</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="119" x="238" y="107.7622">of a group of lights</text><path d="M393,125.8281 L393,180.8281 L604,180.8281 L604,135.8281 L594,125.8281 L393,125.8281 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M594,125.8281 L594,135.8281 L604,135.8281 L594,125.8281 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="166" x="415.5" y="142.895">Group resource is created</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="136" x="430.5" y="158.0278">with a specific access</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="181" x="408" y="173.1606">control policy under MN-CSE</text><polygon fill="#181818" points="376.5,218.4922,386.5,222.4922,376.5,226.4922,380.5,222.4922" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="43" x2="382.5" y1="222.4922" y2="222.4922"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="152" x="139.75" y="202.2935">2-1) Container resource</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="118" x="156.75" y="217.4263">creation of light#1</text><polygon fill="#181818" points="376.5,262.7578,386.5,266.7578,376.5,270.7578,380.5,266.7578" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="129" x2="382.5" y1="266.7578" y2="266.7578"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="152" x="182.75" y="246.5591">2-2) Container resource</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="118" x="199.75" y="261.6919">creation of light#2</text><path d="M393,279.7578 L393,334.7578 L612,334.7578 L612,289.7578 L602,279.7578 L393,279.7578 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M602,279.7578 L602,289.7578 L612,289.7578 L602,279.7578 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="154" x="425.5" y="296.8247">Container resources are</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="189" x="408" y="311.9575">created with a specific access</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="181" x="412" y="327.0903">control policy under MN-CSE</text><polygon fill="#181818" points="376.5,387.5547,386.5,391.5547,376.5,395.5547,380.5,391.5547" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="43" x2="382.5" y1="391.5547" y2="391.5547"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="135" x="148.25" y="356.2231">3-1) ContentInstance</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="112" x="159.75" y="371.356">resource creation</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="167" x="132.25" y="386.4888">under container of light#1</text><polygon fill="#181818" points="376.5,446.9531,386.5,450.9531,376.5,454.9531,380.5,450.9531" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="129" x2="382.5" y1="450.9531" y2="450.9531"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="135" x="191.25" y="415.6216">3-2) ContentInstance</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="112" x="202.75" y="430.7544">resource creation</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="167" x="175.25" y="445.8872">under container of light#2</text><path d="M393,463.9531 L393,518.9531 L620,518.9531 L620,473.9531 L610,463.9531 L393,463.9531 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M610,463.9531 L610,473.9531 L620,473.9531 L610,463.9531 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="197" x="408" y="481.02">ContentInstance resources are</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="186" x="413.5" y="496.1528">created under the containers</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="67" x="473" y="511.2856">in MN-CSE</text><polygon fill="#181818" points="376.5,556.6172,386.5,560.6172,376.5,564.6172,380.5,560.6172" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="43" x2="382.5" y1="560.6172" y2="560.6172"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="169" x="131.25" y="540.4185">4-1) Subscription resource</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="199" x="116.25" y="555.5513">creation to container of light#1</text><polygon fill="#181818" points="376.5,600.8828,386.5,604.8828,376.5,608.8828,380.5,604.8828" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="129" x2="382.5" y1="604.8828" y2="604.8828"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="169" x="174.25" y="584.6841">4-2) Subscription resource</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="199" x="159.25" y="599.8169">creation to container of light#2</text><path d="M393,617.8828 L393,687.8828 L586,687.8828 L586,627.8828 L576,617.8828 L393,617.8828 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M576,617.8828 L576,627.8828 L586,627.8828 L576,617.8828 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="163" x="408" y="634.9497">Subscription resources to</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="163" x="408" y="650.0825">containers in MN-CSE are</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="143" x="418" y="665.2153">created for monitoring</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="159" x="410" y="680.3481">contentInstance updates</text><!--SRC=[hPCnJyCm48Nd-bSSOO0E7HgO692YWb27LaWmTd6TQskHd8FjGFdtd6CbRKIAAiHcv_bUxdrdxtIEi376hyrUk3TDbRIo18VlDPB21JedjvWLUakWa3pQerDaFBxYtZTooMfxvEh2xx14g0gfgTkLqZfn9Mjlg2xNQ26vlXn38eHubjPhfIl95adsi9naZzC4f0DUyt98JmzwsjSNGMxK1Oi_jDbBA_AghyuFwdnGpLgHVKLmXybzDBg3wHYUhAahiEXCRHMkI5cKNXjYm1RgAkSDRLSaAUT3tchya0MO3J0US5vwBk6TX6tZmqlcklDEB9apsB0E7sFZe_xFG3jeVeUv67rglsCRLw7I6wr0AiLp52Dbo5jJG6KAhRwWffo74948vAR2F8M8p8-IfHFEDkDQ7YON3EHhMxsSnkgqLvsUMvqE9_rPx41Qv3mnCFnptfisBr_cEV5WABJRaMxxNb4qL5rxls6uQJ7ysVGNEaUUfnX5st3JEcicfEaC7hU1nqkzTihggfdOm12zEHF4RG3nDxSJ10RD77l46n2pGXUrpoKypTAGziRouumLnpYRPulkmESR]--></g></svg>
\ No newline at end of file
diff --git a/media/MN-CSE-ResourceTree.png b/media/MN-CSE-ResourceTree.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c4e636d8b83ac2b18001326a083ff1f44ab32da
Binary files /dev/null and b/media/MN-CSE-ResourceTree.png differ
diff --git a/media/MN-CSE-ResourceTree.puml b/media/MN-CSE-ResourceTree.puml
new file mode 100644
index 0000000000000000000000000000000000000000..0d5f05d2fdae517000aa721934a152e3fb4250ad
--- /dev/null
+++ b/media/MN-CSE-ResourceTree.puml
@@ -0,0 +1,29 @@
+@startuml
+
+skinparam Legend {
+    BackgroundColor transparent
+    BorderColor transparent
+    FontSize 20
+}
+
+legend
+home_gateway
+|_ gateway_acp
+|_ light_ae1
+	|_ light
+		|_ CI1
+		|_ CI2
+		|_ CIn
+		|_ lightstate_sub1
+|_ light_ae2
+	|_ light
+		|_ CI1
+		|_ CI2
+		|_ CIn
+		|_ lightstate_sub2
+|_ gateway_ae
+	|_containers_group
+
+end legend
+
+@enduml
\ No newline at end of file
diff --git a/media/MN-CSE-ResourceTree.svg b/media/MN-CSE-ResourceTree.svg
new file mode 100644
index 0000000000000000000000000000000000000000..19b08cb0ada1ec1bb465fd2f30987030f615be12
--- /dev/null
+++ b/media/MN-CSE-ResourceTree.svg
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="451px" preserveAspectRatio="none" style="width:242px;height:451px;background:#FFFFFF;" version="1.1" viewBox="0 0 242 451" width="242px" zoomAndPan="magnify"><defs/><g><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="152" x="17" y="45.5645">home_gateway</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="131" x="41" y="70.8457">gateway_acp</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="93" x="41" y="94.127">light_ae1</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="46" x="49" y="117.4082">light</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="33" x="57" y="140.6895">CI1</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="33" x="57" y="163.9707">CI2</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="33" x="57" y="187.252">CIn</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="155" x="57" y="210.5332">lightstate_sub1</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="93" x="41" y="233.8145">light_ae2</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="46" x="49" y="257.0957">light</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="33" x="57" y="280.377">CI1</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="33" x="57" y="303.6582">CI2</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="33" x="57" y="326.9395">CIn</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="155" x="57" y="350.2207">lightstate_sub2</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="119" x="41" y="373.502">gateway_ae</text><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="174" x="43" y="396.7832">containers_group</text><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="32" y="62.9219"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="33" y1="63.9219" y2="63.9219"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="25" y1="52.2813" y2="63.9219"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="32" y="86.2031"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="33" y1="87.2031" y2="87.2031"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="25" y1="63.9219" y2="87.2031"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="40" y="109.4844"/><line style="stroke:#000000;stroke-width:1.0;" x1="33" x2="41" y1="110.4844" y2="110.4844"/><line style="stroke:#000000;stroke-width:1.0;" x1="33" x2="33" y1="87.2031" y2="110.4844"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="48" y="132.7656"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="49" y1="133.7656" y2="133.7656"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="41" y1="110.4844" y2="133.7656"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="48" y="156.0469"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="49" y1="157.0469" y2="157.0469"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="41" y1="133.7656" y2="157.0469"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="48" y="179.3281"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="49" y1="180.3281" y2="180.3281"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="41" y1="157.0469" y2="180.3281"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="48" y="202.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="49" y1="203.6094" y2="203.6094"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="41" y1="180.3281" y2="203.6094"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="32" y="225.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="33" y1="226.8906" y2="226.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="25" y1="87.2031" y2="226.8906"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="40" y="249.1719"/><line style="stroke:#000000;stroke-width:1.0;" x1="33" x2="41" y1="250.1719" y2="250.1719"/><line style="stroke:#000000;stroke-width:1.0;" x1="33" x2="33" y1="226.8906" y2="250.1719"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="48" y="272.4531"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="49" y1="273.4531" y2="273.4531"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="41" y1="250.1719" y2="273.4531"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="48" y="295.7344"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="49" y1="296.7344" y2="296.7344"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="41" y1="273.4531" y2="296.7344"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="48" y="319.0156"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="49" y1="320.0156" y2="320.0156"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="41" y1="296.7344" y2="320.0156"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="48" y="342.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="49" y1="343.2969" y2="343.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="41" x2="41" y1="320.0156" y2="343.2969"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="32" y="365.5781"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="33" y1="366.5781" y2="366.5781"/><line style="stroke:#000000;stroke-width:1.0;" x1="25" x2="25" y1="226.8906" y2="366.5781"/><rect fill="none" height="2" style="stroke:#000000;stroke-width:1.0;" width="2" x="40" y="388.8594"/><line style="stroke:#000000;stroke-width:1.0;" x1="33" x2="41" y1="389.8594" y2="389.8594"/><line style="stroke:#000000;stroke-width:1.0;" x1="33" x2="33" y1="366.5781" y2="389.8594"/><text fill="#000000" font-family="sans-serif" font-size="20" lengthAdjust="spacing" textLength="6" x="17" y="422.0645">&#160;</text><!--SRC=[dP192iCm34NNqIbyXCP7QA1GwAu7C6eY79D43h93wNJtsXcWXQwgrHDVF2I5pl68WeCwaILkr0DKgZtMdHK_SLFvtekAWXpI775SSYyDoU_iu3cUtPsKti4Be9-zqFg1ZCL8Lxp1qwWL3TPZRdjdssYGIYYs3egCrR7SG6_02ynJ8IQH2TEb_DJelpNwQpdAdZeTX8v9Wia_6G7oezQxtW00]--></g></svg>
\ No newline at end of file
diff --git a/media/MultipleLightsRemoteControlPhaseCallFlows.png b/media/MultipleLightsRemoteControlPhaseCallFlows.png
index 95a1b2eb004ed046b36fb09c85ebb147051a7db8..87956ca64717b2b1eae42d1734b23a248a405418 100644
Binary files a/media/MultipleLightsRemoteControlPhaseCallFlows.png and b/media/MultipleLightsRemoteControlPhaseCallFlows.png differ
diff --git a/media/MultipleLightsRemoteControlPhaseCallFlows.png.svg b/media/MultipleLightsRemoteControlPhaseCallFlows.png.svg
deleted file mode 100644
index 3ff3a052a7eb53724514eedafb27515d6f26adf1..0000000000000000000000000000000000000000
--- a/media/MultipleLightsRemoteControlPhaseCallFlows.png.svg
+++ /dev/null
@@ -1,146 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Generated by Pixelmator Pro 3.5.6 -->
-<svg width="670" height="268" viewBox="0 0 670 268" xmlns="http://www.w3.org/2000/svg">
-    <clipPath id="clipPath1">
-        <path clip-rule="evenodd" d="M -17.204723 -0.881897 L 700.905506 -0.881897 L 700.905506 286.362213 L -17.204723 286.362213 Z"/>
-        <path d="M -17.204723 -0.881897 L 700.867725 -0.881897 L 700.867725 286.324402 L -17.204723 286.324402 L -17.204723 -0.881897 Z"/>
-    </clipPath>
-    <g id="Group" clip-path="url(#clipPath1)">
-        <path id="Path" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 31.62677 22.362183 L 93.648819 22.362183 L 93.648819 53.392151 L 31.62677 53.392151 L 31.62677 22.362183 Z"/>
-        <path id="path1" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 31.62677 53.392151 L 93.648819 53.392151 L 93.648819 22.362183 L 31.62677 22.362183 L 31.62677 53.392151 Z"/>
-        <path id="path2" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 62.618896 18.053528 L 62.618896 18.053528 L 62.618896 18.053528 L 62.618896 18.053528 L 62.618896 18.053528 L 62.618896 18.053528 Z"/>
-        <path id="path3" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 62.618896 53.656677 L 62.618896 250.456696"/>
-        <path id="path4" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 62.316536 53.694458 L 62.921257 53.694458 L 62.921257 53.392151 L 62.921257 53.278748 L 62.845673 53.165344 L 62.770081 53.089783 L 62.618896 53.089783 L 62.505508 53.089783 L 62.429924 53.165344 L 62.354332 53.278748 L 62.316536 53.392151 L 62.316536 53.694458 Z"/>
-        <path id="path5" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 62.921257 250.418884 L 62.316536 250.418884 L 62.316536 250.721252 L 62.354332 250.834656 L 62.429924 250.910248 L 62.505508 250.98584 L 62.618896 251.023621 L 62.770081 250.98584 L 62.845673 250.910248 L 62.921257 250.834656 L 62.921257 250.721252 L 62.921257 250.418884 Z"/>
-        <path id="path6" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 21.308662 22.362183 L 103.966934 22.362183 L 103.966934 53.392151 L 21.308662 53.392151 L 21.308662 22.362183 Z"/>
-        <path id="path7" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 21.308662 53.392151 L 103.966934 53.392151 L 103.966934 22.362183 L 21.308662 22.362183 L 21.308662 53.392151 Z"/>
-        <text id="ADN" xml:space="preserve" x="34" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">ADN</text>
-        <text id="-" xml:space="preserve" x="62" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">-</text>
-        <text id="AE" xml:space="preserve" x="66" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">AE</text>
-        <text id="1" xml:space="preserve" x="82" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">1</text>
-        <path id="path8" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 124.867722 22.362183 L 186.889771 22.362183 L 186.889771 53.392151 L 124.867722 53.392151 L 124.867722 22.362183 Z"/>
-        <path id="path9" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 124.867722 53.392151 L 186.889771 53.392151 L 186.889771 22.362183 L 124.867722 22.362183 L 124.867722 53.392151 Z"/>
-        <text id="AND" xml:space="preserve" x="135" y="43" font-family="Calibri" font-size="10.922835" fill="#ffffff">AND</text>
-        <text id="text1" xml:space="preserve" x="155" y="43" font-family="Calibri" font-size="10.922835" fill="#ffffff">-</text>
-        <text id="text2" xml:space="preserve" x="158" y="43" font-family="Calibri" font-size="10.922835" fill="#ffffff">AE</text>
-        <text id="2" xml:space="preserve" x="170" y="43" font-family="Calibri" font-size="10.922835" fill="#ffffff">2</text>
-        <path id="path10" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 155.859848 18.053528 L 155.859848 18.053528 L 155.859848 18.053528 L 155.859848 18.053528 L 155.859848 18.053528 L 155.859848 18.053528 Z"/>
-        <path id="path11" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 155.859848 53.656677 L 155.859848 250.456696"/>
-        <path id="path12" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 155.55748 53.694458 L 156.162201 53.694458 L 156.162201 53.392151 L 156.162201 53.278748 L 156.086609 53.165344 L 155.973221 53.089783 L 155.859848 53.089783 L 155.74646 53.089783 L 155.670868 53.165344 L 155.595276 53.278748 L 155.55748 53.392151 L 155.55748 53.694458 Z"/>
-        <path id="path13" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 156.162201 250.418884 L 155.55748 250.418884 L 155.55748 250.721252 L 155.595276 250.834656 L 155.670868 250.910248 L 155.74646 250.98584 L 155.859848 251.023621 L 155.973221 250.98584 L 156.086609 250.910248 L 156.162201 250.834656 L 156.162201 250.721252 L 156.162201 250.418884 Z"/>
-        <path id="path14" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 114.549606 22.362183 L 197.20787 22.362183 L 197.20787 53.392151 L 114.549606 53.392151 L 114.549606 22.362183 Z"/>
-        <path id="path15" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 114.549606 53.392151 L 197.20787 53.392151 L 197.20787 22.362183 L 114.549606 22.362183 L 114.549606 53.392151 Z"/>
-        <text id="text3" xml:space="preserve" x="127" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">ADN</text>
-        <text id="text4" xml:space="preserve" x="155" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">-</text>
-        <text id="text5" xml:space="preserve" x="159" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">AE</text>
-        <text id="text6" xml:space="preserve" x="175" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">2</text>
-        <path id="path16" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 242.788971 22.362183 L 304.811035 22.362183 L 304.811035 53.392151 L 242.788971 53.392151 L 242.788971 22.362183 Z"/>
-        <path id="path17" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 242.788971 53.392151 L 304.811035 53.392151 L 304.811035 22.362183 L 242.788971 22.362183 L 242.788971 53.392151 Z"/>
-        <path id="path18" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 273.818909 18.053528 L 273.818909 18.053528 L 273.818909 18.053528 L 273.818909 18.053528 L 273.818909 18.053528 L 273.818909 18.053528 Z"/>
-        <path id="path19" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 273.818909 53.656677 L 273.818909 250.456696"/>
-        <path id="path20" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 273.516541 53.694458 L 274.121246 53.694458 L 274.121246 53.392151 L 274.083466 53.278748 L 274.007874 53.165344 L 273.932281 53.089783 L 273.818909 53.089783 L 273.705505 53.089783 L 273.592133 53.165344 L 273.516541 53.278748 L 273.516541 53.392151 L 273.516541 53.694458 Z"/>
-        <path id="path21" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 274.121246 250.418884 L 273.516541 250.418884 L 273.516541 250.721252 L 273.516541 250.834656 L 273.592133 250.910248 L 273.705505 250.98584 L 273.818909 251.023621 L 273.932281 250.98584 L 274.007874 250.910248 L 274.083466 250.834656 L 274.121246 250.721252 L 274.121246 250.418884 Z"/>
-        <path id="path22" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 232.470856 22.362183 L 315.12912 22.362183 L 315.12912 53.392151 L 232.470856 53.392151 L 232.470856 22.362183 Z"/>
-        <path id="path23" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 232.470856 53.392151 L 315.12912 53.392151 L 315.12912 22.362183 L 232.470856 22.362183 L 232.470856 53.392151 Z"/>
-        <text id="MN" xml:space="preserve" x="251" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">MN</text>
-        <text id="text7" xml:space="preserve" x="274" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">-</text>
-        <text id="text8" xml:space="preserve" x="278" y="44" font-family="Calibri" font-size="14.588976" fill="#ffffff">AE</text>
-        <path id="path24" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 356.477173 24.100769 L 418.461426 24.100769 L 418.461426 55.092896 L 356.477173 55.092896 L 356.477173 24.100769 Z"/>
-        <path id="path25" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 356.477173 55.092896 L 418.461426 55.092896 L 418.461426 24.100769 L 356.477173 24.100769 L 356.477173 55.092896 Z"/>
-        <path id="path26" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 387.469299 19.792114 L 387.469299 19.792114 L 387.469299 19.792114 L 387.469299 19.792114 L 387.469299 19.792114 L 387.469299 19.792114 Z"/>
-        <path id="path27" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 387.469299 55.357483 L 387.469299 250.456696"/>
-        <path id="path28" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 387.166931 55.395264 L 387.771667 55.395264 L 387.771667 55.092896 L 387.771667 54.979553 L 387.696075 54.903931 L 387.582672 54.828369 L 387.469299 54.790527 L 387.355896 54.828369 L 387.242523 54.903931 L 387.204712 54.979553 L 387.166931 55.092896 L 387.166931 55.395264 Z"/>
-        <path id="path29" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 387.771667 250.418884 L 387.166931 250.418884 L 387.166931 250.721252 L 387.204712 250.834656 L 387.242523 250.910248 L 387.355896 250.98584 L 387.469299 251.023621 L 387.582672 250.98584 L 387.696075 250.910248 L 387.771667 250.834656 L 387.771667 250.721252 L 387.771667 250.418884 Z"/>
-        <path id="path30" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 346.159058 24.100769 L 428.817322 24.100769 L 428.817322 55.092896 L 346.159058 55.092896 L 346.159058 24.100769 Z"/>
-        <path id="path31" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 346.159058 55.092896 L 428.817322 55.092896 L 428.817322 24.100769 L 346.159058 24.100769 L 346.159058 55.092896 Z"/>
-        <text id="text9" xml:space="preserve" x="362" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">MN</text>
-        <text id="text10" xml:space="preserve" x="385" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">-</text>
-        <text id="CSE" xml:space="preserve" x="389" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">CSE</text>
-        <path id="path32" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 480.483459 24.100769 L 542.467712 24.100769 L 542.467712 55.092896 L 480.483459 55.092896 L 480.483459 24.100769 Z"/>
-        <path id="path33" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 480.483459 55.092896 L 542.467712 55.092896 L 542.467712 24.100769 L 480.483459 24.100769 L 480.483459 55.092896 Z"/>
-        <path id="path34" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 511.475586 19.792114 L 511.475586 19.792114 L 511.475586 19.792114 L 511.475586 19.792114 L 511.475586 19.792114 L 511.475586 19.792114 Z"/>
-        <path id="path35" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 511.475586 55.357483 L 511.475586 250.456696"/>
-        <path id="path36" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 511.173218 55.395264 L 511.777954 55.395264 L 511.777954 55.092896 L 511.777954 54.979553 L 511.702393 54.903931 L 511.588989 54.828369 L 511.475586 54.790527 L 511.362183 54.828369 L 511.24884 54.903931 L 511.210999 54.979553 L 511.173218 55.092896 L 511.173218 55.395264 Z"/>
-        <path id="path37" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 511.777954 250.418884 L 511.173218 250.418884 L 511.173218 250.721252 L 511.210999 250.834656 L 511.24884 250.910248 L 511.362183 250.98584 L 511.475586 251.023621 L 511.588989 250.98584 L 511.702393 250.910248 L 511.777954 250.834656 L 511.777954 250.721252 L 511.777954 250.418884 Z"/>
-        <path id="path38" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 470.127563 24.100769 L 552.823608 24.100769 L 552.823608 55.092896 L 470.127563 55.092896 L 470.127563 24.100769 Z"/>
-        <path id="path39" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 470.127563 55.092896 L 552.823608 55.092896 L 552.823608 24.100769 L 470.127563 24.100769 L 470.127563 55.092896 Z"/>
-        <text id="IN" xml:space="preserve" x="491" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">IN</text>
-        <text id="text11" xml:space="preserve" x="504" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">-</text>
-        <text id="text12" xml:space="preserve" x="509" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">CSE</text>
-        <path id="path40" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 576.407898 24.100769 L 638.429932 24.100769 L 638.429932 55.092896 L 576.407898 55.092896 L 576.407898 24.100769 Z"/>
-        <path id="path41" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 576.407898 55.092896 L 638.429932 55.092896 L 638.429932 24.100769 L 576.407898 24.100769 L 576.407898 55.092896 Z"/>
-        <path id="path42" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 607.400024 19.792114 L 607.400024 19.792114 L 607.400024 19.792114 L 607.400024 19.792114 L 607.400024 19.792114 L 607.400024 19.792114 Z"/>
-        <path id="path43" fill="none" stroke="#5692c9" stroke-width="0.604724" stroke-linejoin="round" d="M 607.400024 55.357483 L 607.400024 250.456696"/>
-        <path id="path44" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 607.097656 55.395264 L 607.702393 55.395264 L 607.702393 55.092896 L 607.702393 54.979553 L 607.62677 54.903931 L 607.551208 54.828369 L 607.400024 54.790527 L 607.286621 54.828369 L 607.210999 54.903931 L 607.135437 54.979553 L 607.097656 55.092896 L 607.097656 55.395264 Z"/>
-        <path id="path45" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 607.702393 250.418884 L 607.097656 250.418884 L 607.097656 250.721252 L 607.135437 250.834656 L 607.210999 250.910248 L 607.286621 250.98584 L 607.400024 251.023621 L 607.551208 250.98584 L 607.62677 250.910248 L 607.702393 250.834656 L 607.702393 250.721252 L 607.702393 250.418884 Z"/>
-        <path id="path46" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 566.089783 24.100769 L 648.748047 24.100769 L 648.748047 55.092896 L 566.089783 55.092896 L 566.089783 24.100769 Z"/>
-        <path id="path47" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 566.089783 55.092896 L 648.748047 55.092896 L 648.748047 24.100769 L 566.089783 24.100769 L 566.089783 55.092896 Z"/>
-        <text id="I" xml:space="preserve" x="589" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">I</text>
-        <text id="N" xml:space="preserve" x="593" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">N</text>
-        <text id="text13" xml:space="preserve" x="603" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">-</text>
-        <text id="text14" xml:space="preserve" x="607" y="46" font-family="Calibri" font-size="14.588976" fill="#ffffff">AE</text>
-        <path id="path48" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 606.644104 96.440918 L 522.360657 96.440918"/>
-        <path id="path49" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 606.49292 95.533875 L 606.49292 97.348022 L 607.400024 97.348022 L 607.777954 97.310242 L 608.080322 97.083435 L 608.269287 96.818909 L 608.34491 96.440918 L 608.269287 96.100769 L 608.080322 95.798401 L 607.777954 95.609436 L 607.400024 95.533875 L 606.49292 95.533875 Z"/>
-        <path id="path50" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 522.473999 97.348022 L 522.473999 95.533875 L 521.566956 95.533875 L 521.226746 95.609436 L 520.924438 95.798401 L 520.697632 96.100769 L 520.659851 96.440918 L 520.697632 96.818909 L 520.924438 97.083435 L 521.226746 97.310242 L 521.566956 97.348022 L 522.473999 97.348022 Z"/>
-        <path id="path51" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 523.003174 102.223633 L 511.475586 96.440918 L 523.003174 90.696045 L 523.003174 102.223633 L 523.003174 102.223633 Z"/>
-        <path id="path52" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 553.050415 90.620483 L 565.862976 90.620483 L 565.862976 102.299194 L 553.050415 102.299194 L 553.050415 90.620483 Z"/>
-        <text id="text15" xml:space="preserve" x="552" y="101" font-family="Calibri" font-size="9.713386" fill="#607423">1</text>
-        <text id="text16" xml:space="preserve" x="557" y="101" font-family="Calibri" font-size="9.713386" fill="#607423">-</text>
-        <text id="text17" xml:space="preserve" x="560" y="101" font-family="Calibri" font-size="9.713386" fill="#607423">1</text>
-        <path id="path53" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 457.050415 114.733887 L 572.439392 114.733887 L 572.439392 198.639374 L 457.050415 198.639374 L 457.050415 114.733887 Z"/>
-        <path id="path54" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 457.050415 198.639374 L 572.439392 198.639374 L 572.439392 114.733887 L 457.050415 114.733887 L 457.050415 198.639374 Z"/>
-        <text id="create-a-group-of" xml:space="preserve" x="471" y="126" font-family="Calibri" font-size="12.170079" fill="#406fc5">create a group of</text>
-        <text id="contentInstances-in-" xml:space="preserve" x="465" y="140" font-family="Calibri" font-size="12.170079" fill="#406fc5">contentInstances in</text>
-        <text id="text18" xml:space="preserve" x="465" y="155" font-family="Calibri" font-size="12.170079" fill="#406fc5">MN</text>
-        <text id="text19" xml:space="preserve" x="483" y="155" font-family="Calibri" font-size="12.170079" fill="#406fc5">-</text>
-        <text id="CSE-when-state-" xml:space="preserve" x="487" y="155" font-family="Calibri" font-size="12.170079" fill="#406fc5">CSE when state</text>
-        <text id="of-a-group-of" xml:space="preserve" x="462" y="170" font-family="Calibri" font-size="12.170079" fill="#406fc5">of a group of lights is</text>
-        <text id="updated-on-users-" xml:space="preserve" x="469" y="184" font-family="Calibri" font-size="12.170079" fill="#406fc5">updated on user’s</text>
-        <text id="smartphone-" xml:space="preserve" x="484" y="199" font-family="Calibri" font-size="12.170079" fill="#406fc5">smartphone</text>
-        <path id="path55" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 382.291351 96.440918 L 392.647247 96.440918 L 392.647247 192.932281 L 382.291351 192.932281 L 382.291351 96.440918 Z"/>
-        <path id="path56" fill="none" stroke="#6ca43e" stroke-width="0.604724" stroke-linejoin="round" d="M 392.647247 192.932281 L 392.647247 96.440918 L 382.291351 96.440918 L 382.291351 192.932281 L 392.647247 192.932281 Z"/>
-        <path id="path57" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 386.675598 210.166931 L 166.744888 208.541718"/>
-        <path id="path58" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 386.562195 209.259857 L 386.562195 211.074005 L 387.469299 211.074005 L 387.809448 210.998413 L 388.111816 210.809448 L 388.300781 210.50708 L 388.376373 210.166931 L 388.338593 209.826782 L 388.111816 209.524414 L 387.847229 209.335419 L 387.469299 209.259857 L 386.562195 209.259857 Z"/>
-        <path id="path59" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 166.858261 209.448822 L 166.858261 207.596863 L 165.951187 207.596863 L 165.611023 207.672455 L 165.308655 207.86142 L 165.11969 208.163788 L 165.044098 208.503937 L 165.11969 208.844086 L 165.308655 209.146454 L 165.611023 209.37323 L 165.951187 209.448822 L 166.858261 209.448822 Z"/>
-        <path id="path60" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 167.349609 214.286621 L 155.859848 208.428345 L 167.425201 202.759064 L 167.349609 214.286621 L 167.349609 214.286621 Z"/>
-        <path id="path61" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 261.308655 203.477173 L 282.058258 203.477173 L 282.058258 215.155914 L 261.308655 215.155914 L 261.308655 203.477173 Z"/>
-        <text id="text20" xml:space="preserve" x="260" y="214" font-family="Calibri" font-size="9.713386" fill="#607423">2</text>
-        <text id="text21" xml:space="preserve" x="265" y="214" font-family="Calibri" font-size="9.713386" fill="#607423">-</text>
-        <text id="text22" xml:space="preserve" x="268" y="214" font-family="Calibri" font-size="9.713386" fill="#607423">1</text>
-        <text id="text23" xml:space="preserve" x="273" y="214" font-family="Calibri" font-size="9.713386" fill="#607423">-</text>
-        <text id="text24" xml:space="preserve" x="276" y="214" font-family="Calibri" font-size="9.713386" fill="#607423">1</text>
-        <path id="path62" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 386.675598 227.401581 L 73.503937 225.738586"/>
-        <path id="path63" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 386.562195 226.494476 L 386.562195 228.308655 L 387.469299 228.308655 L 387.809448 228.233063 L 388.111816 228.044098 L 388.300781 227.74173 L 388.376373 227.401581 L 388.338593 227.061432 L 388.111816 226.759064 L 387.847229 226.570068 L 387.469299 226.494476 L 386.562195 226.494476 Z"/>
-        <path id="path64" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 73.617325 226.64566 L 73.617325 224.831482 L 72.710236 224.831482 L 72.370079 224.869293 L 72.067719 225.096069 L 71.878738 225.360626 L 71.803146 225.738586 L 71.878738 226.078735 L 72.067719 226.381104 L 72.370079 226.570068 L 72.710236 226.64566 L 73.617325 226.64566 Z"/>
-        <path id="path65" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 74.108658 231.483459 L 62.618896 225.662994 L 74.18425 219.955902 L 74.108658 231.483459 L 74.108658 231.483459 Z"/>
-        <path id="path66" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 214.707092 220.711823 L 235.418884 220.711823 L 235.418884 232.352753 L 214.707092 232.352753 L 214.707092 220.711823 Z"/>
-        <text id="text25" xml:space="preserve" x="214" y="231" font-family="Calibri" font-size="9.713386" fill="#607423">2</text>
-        <text id="text26" xml:space="preserve" x="219" y="231" font-family="Calibri" font-size="9.713386" fill="#607423">-</text>
-        <text id="text27" xml:space="preserve" x="222" y="231" font-family="Calibri" font-size="9.713386" fill="#607423">1</text>
-        <text id="text28" xml:space="preserve" x="227" y="231" font-family="Calibri" font-size="9.713386" fill="#607423">-</text>
-        <text id="text29" xml:space="preserve" x="230" y="231" font-family="Calibri" font-size="9.713386" fill="#607423">2</text>
-        <path id="path67" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 337.23938 117.11499 L 428.817322 117.11499 L 428.817322 179.137024 L 337.23938 179.137024 L 337.23938 117.11499 Z"/>
-        <path id="path68" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 337.23938 179.137024 L 428.817322 179.137024 L 428.817322 117.11499 L 337.23938 117.11499 L 337.23938 179.137024 Z"/>
-        <text id="processing-" xml:space="preserve" x="356" y="139" font-family="Calibri" font-size="12.170079" fill="#406fc5">processing</text>
-        <text id="contentInstance-" xml:space="preserve" x="342" y="154" font-family="Calibri" font-size="12.170079" fill="#406fc5">contentInstance</text>
-        <text id="creation" xml:space="preserve" x="362" y="168" font-family="Calibri" font-size="12.170079" fill="#406fc5">creation</text>
-        <path id="path69" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 206.656708 138.053528 L 322.045654 138.053528 L 322.045654 200.075592 L 206.656708 200.075592 L 206.656708 138.053528 Z"/>
-        <path id="path70" fill="none" stroke="#ffffff" stroke-width="0.604724" stroke-linejoin="round" d="M 206.656708 200.075592 L 322.045654 200.075592 L 322.045654 138.053528 L 206.656708 138.053528 L 206.656708 200.075592 Z"/>
-        <text id="text30" xml:space="preserve" x="228" y="153" font-family="Calibri" font-size="12.170079" fill="#406fc5">MN</text>
-        <text id="text31" xml:space="preserve" x="246" y="153" font-family="Calibri" font-size="12.170079" fill="#406fc5">-</text>
-        <text id="CSE-sends-" xml:space="preserve" x="250" y="153" font-family="Calibri" font-size="12.170079" fill="#406fc5">CSE sends</text>
-        <text id="notifications-to-each-" xml:space="preserve" x="213" y="167" font-family="Calibri" font-size="12.170079" fill="#406fc5">notifications to each</text>
-        <text id="Light-AND" xml:space="preserve" x="224" y="182" font-family="Calibri" font-size="12.170079" fill="#406fc5">Light AND</text>
-        <text id="text32" xml:space="preserve" x="274" y="182" font-family="Calibri" font-size="12.170079" fill="#406fc5">-</text>
-        <text id="AE-in-" xml:space="preserve" x="277" y="182" font-family="Calibri" font-size="12.170079" fill="#406fc5">AE in</text>
-        <text id="group--" xml:space="preserve" x="249" y="197" font-family="Calibri" font-size="12.170079" fill="#406fc5">group</text>
-        <path id="path71" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 510.681885 96.440918 L 403.494476 96.440918"/>
-        <path id="path72" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 510.568481 95.533875 L 510.568481 97.348022 L 511.475586 97.348022 L 511.815735 97.310242 L 512.118103 97.083435 L 512.307068 96.818909 L 512.38269 96.440918 L 512.307068 96.100769 L 512.118103 95.798401 L 511.815735 95.609436 L 511.475586 95.533875 L 510.568481 95.533875 Z"/>
-        <path id="path73" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 403.64566 97.348022 L 403.64566 95.533875 L 402.738586 95.533875 L 402.360626 95.609436 L 402.096069 95.798401 L 401.869293 96.100769 L 401.793701 96.440918 L 401.869293 96.818909 L 402.096069 97.083435 L 402.360626 97.310242 L 402.738586 97.348022 L 403.64566 97.348022 Z"/>
-        <path id="path74" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 404.174805 102.223633 L 392.647247 96.440918 L 404.174805 90.696045 L 404.174805 102.223633 L 404.174805 102.223633 Z"/>
-        <path id="path75" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 445.63623 90.620483 L 458.486633 90.620483 L 458.486633 102.299194 L 445.63623 102.299194 L 445.63623 90.620483 Z"/>
-        <text id="text33" xml:space="preserve" x="445" y="101" font-family="Calibri" font-size="9.713386" fill="#607423">1</text>
-        <text id="text34" xml:space="preserve" x="450" y="101" font-family="Calibri" font-size="9.713386" fill="#607423">-</text>
-        <text id="text35" xml:space="preserve" x="453" y="101" font-family="Calibri" font-size="9.713386" fill="#607423">2</text>
-    </g>
-</svg>
diff --git a/media/MultipleLightsRemoteControlPhaseCallFlows.puml b/media/MultipleLightsRemoteControlPhaseCallFlows.puml
new file mode 100644
index 0000000000000000000000000000000000000000..607266c9aab81095a853ec4261bb94d03fc3f120
--- /dev/null
+++ b/media/MultipleLightsRemoteControlPhaseCallFlows.puml
@@ -0,0 +1,47 @@
+@startuml
+hide footbox
+skinparam sequenceMessageAlign center
+skinparam noteTextAlignment center
+'!theme plain
+'!theme mars
+'autonumber "(#) "
+
+
+Participant "ADN-AE1" as ADNAE1
+Participant "ADN-AE2" as ADNAE2
+Participant "MN-AE" as MNAE
+Participant "MN-CSE" as MNCSE
+Participant "IN-CSE" as INCSE
+Participant "IN-AE" as INAE
+
+Note over INCSE
+	Create a group
+	of contentInstances
+	in MN-CSE when 
+	state of a group of
+	lights is updated 
+	on user's smartphone
+end note
+
+INAE -> INCSE: 1-1)
+INCSE -> MNCSE: 1-2)
+activate MNCSE
+
+Note over MNCSE
+	Processing of
+	contentInstance
+	creation
+end note
+
+Note over MNAE
+	MN-CSE sends
+	notification to
+	each light ADN-AE
+	in group
+end note
+
+MNCSE -> ADNAE2: 2-1-1)
+MNCSE -> ADNAE1: 2-1-2)
+deactivate MNCSE
+
+@enduml
diff --git a/media/MultipleLightsRemoteControlPhaseCallFlows.svg b/media/MultipleLightsRemoteControlPhaseCallFlows.svg
new file mode 100644
index 0000000000000000000000000000000000000000..49ff17a02783cf4151ca22d559511e4fe89450b3
--- /dev/null
+++ b/media/MultipleLightsRemoteControlPhaseCallFlows.svg
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="436px" preserveAspectRatio="none" style="width:451px;height:436px;background:#FFFFFF;" version="1.1" viewBox="0 0 451 436" width="451px" zoomAndPan="magnify"><defs/><g><rect fill="#FFFFFF" height="204.1953" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="207.3594"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="43" x2="43" y1="36.2969" y2="429.5547"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="129" x2="129" y1="36.2969" y2="429.5547"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="206" x2="206" y1="36.2969" y2="429.5547"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="280" x2="280" y1="36.2969" y2="429.5547"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="355" x2="355" y1="36.2969" y2="429.5547"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="420" x2="420" y1="36.2969" y2="429.5547"/><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="5" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="12" y="24.9951">ADN-AE1</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="91" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="98" y="24.9951">ADN-AE2</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="59" x="177" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="184" y="24.9951">MN-AE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="69" x="246" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="253" y="24.9951">MN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="60" x="325" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="332" y="24.9951">IN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="50" x="395" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="402" y="24.9951">IN-AE</text><rect fill="#FFFFFF" height="204.1953" style="stroke:#181818;stroke-width:1.0;" width="10" x="275.5" y="207.3594"/><path d="M270,51.2969 L270,151.2969 L440,151.2969 L440,61.2969 L430,51.2969 L270,51.2969 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M430,51.2969 L430,61.2969 L440,61.2969 L430,51.2969 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="96" x="307" y="68.3638">Create a group</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="126" x="292" y="83.4966">of contentInstances</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="104" x="301" y="98.6294">in MN-CSE when</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="118" x="296" y="113.7622">state of a group of</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="105" x="300.5" y="128.895">lights is updated</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="140" x="285" y="144.0278">on user's smartphone</text><polygon fill="#181818" points="366,174.2266,356,178.2266,366,182.2266,362,178.2266" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="360" x2="419" y1="178.2266" y2="178.2266"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="26" x="374.5" y="173.1606">1-1)</text><polygon fill="#181818" points="296.5,203.3594,286.5,207.3594,296.5,211.3594,292.5,207.3594" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="290.5" x2="354" y1="207.3594" y2="207.3594"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="26" x="307.25" y="202.2935">1-2)</text><path d="M214,220.3594 L214,275.3594 L347,275.3594 L347,230.3594 L337,220.3594 L214,220.3594 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M337,220.3594 L337,230.3594 L347,230.3594 L337,220.3594 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="85" x="238" y="237.4263">Processing of</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="103" x="229" y="252.5591">contentInstance</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="52" x="254.5" y="267.6919">creation</text><path d="M133,285.7578 L133,355.7578 L280,355.7578 L280,295.7578 L270,285.7578 L133,285.7578 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><path d="M270,285.7578 L270,295.7578 L280,295.7578 L270,285.7578 " fill="#FEFFDD" style="stroke:#181818;stroke-width:0.5;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="94" x="159.5" y="302.8247">MN-CSE sends</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="87" x="163" y="317.9575">notification to</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="117" x="148" y="333.0903">each light ADN-AE</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="52" x="180.5" y="348.2231">in group</text><polygon fill="#181818" points="140,378.4219,130,382.4219,140,386.4219,136,382.4219" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="134" x2="274.5" y1="382.4219" y2="382.4219"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="39" x="182.75" y="377.356">2-1-1)</text><polygon fill="#181818" points="54,407.5547,44,411.5547,54,415.5547,50,411.5547" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="48" x2="279.5" y1="411.5547" y2="411.5547"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="39" x="142.25" y="406.4888">2-1-2)</text><!--SRC=[RP6nSeCm38Pd-obKEgGP663Cq3ikxP21NExQ5t10WAz1fhP9y_WLTcb8sat-FrdM_xlJDK9ZZ3-QYtGVcWPbLGyEFqUa2ajqJhLOd7HBK25vj8ikCXxVyU83xfdEBQi7ts6FC9oKfjzJhwoJApLwGsD_H0l9q-CQ4YdbGLclApqe7f4KB_kqUCqIK0wuvl8_dbzvVilB2GTQClp3jcypvEgMxgvqzoyjPiXpvPxTWpcpZzWijXOLImfQQyP12jD0PJWFyZjoNd6SJWfD49U0hmu9f60opMdcUrnAmO5ste5sC0uryveR3S7eqAuSE4xI3vqXb4Xr-0OffwKWVOxBR21BixKCzIIMivYlfQgyFazlnWGMFg8W3jRmgavJ6tQvyy32v5CRMZo-dC7PY1-BZZlOC_VeHbVX4dWZ1QggW-0Huc-6N69irw7bl7tyvGtaQN1rgsTHPsCrtbdx1W00]--></g></svg>
\ No newline at end of file
diff --git a/media/RegistrationPhaseCallFlows.png b/media/RegistrationPhaseCallFlows.png
index dec5ae28436f8c98044cb7f65bcd8375b351a650..5448361dd72190162ab7aa89460ea9678f573305 100644
Binary files a/media/RegistrationPhaseCallFlows.png and b/media/RegistrationPhaseCallFlows.png differ
diff --git a/media/RegistrationPhaseCallFlows.puml b/media/RegistrationPhaseCallFlows.puml
new file mode 100644
index 0000000000000000000000000000000000000000..59f9aa722fc0a2e1c1e74601b035ffbd48b583ce
--- /dev/null
+++ b/media/RegistrationPhaseCallFlows.puml
@@ -0,0 +1,25 @@
+@startuml
+hide footbox
+skinparam sequenceMessageAlign center
+skinparam noteTextAlignment center
+'!theme plain
+'!theme mars
+'autonumber "(#) "
+
+participant "ADN-AE1" as ADNAE1
+participant "ADN-AE2" as ADNAE2
+participant "MN-AE" as MNAE
+participant "MN-CSE" as MNCSE
+participant "IN-CSE" as INCSE
+participant "IN-AE" as INAE
+
+MNCSE -> INCSE: 1) Gateway (MN-CSE)\nregistration into oneM2M\nservice platform (IN-CSE)
+MNAE -> MNCSE: 2) Gateway application\n(MN-AE) registration\ninto gateway (MN-CSE)
+ADNAE1 -> MNCSE: 3-1) Light application (ADN-AE1)\nregistration into gateway (MN-CSE)
+ADNAE2 -> MNCSE: 3-2) Light application (ADN-AE2)\nregistration into gateway (MN-CSE)
+INAE -> INCSE: 4-1) Smartphone application\n(IN-AE)registration into\noneM2M service platform\n(IN-CSE)
+INCSE -> MNCSE: 4-2) Announcement of\nIN-AE to MN-CSE\nby IN-CSE
+MNAE -> MNCSE: 5) Discovery (GET) of\nIN-AE announced\nto MN-CSE
+MNAE -> MNCSE: 6) Access control policy\ncreation granting ADN-AEs,\nMN-AE and IN-AE can\naccess to remote light\ncontrol service containers
+
+@enduml
\ No newline at end of file
diff --git a/media/RegistrationPhaseCallFlows.svg b/media/RegistrationPhaseCallFlows.svg
index f677eaab74fa918f8e1e0a96210c3dcd9bd87a7e..e6e2137e7a44933c0b31ffbdb4b8c863bfb945aa 100644
--- a/media/RegistrationPhaseCallFlows.svg
+++ b/media/RegistrationPhaseCallFlows.svg
@@ -1,257 +1 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Generated by Pixelmator Pro 3.5.6 -->
-<svg width="749" height="545" viewBox="0 0 749 545" xmlns="http://www.w3.org/2000/svg">
-    <g id="id3">
-        <path id="Path" fill="none" stroke="none" d="M 13.351645 12.135498 L 731.460876 10.91333 L 732.383972 553.312622 L 14.274743 554.534729 Z"/>
-        <path id="path1" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 23.947235 19.714355 L 78.674721 19.621216 L 78.721291 46.984924 L 23.993805 47.078064 L 23.947235 19.714355 Z"/>
-        <path id="path2" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 23.993805 47.078064 L 78.721291 46.984924 L 78.674721 19.621216 L 23.947235 19.714355 L 23.993805 47.078064 Z"/>
-        <path id="path3" fill="none" stroke="#5692c9" stroke-width="0.793701" stroke-linejoin="round" d="M 51.357479 46.993713 L 52.179138 529.789856"/>
-        <path id="path4" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 50.94186 47.070038 L 51.773354 47.068634 L 51.772648 46.652863 L 51.734592 46.50174 L 51.620956 46.350739 L 51.507439 46.275391 L 51.35619 46.237793 L 51.205078 46.275879 L 51.054024 46.351715 L 50.978691 46.503021 L 50.941151 46.654266 L 50.94186 47.070038 Z"/>
-        <path id="path5" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 52.594822 529.751343 L 51.763325 529.752808 L 51.763969 530.130737 L 51.802021 530.28186 L 51.877872 530.432861 L 52.029186 530.50824 L 52.180424 530.545776 L 52.331543 530.50769 L 52.444805 530.431946 L 52.557926 530.280518 L 52.595467 530.129333 L 52.594822 529.751343 Z"/>
-        <path id="path6" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 14.83923 20.107788 L 87.784004 19.983643 L 87.829292 46.591492 L 14.884513 46.715637 L 14.83923 20.107788 Z"/>
-        <path id="path7" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 14.884513 46.715637 L 87.829292 46.591492 L 87.784004 19.983643 L 14.83923 20.107788 L 14.884513 46.715637 Z"/>
-        <text id="ADN" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.058654 0.071529)" xml:space="preserve" x="26" y="40" font-family="Helvetica" font-size="12.888189" fill="#ffffff">ADN</text>
-        <text id="-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.058634 0.094504)" xml:space="preserve" x="51" y="40" font-family="Helvetica" font-size="12.888189" fill="#ffffff">-</text>
-        <text id="AE" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.058619 0.112374)" xml:space="preserve" x="55" y="40" font-family="Helvetica" font-size="12.888189" fill="#ffffff">AE</text>
-        <text id="1" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.058606 0.127691)" xml:space="preserve" x="69" y="40" font-family="Helvetica" font-size="12.888189" fill="#ffffff">1</text>
-        <path id="path8" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 155.247131 19.075195 L 209.974594 18.982056 L 210.021164 46.345764 L 155.293701 46.438904 L 155.247131 19.075195 Z"/>
-        <path id="path9" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 155.293701 46.438904 L 210.021164 46.345764 L 209.974594 18.982056 L 155.247131 19.075195 L 155.293701 46.438904 Z"/>
-        <text id="AND" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.055055 0.300428)" xml:space="preserve" x="164" y="37" font-family="Helvetica" font-size="9.637795" fill="#ffffff">AND</text>
-        <text id="text1" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.055042 0.316596)" xml:space="preserve" x="182" y="37" font-family="Helvetica" font-size="9.637795" fill="#ffffff">-</text>
-        <text id="text2" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.055031 0.32936)" xml:space="preserve" x="185" y="37" font-family="Helvetica" font-size="9.637795" fill="#ffffff">AE</text>
-        <text id="2" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.055021 0.340423)" xml:space="preserve" x="195" y="37" font-family="Helvetica" font-size="9.637795" fill="#ffffff">2</text>
-        <path id="path10" fill="none" stroke="#5692c9" stroke-width="0.793701" stroke-linejoin="round" d="M 182.657379 46.354492 L 183.479752 529.566406"/>
-        <path id="path11" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 182.279541 46.430756 L 183.073242 46.429413 L 183.07254 46.013641 L 183.034485 45.862518 L 182.958694 45.749298 L 182.807327 45.636139 L 182.656097 45.598633 L 182.504974 45.636658 L 182.391769 45.750275 L 182.27858 45.8638 L 182.278839 46.014984 L 182.279541 46.430756 Z"/>
-        <path id="path12" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 183.895416 529.527893 L 183.101715 529.529236 L 183.102371 529.907227 L 183.102615 530.05835 L 183.216263 530.209351 L 183.329788 530.28479 L 183.481033 530.322327 L 183.632141 530.284241 L 183.783188 530.208374 L 183.858521 530.057068 L 183.896057 529.905884 L 183.895416 529.527893 Z"/>
-        <path id="path13" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 146.13913 19.468628 L 219.083893 19.344482 L 219.129166 45.952271 L 146.184402 46.076416 L 146.13913 19.468628 Z"/>
-        <path id="path14" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 146.184402 46.076416 L 219.129166 45.952271 L 219.083893 19.344482 L 146.13913 19.468628 L 146.184402 46.076416 Z"/>
-        <text id="text3" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.055059 0.296174)" xml:space="preserve" x="158" y="38" font-family="Helvetica" font-size="12.888189" fill="#ffffff">ADN</text>
-        <text id="text4" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.055041 0.317447)" xml:space="preserve" x="182" y="38" font-family="Helvetica" font-size="12.888189" fill="#ffffff">-</text>
-        <text id="text5" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.055026 0.335317)" xml:space="preserve" x="186" y="38" font-family="Helvetica" font-size="12.888189" fill="#ffffff">AE</text>
-        <text id="text6" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.055013 0.350634)" xml:space="preserve" x="200" y="38" font-family="Helvetica" font-size="12.888189" fill="#ffffff">2</text>
-        <path id="path15" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 244.744278 17.78894 L 299.471771 17.695801 L 299.518341 45.059601 L 244.790848 45.15274 L 244.744278 17.78894 Z"/>
-        <path id="path16" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 244.790848 45.15274 L 299.518341 45.059601 L 299.471771 17.695801 L 244.744278 17.78894 L 244.790848 45.15274 Z"/>
-        <path id="path17" fill="none" stroke="#5692c9" stroke-width="0.793701" stroke-linejoin="round" d="M 272.156433 46.202179 L 272.987305 534.403076"/>
-        <path id="path18" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 271.740814 46.278503 L 272.572327 46.277069 L 272.571625 45.861298 L 272.533569 45.710205 L 272.419983 45.597046 L 272.306396 45.483826 L 272.155151 45.44632 L 272.004059 45.484344 L 271.853058 45.598022 L 271.777679 45.711487 L 271.740112 45.862732 L 271.740814 46.278503 Z"/>
-        <path id="path19" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 273.403015 534.364563 L 272.571503 534.365967 L 272.572144 534.743896 L 272.61026 534.932861 L 272.686066 535.046082 L 272.837372 535.121399 L 272.988586 535.158997 L 273.139709 535.120911 L 273.252991 535.045105 L 273.36615 534.93158 L 273.403656 534.742493 L 273.403015 534.364563 Z"/>
-        <path id="path20" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 235.634354 17.048584 L 308.579102 16.924438 L 308.628235 45.799957 L 235.683502 45.924103 L 235.634354 17.048584 Z"/>
-        <path id="path21" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 235.683502 45.924103 L 308.628235 45.799957 L 308.579102 16.924438 L 235.634354 17.048584 L 235.683502 45.924103 Z"/>
-        <text id="MN" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.053225 0.451894)" xml:space="preserve" x="253" y="37" font-family="Helvetica" font-size="12.888189" fill="#ffffff">MN</text>
-        <text id="text7" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.053209 0.470615)" xml:space="preserve" x="272" y="37" font-family="Helvetica" font-size="12.888189" fill="#ffffff">-</text>
-        <text id="text8" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.053194 0.488484)" xml:space="preserve" x="276" y="37" font-family="Helvetica" font-size="12.888189" fill="#ffffff">AE</text>
-        <path id="path22" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 387.610229 17.545776 L 442.299896 17.452698 L 442.346466 44.816528 L 387.656799 44.909576 L 387.610229 17.545776 Z"/>
-        <path id="path23" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 387.656799 44.909576 L 442.346466 44.816528 L 442.299896 17.452698 L 387.610229 17.545776 L 387.656799 44.909576 Z"/>
-        <path id="path24" fill="none" stroke="#5692c9" stroke-width="0.793701" stroke-linejoin="round" d="M 414.984589 45.959106 L 415.81546 534.159973"/>
-        <path id="path25" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 414.606781 46.03537 L 415.400482 46.033997 L 415.39975 45.618225 L 415.361694 45.467102 L 415.28595 45.353912 L 415.134552 45.240753 L 414.983307 45.203247 L 414.832184 45.241272 L 414.718994 45.354858 L 414.605804 45.468414 L 414.606049 45.619598 L 414.606781 46.03537 Z"/>
-        <path id="path26" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 416.23114 534.121521 L 415.437439 534.122864 L 415.43808 534.500793 L 415.438416 534.689758 L 415.551971 534.802979 L 415.665497 534.878357 L 415.816742 534.915894 L 415.967865 534.877808 L 416.118927 534.802002 L 416.194275 534.688477 L 416.231781 534.499451 L 416.23114 534.121521 Z"/>
-        <path id="path27" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 378.462494 16.805481 L 451.407257 16.681335 L 451.456421 45.556885 L 378.511627 45.68103 L 378.462494 16.805481 Z"/>
-        <path id="path28" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 378.511627 45.68103 L 451.456421 45.556885 L 451.407257 16.681335 L 378.462494 16.805481 L 378.511627 45.68103 Z"/>
-        <text id="text9" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.053022 0.690157)" xml:space="preserve" x="393" y="37" font-family="Helvetica" font-size="12.888189" fill="#ffffff">MN</text>
-        <text id="text10" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.053005 0.710579)" xml:space="preserve" x="413" y="37" font-family="Helvetica" font-size="12.888189" fill="#ffffff">-</text>
-        <text id="CSE" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.052983 0.736108)" xml:space="preserve" x="417" y="37" font-family="Helvetica" font-size="12.888189" fill="#ffffff">CSE</text>
-        <path id="path29" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 530.439636 18.058655 L 585.129333 17.965576 L 585.175903 45.329285 L 530.486206 45.422363 L 530.439636 18.058655 Z"/>
-        <path id="path30" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 530.486206 45.422363 L 585.175903 45.329285 L 585.129333 17.965576 L 530.439636 18.058655 L 530.486206 45.422363 Z"/>
-        <path id="path31" fill="none" stroke="#5692c9" stroke-width="0.793701" stroke-linejoin="round" d="M 557.850525 45.715942 L 558.688477 538.07428"/>
-        <path id="path32" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 557.434937 45.792267 L 558.228638 45.790924 L 558.227905 45.375153 L 558.227661 45.223969 L 558.114075 45.11084 L 558.000488 44.99762 L 557.849243 44.960083 L 557.69812 44.998138 L 557.547119 45.111786 L 557.471741 45.22525 L 557.434204 45.376526 L 557.434937 45.792267 Z"/>
-        <path id="path33" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 559.066345 538.035889 L 558.272644 538.037231 L 558.273376 538.453003 L 558.311401 538.604126 L 558.387146 538.717346 L 558.538574 538.830505 L 558.689758 538.8302 L 558.840942 538.829956 L 558.954102 538.71637 L 559.067322 538.602783 L 559.067078 538.451599 L 559.066345 538.035889 Z"/>
-        <path id="path34" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 521.330994 18.074158 L 594.275757 17.950012 L 594.322327 45.313721 L 521.377563 45.437866 L 521.330994 18.074158 Z"/>
-        <path id="path35" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 521.377563 45.437866 L 594.322327 45.313721 L 594.275757 17.950012 L 521.330994 18.074158 L 521.377563 45.437866 Z"/>
-        <text id="IN" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.054517 0.933527)" xml:space="preserve" x="540" y="38" font-family="Helvetica" font-size="12.888189" fill="#ffffff">IN</text>
-        <text id="text11" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.054505 0.947142)" xml:space="preserve" x="552" y="38" font-family="Helvetica" font-size="12.888189" fill="#ffffff">-</text>
-        <text id="text12" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.054483 0.97267)" xml:space="preserve" x="556" y="38" font-family="Helvetica" font-size="12.888189" fill="#ffffff">CSE</text>
-        <path id="path36" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 667.220581 17.825867 L 721.910217 17.732788 L 721.956787 45.096527 L 667.267151 45.189575 L 667.220581 17.825867 Z"/>
-        <path id="path37" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 667.267151 45.189575 L 721.956787 45.096527 L 721.910217 17.732788 L 667.220581 17.825867 L 667.267151 45.189575 Z"/>
-        <path id="path38" fill="none" stroke="#5692c9" stroke-width="0.793701" stroke-linejoin="round" d="M 694.593689 45.483246 L 695.43158 537.841614"/>
-        <path id="path39" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 694.21582 45.559509 L 695.009521 45.558136 L 695.008789 45.142365 L 694.970764 44.991241 L 694.894958 44.878052 L 694.743652 44.764893 L 694.592346 44.727386 L 694.441284 44.765411 L 694.328064 44.878998 L 694.214844 44.992554 L 694.215088 45.143738 L 694.21582 45.559509 Z"/>
-        <path id="path40" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 695.847229 537.803101 L 695.053528 537.804443 L 695.05426 538.220215 L 695.054504 538.371399 L 695.168091 538.484558 L 695.281677 538.597778 L 695.432861 538.597534 L 695.584045 538.597229 L 695.734985 538.483582 L 695.810425 538.370117 L 695.847961 538.218811 L 695.847229 537.803101 Z"/>
-        <path id="path41" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 658.074097 17.841431 L 731.01886 17.717285 L 731.06543 45.081024 L 658.120667 45.20517 L 658.074097 17.841431 Z"/>
-        <path id="path42" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 658.120667 45.20517 L 731.06543 45.081024 L 731.01886 17.717285 L 658.074097 17.841431 L 658.120667 45.20517 Z"/>
-        <text id="text13" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.052614 1.170086)" xml:space="preserve" x="679" y="37" font-family="Helvetica" font-size="12.888189" fill="#ffffff">IN</text>
-        <text id="text14" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.052602 1.183701)" xml:space="preserve" x="691" y="37" font-family="Helvetica" font-size="12.888189" fill="#ffffff">-</text>
-        <text id="text15" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.052587 1.201571)" xml:space="preserve" x="695" y="37" font-family="Helvetica" font-size="12.888189" fill="#ffffff">AE</text>
-        <path id="path43" fill="none" stroke="#7c9530" stroke-width="1.625197" stroke-linejoin="round" d="M 415.831543 121.661743 L 548.379395 121.436157"/>
-        <path id="path44" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 415.946259 122.455261 L 415.943573 120.867859 L 415.112091 120.869263 L 414.809784 120.907562 L 414.545563 121.096985 L 414.394806 121.361816 L 414.319733 121.664307 L 414.395844 121.966553 L 414.547485 122.230835 L 414.812286 122.381561 L 415.114777 122.456665 L 415.946259 122.455261 Z"/>
-        <path id="path45" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 548.264648 120.642639 L 548.267334 122.230042 L 549.061035 122.228699 L 549.401062 122.152496 L 549.627625 122.000916 L 549.816101 121.736084 L 549.891174 121.433594 L 549.815063 121.131348 L 549.625671 120.867096 L 549.39856 120.678497 L 549.05835 120.641296 L 548.264648 120.642639 Z"/>
-        <path id="path46" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 547.803772 116.334778 L 557.97937 121.41983 L 547.821045 126.501678 L 547.803772 116.334778 L 547.803772 116.334778 Z"/>
-        <path id="path47" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 484.383301 116.404877 L 488.729797 116.397461 L 488.747284 126.677795 L 484.400818 126.685181 L 484.383301 116.404877 Z"/>
-        <text id="text16" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.206071 0.831543)" xml:space="preserve" x="484" y="126" font-family="Helvetica" font-size="8.844094" fill="#607423">1</text>
-        <path id="path48" fill="none" stroke="#595959" stroke-width="1.625197" stroke-linejoin="round" d="M 273.043243 167.523712 L 405.628876 167.298065"/>
-        <path id="path49" fill="#595959" fill-rule="evenodd" stroke="none" d="M 273.157959 168.31723 L 273.155273 166.729828 L 272.361572 166.731171 L 272.059296 166.76947 L 271.795013 166.958893 L 271.606506 167.223785 L 271.569214 167.526215 L 271.607544 167.828522 L 271.796967 168.092712 L 272.061859 168.281311 L 272.364258 168.318573 L 273.157959 168.31723 Z"/>
-        <path id="path50" fill="#595959" fill-rule="evenodd" stroke="none" d="M 405.51413 166.504547 L 405.516846 168.091949 L 406.310547 168.090607 L 406.612854 168.052307 L 406.877075 167.862823 L 407.065582 167.597992 L 407.102905 167.295563 L 407.064575 166.993256 L 406.875153 166.729004 L 406.61026 166.540466 L 406.307831 166.503204 L 405.51413 166.504547 Z"/>
-        <path id="path51" fill="#595959" fill-rule="evenodd" stroke="none" d="M 405.015472 162.196747 L 415.191071 167.281799 L 405.032776 172.363678 L 405.015472 162.196747 L 405.015472 162.196747 Z"/>
-        <path id="path52" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 341.595032 162.266846 L 345.941467 162.25943 L 345.958954 172.539764 L 341.612518 172.54715 L 341.595032 162.266846 Z"/>
-        <text id="text17" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.284564 0.588241)" xml:space="preserve" x="341" y="172" font-family="Helvetica" font-size="8.844094" fill="#607423">2</text>
-        <path id="path53" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 66.29174 161.034637 L 168.112076 160.861328 L 168.205215 215.588806 L 66.38488 215.762085 L 66.29174 161.034637 Z"/>
-        <path id="path54" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 66.38488 215.762085 L 168.205215 215.588806 L 168.112076 160.861328 L 66.29174 161.034637 L 66.38488 215.762085 Z"/>
-        <text id="Light-application-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.287456 0.190004)" xml:space="preserve" x="70" y="174" font-family="Helvetica" font-size="10.469291" fill="#406fc5">Light application</text>
-        <text id="text18" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.311336 0.126204)" xml:space="preserve" x="70" y="188" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="text19" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.309616 0.147476)" xml:space="preserve" x="73" y="187" font-family="Helvetica" font-size="10.469291" fill="#406fc5">ADN</text>
-        <text id="text20" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.309601 0.165346)" xml:space="preserve" x="93" y="187" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text21" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.30959 0.178961)" xml:space="preserve" x="96" y="187" font-family="Helvetica" font-size="10.469291" fill="#406fc5">AE</text>
-        <text id="text22" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.309579 0.190874)" xml:space="preserve" x="107" y="187" font-family="Helvetica" font-size="10.469291" fill="#406fc5">1</text>
-        <text id="text23" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.30957 0.201936)" xml:space="preserve" x="113" y="187" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <text id="registration-into-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.331708 0.186638)" xml:space="preserve" x="70" y="200" font-family="Helvetica" font-size="10.469291" fill="#406fc5">registration into</text>
-        <text id="gateway-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.352154 0.158574)" xml:space="preserve" x="70" y="212" font-family="Helvetica" font-size="10.469291" fill="#406fc5">gateway</text>
-        <text id="text24" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.352125 0.192612)" xml:space="preserve" x="109" y="212" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="text25" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.352111 0.20878)" xml:space="preserve" x="112" y="212" font-family="Helvetica" font-size="10.469291" fill="#406fc5">MN</text>
-        <text id="text26" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.352097 0.224948)" xml:space="preserve" x="128" y="212" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text27" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.352079 0.247072)" xml:space="preserve" x="132" y="212" font-family="Helvetica" font-size="10.469291" fill="#406fc5">CSE</text>
-        <text id="text28" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.35207 0.257283)" xml:space="preserve" x="147" y="212" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <path id="path55" fill="none" stroke="#595959" stroke-width="1.625197" stroke-linejoin="round" d="M 52.332268 220.019104 L 405.716858 219.001923"/>
-        <path id="path56" fill="#595959" fill-rule="evenodd" stroke="none" d="M 52.446999 220.812622 L 52.444233 219.187378 L 51.650532 219.188721 L 51.348301 219.264862 L 51.084061 219.454254 L 50.895466 219.681396 L 50.85825 220.021606 L 50.896557 220.323914 L 51.085987 220.588104 L 51.350811 220.738861 L 51.653297 220.813965 L 52.446999 220.812622 Z"/>
-        <path id="path57" fill="#595959" fill-rule="evenodd" stroke="none" d="M 405.602142 218.208405 L 405.604828 219.795807 L 406.398529 219.794464 L 406.700836 219.756165 L 406.965088 219.566742 L 407.153595 219.301819 L 407.190887 218.99939 L 407.152557 218.697113 L 406.963135 218.432831 L 406.698273 218.244324 L 406.395844 218.207062 L 405.602142 218.208405 Z"/>
-        <path id="path58" fill="#595959" fill-rule="evenodd" stroke="none" d="M 405.103546 213.938385 L 415.279083 218.985626 L 405.15863 224.105225 L 405.103546 213.938385 L 405.103546 213.938385 Z"/>
-        <path id="path59" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 227.806351 214.353516 L 239.107117 214.33429 L 239.124603 224.614594 L 227.823837 224.63382 L 227.806351 214.353516 Z"/>
-        <text id="3" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.373227 0.394302)" xml:space="preserve" x="227" y="224" font-family="Helvetica" font-size="8.844094" fill="#607423">3</text>
-        <text id="text29" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.373222 0.399408)" xml:space="preserve" x="231" y="224" font-family="Helvetica" font-size="8.844094" fill="#607423">-</text>
-        <text id="text30" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.373217 0.406216)" xml:space="preserve" x="234" y="224" font-family="Helvetica" font-size="8.844094" fill="#607423">1</text>
-        <path id="path60" fill="none" stroke="#595959" stroke-width="1.625197" stroke-linejoin="round" d="M 183.80452 298.447449 L 405.85141 298.06955"/>
-        <path id="path61" fill="#595959" fill-rule="evenodd" stroke="none" d="M 183.881454 299.241028 L 183.878754 297.653625 L 183.085052 297.654968 L 182.782761 297.693237 L 182.518509 297.88269 L 182.367767 298.147522 L 182.292709 298.450012 L 182.368805 298.752197 L 182.520432 299.016541 L 182.785324 299.205017 L 183.087769 299.242371 L 183.881454 299.241028 Z"/>
-        <path id="path62" fill="#595959" fill-rule="evenodd" stroke="none" d="M 405.736694 297.276031 L 405.73941 298.863434 L 406.533112 298.862091 L 406.835419 298.82373 L 407.09964 298.634338 L 407.288147 298.369385 L 407.325439 298.067017 L 407.287109 297.76474 L 407.097717 297.500488 L 406.832825 297.311951 L 406.530396 297.274689 L 405.736694 297.276031 Z"/>
-        <path id="path63" fill="#595959" fill-rule="evenodd" stroke="none" d="M 405.238037 292.96817 L 415.413635 298.053284 L 405.255402 303.172913 L 405.238037 292.96817 L 405.238037 292.96817 Z"/>
-        <path id="path64" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 293.590881 293.120392 L 304.929474 293.101074 L 304.94696 303.381409 L 293.608368 303.400696 L 293.590881 293.120392 Z"/>
-        <text id="text31" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.50758 0.506741)" xml:space="preserve" x="293" y="303" font-family="Helvetica" font-size="8.844094" fill="#607423">3</text>
-        <text id="text32" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.507575 0.511846)" xml:space="preserve" x="297" y="303" font-family="Helvetica" font-size="8.844094" fill="#607423">-</text>
-        <text id="text33" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.507569 0.518654)" xml:space="preserve" x="300" y="303" font-family="Helvetica" font-size="8.844094" fill="#607423">2</text>
-        <path id="path65" fill="none" stroke="#595959" stroke-width="1.625197" stroke-linejoin="round" d="M 694.406311 335.184753 L 567.905701 335.400085"/>
-        <path id="path66" fill="#595959" fill-rule="evenodd" stroke="none" d="M 694.291626 334.391266 L 694.294373 335.978668 L 695.088074 335.977295 L 695.39032 335.939026 L 695.654541 335.749573 L 695.843079 335.48468 L 695.918152 335.18219 L 695.842041 334.879944 L 695.652649 334.615723 L 695.387695 334.427216 L 695.085327 334.389923 L 694.291626 334.391266 Z"/>
-        <path id="path67" fill="#595959" fill-rule="evenodd" stroke="none" d="M 568.020508 336.193573 L 568.017761 334.606171 L 567.22406 334.607544 L 566.921753 334.645844 L 566.657593 334.835266 L 566.468994 335.100159 L 566.431763 335.402588 L 566.470032 335.704895 L 566.659485 335.969116 L 566.924377 336.157654 L 567.226807 336.194916 L 568.020508 336.193573 Z"/>
-        <path id="path68" fill="#595959" fill-rule="evenodd" stroke="none" d="M 568.519165 340.501404 L 558.343567 335.416321 L 568.50177 330.296692 L 568.519165 340.501404 L 568.519165 340.501404 Z"/>
-        <path id="path69" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 621.037109 330.169495 L 632.375671 330.150208 L 632.393127 340.430481 L 621.054626 340.449768 L 621.037109 330.169495 Z"/>
-        <text id="4" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.570075 1.063308)" xml:space="preserve" x="620" y="340" font-family="Helvetica" font-size="8.844094" fill="#607423">4</text>
-        <text id="text34" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.570071 1.068414)" xml:space="preserve" x="624" y="340" font-family="Helvetica" font-size="8.844094" fill="#607423">-</text>
-        <text id="text35" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.570065 1.075221)" xml:space="preserve" x="627" y="340" font-family="Helvetica" font-size="8.844094" fill="#607423">1</text>
-        <path id="path70" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 431.521332 302.107727 L 533.077148 301.934875 L 533.170288 356.662354 L 431.614471 356.835205 L 431.521332 302.107727 Z"/>
-        <path id="path71" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 431.614471 356.835205 L 533.170288 356.662354 L 533.077148 301.934875 L 431.521332 302.107727 L 431.614471 356.835205 Z"/>
-        <text id="Announcement-of-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.538801 0.816509)" xml:space="preserve" x="435" y="322" font-family="Helvetica" font-size="10.469291" fill="#406fc5">Announcement of</text>
-        <text id="text36" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.560979 0.753559)" xml:space="preserve" x="435" y="335" font-family="Helvetica" font-size="10.469291" fill="#406fc5">IN</text>
-        <text id="text37" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.560971 0.762919)" xml:space="preserve" x="444" y="335" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="AE-to-MN" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.560935 0.804615)" xml:space="preserve" x="448" y="335" font-family="Helvetica" font-size="10.469291" fill="#406fc5">AE to MN</text>
-        <text id="text38" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.560906 0.839503)" xml:space="preserve" x="489" y="335" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="CSE-by-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.560874 0.876094)" xml:space="preserve" x="493" y="335" font-family="Helvetica" font-size="10.469291" fill="#406fc5">CSE by</text>
-        <text id="text39" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.583103 0.753577)" xml:space="preserve" x="435" y="348" font-family="Helvetica" font-size="10.469291" fill="#406fc5">IN</text>
-        <text id="text40" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.583095 0.762938)" xml:space="preserve" x="444" y="348" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text41" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.583076 0.785062)" xml:space="preserve" x="448" y="348" font-family="Helvetica" font-size="10.469291" fill="#406fc5">CSE</text>
-        <path id="path72" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 284.43338 108.95932 L 404.735535 108.754578 L 404.828674 163.482086 L 284.52652 163.686829 L 284.43338 108.95932 Z"/>
-        <path id="path73" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 284.52652 163.686829 L 404.828674 163.482086 L 404.735535 108.754578 L 284.43338 108.95932 L 284.52652 163.686829 Z"/>
-        <text id="Gateway-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.198667 0.532006)" xml:space="preserve" x="288" y="122" font-family="Helvetica" font-size="10.469291" fill="#406fc5">Gateway</text>
-        <text id="application" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.220787 0.537131)" xml:space="preserve" x="288" y="135" font-family="Helvetica" font-size="10.469291" fill="#406fc5">application</text>
-        <text id="text42" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.220752 0.578827)" xml:space="preserve" x="336" y="135" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="text43" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.220736 0.596696)" xml:space="preserve" x="340" y="135" font-family="Helvetica" font-size="10.469291" fill="#406fc5">MN</text>
-        <text id="text44" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.220723 0.612864)" xml:space="preserve" x="356" y="135" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text45" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.220711 0.626479)" xml:space="preserve" x="359" y="135" font-family="Helvetica" font-size="10.469291" fill="#406fc5">AE</text>
-        <text id="text46" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.2207 0.639243)" xml:space="preserve" x="370" y="135" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <text id="registration-into-gateway-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.242864 0.593311)" xml:space="preserve" x="288" y="148" font-family="Helvetica" font-size="10.469291" fill="#406fc5">registration into gateway</text>
-        <text id="text47" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.26507 0.497174)" xml:space="preserve" x="288" y="161" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="text48" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.265056 0.513342)" xml:space="preserve" x="291" y="161" font-family="Helvetica" font-size="10.469291" fill="#406fc5">MN</text>
-        <text id="text49" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.265042 0.52951)" xml:space="preserve" x="307" y="161" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text50" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.265024 0.551634)" xml:space="preserve" x="311" y="161" font-family="Helvetica" font-size="10.469291" fill="#406fc5">CSE</text>
-        <text id="text51" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.265015 0.561845)" xml:space="preserve" x="326" y="161" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <path id="path74" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 188.12178 236.87146 L 289.942078 236.698181 L 290.035217 291.425659 L 188.21492 291.598938 L 188.12178 236.87146 Z"/>
-        <path id="path75" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 188.21492 291.598938 L 290.035217 291.425659 L 289.942078 236.698181 L 188.12178 236.87146 L 188.21492 291.598938 Z"/>
-        <text id="text52" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.416623 0.396041)" xml:space="preserve" x="191" y="250" font-family="Helvetica" font-size="10.469291" fill="#406fc5">Light application</text>
-        <text id="text53" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.438802 0.33224)" xml:space="preserve" x="191" y="263" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="text54" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.438782 0.355215)" xml:space="preserve" x="195" y="263" font-family="Helvetica" font-size="10.469291" fill="#406fc5">ADN</text>
-        <text id="text55" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.438769 0.371383)" xml:space="preserve" x="214" y="263" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text56" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.438756 0.3867)" xml:space="preserve" x="218" y="263" font-family="Helvetica" font-size="10.469291" fill="#406fc5">AE</text>
-        <text id="text57" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.438745 0.398613)" xml:space="preserve" x="229" y="263" font-family="Helvetica" font-size="10.469291" fill="#406fc5">2</text>
-        <text id="text58" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.438736 0.409675)" xml:space="preserve" x="235" y="263" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <text id="text59" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.460875 0.392675)" xml:space="preserve" x="191" y="276" font-family="Helvetica" font-size="10.469291" fill="#406fc5">registration into</text>
-        <text id="text60" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.481321 0.364612)" xml:space="preserve" x="191" y="288" font-family="Helvetica" font-size="10.469291" fill="#406fc5">gateway</text>
-        <text id="text61" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.481291 0.400351)" xml:space="preserve" x="231" y="288" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="text62" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.481277 0.416519)" xml:space="preserve" x="234" y="288" font-family="Helvetica" font-size="10.469291" fill="#406fc5">MN</text>
-        <text id="text63" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.481263 0.432687)" xml:space="preserve" x="250" y="288" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text64" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.481246 0.453109)" xml:space="preserve" x="253" y="288" font-family="Helvetica" font-size="10.469291" fill="#406fc5">CSE</text>
-        <text id="text65" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.481236 0.465022)" xml:space="preserve" x="269" y="288" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <path id="path76" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 583.269104 257.402191 L 685.089478 257.228912 L 685.208435 327.150024 L 583.388123 327.323303 L 583.269104 257.402191 Z"/>
-        <path id="path77" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 583.388123 327.323303 L 685.208435 327.150024 L 685.089478 257.228912 L 583.269104 257.402191 L 583.388123 327.323303 Z"/>
-        <text id="smartphone-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.453506 1.052998)" xml:space="preserve" x="587" y="272" font-family="Helvetica" font-size="10.469291" fill="#406fc5">smartphone</text>
-        <text id="application-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.475634 1.047911)" xml:space="preserve" x="587" y="285" font-family="Helvetica" font-size="10.469291" fill="#406fc5">application</text>
-        <text id="text66" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.475597 1.091309)" xml:space="preserve" x="637" y="285" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="I" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.475592 1.097265)" xml:space="preserve" x="641" y="285" font-family="Helvetica" font-size="10.469291" fill="#406fc5">I</text>
-        <text id="N" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.475586 1.104924)" xml:space="preserve" x="643" y="285" font-family="Helvetica" font-size="10.469291" fill="#406fc5">N</text>
-        <text id="text67" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.475579 1.113433)" xml:space="preserve" x="650" y="285" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text68" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.475565 1.12875)" xml:space="preserve" x="654" y="285" font-family="Helvetica" font-size="10.469291" fill="#406fc5">AE</text>
-        <text id="text69" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.473853 1.141513)" xml:space="preserve" x="665" y="284" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <text id="text70" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.497743 1.06665)" xml:space="preserve" x="587" y="298" font-family="Helvetica" font-size="10.469291" fill="#406fc5">registration into</text>
-        <text id="oneM" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.519902 1.025824)" xml:space="preserve" x="587" y="311" font-family="Helvetica" font-size="10.469291" fill="#406fc5">oneM</text>
-        <text id="text71" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.519881 1.050501)" xml:space="preserve" x="612" y="311" font-family="Helvetica" font-size="10.469291" fill="#406fc5">2</text>
-        <text id="M-service-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.519842 1.096452)" xml:space="preserve" x="618" y="311" font-family="Helvetica" font-size="10.469291" fill="#406fc5">M service</text>
-        <text id="platform-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.542016 1.037756)" xml:space="preserve" x="587" y="324" font-family="Helvetica" font-size="10.469291" fill="#406fc5">platform</text>
-        <text id="text72" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.541985 1.074347)" xml:space="preserve" x="627" y="324" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="text73" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.541976 1.085409)" xml:space="preserve" x="630" y="324" font-family="Helvetica" font-size="10.469291" fill="#406fc5">IN</text>
-        <text id="text74" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.541966 1.096471)" xml:space="preserve" x="640" y="324" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text75" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.541949 1.116894)" xml:space="preserve" x="643" y="324" font-family="Helvetica" font-size="10.469291" fill="#406fc5">CSE</text>
-        <text id="text76" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.541939 1.128807)" xml:space="preserve" x="659" y="324" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <path id="path78" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 562.922729 361.109375 L 562.877625 334.614929 L 553.768982 334.630432 L 553.814026 361.124878 L 562.922729 361.109375 L 562.922729 361.109375 Z"/>
-        <path id="path79" fill="none" stroke="#6ca43e" stroke-width="0.793701" stroke-linejoin="round" d="M 562.922729 361.109375 L 562.877625 334.614929 L 553.768982 334.630432 L 553.814026 361.124878 L 562.922729 361.109375 Z"/>
-        <path id="path80" fill="none" stroke="#007f7f" stroke-width="1.625197" stroke-linejoin="round" d="M 557.673218 363.461609 L 425.125366 363.687195"/>
-        <path id="path81" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 557.558472 362.668091 L 557.561157 364.255493 L 558.392639 364.254089 L 558.694946 364.21582 L 558.959167 364.026367 L 559.109924 363.761536 L 559.184998 363.459045 L 559.108887 363.156799 L 558.957275 362.892517 L 558.692383 362.703979 L 558.389954 362.666687 L 557.558472 362.668091 Z"/>
-        <path id="path82" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 425.240082 364.480713 L 425.237366 362.893311 L 424.443665 362.894653 L 424.103607 362.933044 L 423.877136 363.122375 L 423.688599 363.387268 L 423.613556 363.689758 L 423.689636 363.992004 L 423.879059 364.256226 L 424.106171 364.444855 L 424.446381 364.482056 L 425.240082 364.480713 Z"/>
-        <path id="path83" fill="#007f7f" fill-rule="evenodd" stroke="none" d="M 425.700958 368.788574 L 415.52536 363.703552 L 425.683655 358.621643 L 425.700958 368.788574 L 425.700958 368.788574 Z"/>
-        <path id="path84" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 481.280273 358.451477 L 492.618835 358.432159 L 492.636322 368.712463 L 481.297791 368.731781 L 481.280273 358.451477 Z"/>
-        <text id="text77" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.617931 0.825086)" xml:space="preserve" x="480" y="368" font-family="Helvetica" font-size="8.844094" fill="#607423">4</text>
-        <text id="text78" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.617926 0.830192)" xml:space="preserve" x="484" y="368" font-family="Helvetica" font-size="8.844094" fill="#607423">-</text>
-        <text id="text79" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.617921 0.836999)" xml:space="preserve" x="487" y="368" font-family="Helvetica" font-size="8.844094" fill="#607423">2</text>
-        <path id="path85" fill="none" stroke="#595959" stroke-width="1.625197" stroke-linejoin="round" d="M 273.466736 416.367432 L 406.052368 416.141785"/>
-        <path id="path86" fill="#595959" fill-rule="evenodd" stroke="none" d="M 273.581482 417.16095 L 273.578766 415.573547 L 272.785065 415.57489 L 272.482788 415.61319 L 272.218536 415.802612 L 272.029999 416.067505 L 271.992706 416.369934 L 272.031036 416.672241 L 272.220459 416.936462 L 272.485352 417.125 L 272.787781 417.162292 L 273.581482 417.16095 Z"/>
-        <path id="path87" fill="#595959" fill-rule="evenodd" stroke="none" d="M 405.937653 415.348267 L 405.940338 416.935669 L 406.734039 416.934326 L 407.036346 416.895996 L 407.300598 416.706604 L 407.489105 416.441711 L 407.526398 416.139282 L 407.488068 415.836975 L 407.298645 415.572754 L 407.033783 415.384216 L 406.731354 415.346924 L 405.937653 415.348267 Z"/>
-        <path id="path88" fill="#595959" fill-rule="evenodd" stroke="none" d="M 405.438965 411.040466 L 415.614594 416.125519 L 405.45636 421.245178 L 405.438965 411.040466 L 405.438965 411.040466 Z"/>
-        <path id="path89" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 342.018524 411.110596 L 346.36496 411.10321 L 346.382446 421.383484 L 342.036041 421.390869 L 342.018524 411.110596 Z"/>
-        <text id="5" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.708332 0.588602)" xml:space="preserve" x="341" y="421" font-family="Helvetica" font-size="8.844094" fill="#607423">5</text>
-        <path id="path90" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 289.389984 356.434753 L 391.210297 356.261444 L 391.303497 411.026733 L 289.483185 411.200012 L 289.389984 356.434753 Z"/>
-        <path id="path91" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 289.483185 411.200012 L 391.303497 411.026733 L 391.210297 356.261444 L 289.389984 356.434753 L 289.483185 411.200012 Z"/>
-        <text id="Discovery-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.630934 0.544287)" xml:space="preserve" x="293" y="376" font-family="Helvetica" font-size="10.469291" fill="#406fc5">Discovery</text>
-        <text id="text80" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.630903 0.580877)" xml:space="preserve" x="337" y="376" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="GET" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.630885 0.6013)" xml:space="preserve" x="340" y="376" font-family="Helvetica" font-size="10.469291" fill="#406fc5">GET</text>
-        <text id="text81" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.63087 0.61917)" xml:space="preserve" x="358" y="376" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <text id="of-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.630859 0.631934)" xml:space="preserve" x="363" y="376" font-family="Helvetica" font-size="10.469291" fill="#406fc5">of</text>
-        <text id="text82" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.653086 0.51197)" xml:space="preserve" x="293" y="389" font-family="Helvetica" font-size="10.469291" fill="#406fc5">IN</text>
-        <text id="text83" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.653078 0.521331)" xml:space="preserve" x="302" y="389" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text84" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.653066 0.534946)" xml:space="preserve" x="305" y="389" font-family="Helvetica" font-size="10.469291" fill="#406fc5">AE</text>
-        <text id="announced-to" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.65301 0.601319)" xml:space="preserve" x="319" y="389" font-family="Helvetica" font-size="10.469291" fill="#406fc5">announced to</text>
-        <text id="text85" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.675206 0.517095)" xml:space="preserve" x="293" y="402" font-family="Helvetica" font-size="10.469291" fill="#406fc5">MN</text>
-        <text id="text86" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.675192 0.533263)" xml:space="preserve" x="309" y="402" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text87" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.675175 0.553685)" xml:space="preserve" x="312" y="402" font-family="Helvetica" font-size="10.469291" fill="#406fc5">CSE</text>
-        <path id="path92" fill="none" stroke="#595959" stroke-width="1.625197" stroke-linejoin="round" d="M 273.650909 524.575134 L 406.236511 524.349487"/>
-        <path id="path93" fill="#595959" fill-rule="evenodd" stroke="none" d="M 273.765625 525.368652 L 273.762909 523.78125 L 272.969208 523.782593 L 272.666962 523.820923 L 272.402679 524.010315 L 272.214172 524.275269 L 272.17688 524.577637 L 272.21521 524.879944 L 272.404602 525.144226 L 272.669525 525.332703 L 272.971924 525.369995 L 273.765625 525.368652 Z"/>
-        <path id="path94" fill="#595959" fill-rule="evenodd" stroke="none" d="M 406.121796 523.555969 L 406.124512 525.143372 L 406.918213 525.142029 L 407.22052 525.10376 L 407.484741 524.914307 L 407.673248 524.649414 L 407.710541 524.346985 L 407.672211 524.044678 L 407.482819 523.780457 L 407.217926 523.591919 L 406.915497 523.554626 L 406.121796 523.555969 Z"/>
-        <path id="path95" fill="#595959" fill-rule="evenodd" stroke="none" d="M 405.623138 519.248169 L 415.798737 524.333191 L 405.640503 529.452881 L 405.623138 519.248169 L 405.623138 519.248169 Z"/>
-        <path id="path96" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 342.202698 519.318298 L 346.549133 519.310913 L 346.56662 529.591187 L 342.220184 529.598633 L 342.202698 519.318298 Z"/>
-        <text id="6" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.892134 0.588758)" xml:space="preserve" x="341" y="529" font-family="Helvetica" font-size="8.844094" fill="#607423">6</text>
-        <path id="path97" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 280.767792 420.210114 L 401.107758 420.00531 L 401.26889 514.682373 L 280.928925 514.887146 L 280.767792 420.210114 Z"/>
-        <path id="path98" fill="none" stroke="#ffffff" stroke-width="0.793701" stroke-linejoin="round" d="M 280.928925 514.887146 L 401.26889 514.682373 L 401.107758 420.00531 L 280.767792 420.210114 L 280.928925 514.887146 Z"/>
-        <text id="Access-control-polic" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.739835 0.566504)" xml:space="preserve" x="284" y="440" font-family="Helvetica" font-size="10.469291" fill="#406fc5">Access control polic</text>
-        <text id="y" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.739774 0.638834)" xml:space="preserve" x="370" y="440" font-family="Helvetica" font-size="10.469291" fill="#406fc5">y</text>
-        <text id="creation" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.761999 0.519721)" xml:space="preserve" x="284" y="453" font-family="Helvetica" font-size="10.469291" fill="#406fc5">creation</text>
-        <text id="granting-ADN" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.761926 0.605666)" xml:space="preserve" x="322" y="453" font-family="Helvetica" font-size="10.469291" fill="#406fc5">granting ADN</text>
-        <text id="text88" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.761883 0.655872)" xml:space="preserve" x="381" y="453" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="AEs" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.784137 0.504423)" xml:space="preserve" x="284" y="466" font-family="Helvetica" font-size="10.469291" fill="#406fc5">AEs</text>
-        <text id="text89" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.784125 0.518038)" xml:space="preserve" x="299" y="466" font-family="Helvetica" font-size="10.469291" fill="#406fc5">,</text>
-        <text id="text90" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.784109 0.53761)" xml:space="preserve" x="305" y="466" font-family="Helvetica" font-size="10.469291" fill="#406fc5">MN</text>
-        <text id="text91" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.784095 0.553778)" xml:space="preserve" x="321" y="466" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="AE-and-IN" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.784059 0.596325)" xml:space="preserve" x="324" y="466" font-family="Helvetica" font-size="10.469291" fill="#406fc5">AE and IN</text>
-        <text id="text92" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.78403 0.630362)" xml:space="preserve" x="366" y="466" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="AE--" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.784012 0.650785)" xml:space="preserve" x="370" y="466" font-family="Helvetica" font-size="10.469291" fill="#406fc5">AE</text>
-        <text id="can-access-to-remote" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.806201 0.57507)" xml:space="preserve" x="284" y="479" font-family="Helvetica" font-size="10.469291" fill="#406fc5">can access to remote</text>
-        <text id="light-control-service-" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.828333 0.566579)" xml:space="preserve" x="284" y="492" font-family="Helvetica" font-size="10.469291" fill="#406fc5">light control service</text>
-        <text id="containers" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.850489 0.529157)" xml:space="preserve" x="284" y="505" font-family="Helvetica" font-size="10.469291" fill="#406fc5">containers</text>
-        <path id="path99" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 421.703552 63.10675 L 542.043579 62.901947 L 542.136719 117.629456 L 421.796692 117.834259 L 421.703552 63.10675 Z"/>
-        <text id="text93" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.120182 0.765097)" xml:space="preserve" x="425" y="76" font-family="Helvetica" font-size="10.469291" fill="#406fc5">Gateway</text>
-        <text id="text94" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.120153 0.799985)" xml:space="preserve" x="466" y="76" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="text95" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.120137 0.817855)" xml:space="preserve" x="470" y="76" font-family="Helvetica" font-size="10.469291" fill="#406fc5">MN</text>
-        <text id="text96" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.120124 0.834023)" xml:space="preserve" x="486" y="76" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text97" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.120106 0.854445)" xml:space="preserve" x="489" y="76" font-family="Helvetica" font-size="10.469291" fill="#406fc5">CSE</text>
-        <text id="text98" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.120094 0.868911)" xml:space="preserve" x="505" y="76" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-        <text id="text99" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.142285 0.790644)" xml:space="preserve" x="425" y="89" font-family="Helvetica" font-size="10.469291" fill="#406fc5">registration into</text>
-        <text id="text100" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.164444 0.749817)" xml:space="preserve" x="425" y="102" font-family="Helvetica" font-size="10.469291" fill="#406fc5">oneM</text>
-        <text id="text101" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.164422 0.776197)" xml:space="preserve" x="451" y="102" font-family="Helvetica" font-size="10.469291" fill="#406fc5">2</text>
-        <text id="text102" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.164383 0.822147)" xml:space="preserve" x="457" y="102" font-family="Helvetica" font-size="10.469291" fill="#406fc5">M service</text>
-        <text id="text103" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.186558 0.761749)" xml:space="preserve" x="425" y="115" font-family="Helvetica" font-size="10.469291" fill="#406fc5">platform</text>
-        <text id="text104" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.186526 0.800042)" xml:space="preserve" x="466" y="115" font-family="Helvetica" font-size="10.469291" fill="#406fc5">(</text>
-        <text id="text105" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.186516 0.811104)" xml:space="preserve" x="469" y="115" font-family="Helvetica" font-size="10.469291" fill="#406fc5">IN</text>
-        <text id="text106" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.186507 0.822166)" xml:space="preserve" x="479" y="115" font-family="Helvetica" font-size="10.469291" fill="#406fc5">-</text>
-        <text id="text107" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.18649 0.842589)" xml:space="preserve" x="482" y="115" font-family="Helvetica" font-size="10.469291" fill="#406fc5">CSE</text>
-        <text id="text108" transform="matrix(0.999999 -0.001702 0.001702 0.999999 -0.18648 0.854502)" xml:space="preserve" x="498" y="115" font-family="Helvetica" font-size="10.469291" fill="#406fc5">)</text>
-    </g>
-</svg>
+<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="553px" preserveAspectRatio="none" style="width:828px;height:553px;background:#FFFFFF;" version="1.1" viewBox="0 0 828 553" width="828px" zoomAndPan="magnify"><defs/><g><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="43" x2="43" y1="36.2969" y2="546.6172"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="129" x2="129" y1="36.2969" y2="546.6172"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="206" x2="206" y1="36.2969" y2="546.6172"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="405" x2="405" y1="36.2969" y2="546.6172"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="590.5" x2="590.5" y1="36.2969" y2="546.6172"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="797.5" x2="797.5" y1="36.2969" y2="546.6172"/><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="5" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="12" y="24.9951">ADN-AE1</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="91" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="98" y="24.9951">ADN-AE2</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="59" x="177" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="184" y="24.9951">MN-AE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="69" x="371" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="378" y="24.9951">MN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="60" x="560.5" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="567.5" y="24.9951">IN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="50" x="772.5" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="779.5" y="24.9951">IN-AE</text><polygon fill="#181818" points="578.5,93.6953,588.5,97.6953,578.5,101.6953,582.5,97.6953" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="405.5" x2="584.5" y1="97.6953" y2="97.6953"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="138" x="429" y="62.3638">1) Gateway (MN-CSE)</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="159" x="418.5" y="77.4966">registration into oneM2M</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="161" x="417.5" y="92.6294">service platform (IN-CSE)</text><polygon fill="#181818" points="393.5,153.0938,403.5,157.0938,393.5,161.0938,397.5,157.0938" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="206.5" x2="399.5" y1="157.0938" y2="157.0938"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="145" x="233.5" y="121.7622">2) Gateway application</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="130" x="241" y="136.895">(MN-AE) registration</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="147" x="232.5" y="152.0278">into gateway (MN-CSE)</text><polygon fill="#181818" points="393.5,197.3594,403.5,201.3594,393.5,205.3594,397.5,201.3594" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="43" x2="399.5" y1="201.3594" y2="201.3594"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="207" x="120.75" y="181.1606">3-1) Light application (ADN-AE1)</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="224" x="112.25" y="196.2935">registration into gateway (MN-CSE)</text><polygon fill="#181818" points="393.5,241.625,403.5,245.625,393.5,249.625,397.5,245.625" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="129" x2="399.5" y1="245.625" y2="245.625"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="207" x="163.75" y="225.4263">3-2) Light application (ADN-AE2)</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="224" x="155.25" y="240.5591">registration into gateway (MN-CSE)</text><polygon fill="#181818" points="601.5,316.1563,591.5,320.1563,601.5,324.1563,597.5,320.1563" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="595.5" x2="796.5" y1="320.1563" y2="320.1563"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="183" x="602.5" y="269.6919">4-1) Smartphone application</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="146" x="621" y="284.8247">(IN-AE)registration into</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="161" x="613.5" y="299.9575">oneM2M service platform</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="54" x="667" y="315.0903">(IN-CSE)</text><polygon fill="#181818" points="416.5,375.5547,406.5,379.5547,416.5,383.5547,412.5,379.5547" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="410.5" x2="589.5" y1="379.5547" y2="379.5547"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="144" x="426" y="344.2231">4-2) Announcement of</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="108" x="444" y="359.356">IN-AE to MN-CSE</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="63" x="466.5" y="374.4888">by IN-CSE</text><polygon fill="#181818" points="393.5,434.9531,403.5,438.9531,393.5,442.9531,397.5,438.9531" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="206.5" x2="399.5" y1="438.9531" y2="438.9531"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="134" x="239" y="403.6216">5) Discovery (GET) of</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="110" x="251" y="418.7544">IN-AE announced</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="69" x="271.5" y="433.8872">to MN-CSE</text><polygon fill="#181818" points="393.5,524.6172,403.5,528.6172,393.5,532.6172,397.5,528.6172" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="206.5" x2="399.5" y1="528.6172" y2="528.6172"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="150" x="231" y="463.02">6) Access control policy</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="175" x="218.5" y="478.1528">creation granting ADN-AEs,</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="137" x="237.5" y="493.2856">MN-AE and IN-AE can</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="143" x="234.5" y="508.4185">access to remote light</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="164" x="224" y="523.5513">control service containers</text><!--SRC=[ZPC_Rzim4CLtVOgBEqG2uY7Adw53024s0WDLbsJaGjDdcOXqL4awZRzzJwGKox8HTAFmgD-xUtVSwGt2rXY_Df-9UzVKIYiRSFXdZwImHETaXKMjAmA5vD6ERf7n-8QVFiWDgyELwok_mmQXhQMchwz6MfTSoxqtj6_MQ66M_iXWbYHCyrhfLZ9XLYn-pulbxGoa0pxpyPAU7_NyL2yxEQWbYsVQy-iWykbKNHtLrKMr64Jc9W40ywTuzoVSPl0YFVwL1qYZJoR8OgMTjz9hGw396p24PLuAScW_j0eH-Qsn3QJHFakwiZjk6RdvaIlRjjOgm0IbeT4CnXQ2WaSrgIE9EOwWTtCkzvUkTduCXRGF_sBbbwdv2JN_Xfh_7tNLjz_7UjzL-ighuziTPpV980mbEwCAYZ73DENuI-_JpwySZBZuWiZiUU_3Cfkje600N6SiJz3w094mdTD31WljbFb0ozsyBD-o4K3st8sWBzOKyCZsIl630sN8MrD3QxZLWo1bCVPMMLv5JHN4HDsDeBBdRo0wAScvoCXXAuiDFrAekw4mg0SFiNJV_4AHt-K_]--></g></svg>
\ No newline at end of file
diff --git a/media/SingleLightRemoteControlPhaseCallFlows.png b/media/SingleLightRemoteControlPhaseCallFlows.png
index 50047352f10ef26629722446c0fbcf2d974ebfa1..3e95d330b08577fc0fb50c4654aa104095a1433e 100644
Binary files a/media/SingleLightRemoteControlPhaseCallFlows.png and b/media/SingleLightRemoteControlPhaseCallFlows.png differ
diff --git a/media/SingleLightRemoteControlPhaseCallFlows.puml b/media/SingleLightRemoteControlPhaseCallFlows.puml
new file mode 100644
index 0000000000000000000000000000000000000000..280c20a91b9de4248f2e3b3af08164d7a89c580b
--- /dev/null
+++ b/media/SingleLightRemoteControlPhaseCallFlows.puml
@@ -0,0 +1,30 @@
+@startuml
+hide footbox
+skinparam sequenceMessageAlign center
+skinparam noteTextAlignment center
+'!theme plain
+'!theme mars
+'autonumber "(#) "
+
+
+Participant "ADN-AE1" as ADNAE1
+Participant "ADN-AE2" as ADNAE2
+Participant "MN-AE" as MNAE
+Participant "MN-CSE" as MNCSE
+Participant "IN-CSE" as INCSE
+Participant "IN-AE" as INAE
+
+INAE -> INCSE: 1-1) Creation of a light#1\ncontentInstance with\nnew light state
+INCSE -> MNCSE: 1-2) Processing\ncontentInstance\ncreation
+activate MNCSE
+
+MNCSE -> ADNAE1: 2-1) Notification with the latest light state\nto be executed to controlled light#1
+deactivate MNCSE
+
+INAE -> INCSE: 1-3) Creation of a light_2\ncontentInstance with\nnew light state
+INCSE -> MNCSE: 1-4) Processing\ncontentInstance\ncreation
+activate MNCSE
+
+MNCSE -> ADNAE2: 2-2) Notification with the latest light state\nto be executed to controlled light#2
+deactivate MNCSE
+@enduml
diff --git a/media/SingleLightRemoteControlPhaseCallFlows.svg b/media/SingleLightRemoteControlPhaseCallFlows.svg
index 39d94b5a964fb303472171bf54c72a1d2c140efe..ac65be0f4061592895164d57518e1bdc1f35bc79 100644
--- a/media/SingleLightRemoteControlPhaseCallFlows.svg
+++ b/media/SingleLightRemoteControlPhaseCallFlows.svg
@@ -1,172 +1 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Generated by Pixelmator Pro 3.5.6 -->
-<svg width="720" height="409" viewBox="0 0 720 409" xmlns="http://www.w3.org/2000/svg">
-    <clipPath id="clipPath1">
-        <path d="M -2.204723 -6.536987 L 715.867725 -6.536987 L 715.867725 393.979523 L -2.204723 393.979523 L -2.204723 -6.536987 Z"/>
-        <path clip-rule="evenodd" d="M -2.204723 -6.536987 L 715.905506 -6.536987 L 715.905506 394.017334 L -2.204723 394.017334 Z"/>
-    </clipPath>
-    <g id="Group" clip-path="url(#clipPath1)">
-        <path id="Path" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 26.444092 23.77478 L 87.332283 23.77478 L 87.332283 54.313416 L 26.444092 54.313416 L 26.444092 23.77478 Z"/>
-        <path id="path1" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 26.444092 54.313416 L 87.332283 54.313416 L 87.332283 23.77478 L 26.444092 23.77478 L 26.444092 54.313416 Z"/>
-        <path id="path2" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 56.869293 54.729126 L 56.869293 396.738586"/>
-        <path id="path3" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 56.453545 54.766907 L 57.322838 54.766907 L 57.322838 54.313416 L 57.285042 54.162231 L 57.20945 54.011047 L 57.058266 53.897644 L 56.869293 53.859863 L 56.718109 53.897644 L 56.566933 54.011047 L 56.453545 54.162231 L 56.453545 54.313416 L 56.453545 54.766907 Z"/>
-        <path id="path4" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 57.322838 396.700775 L 56.453545 396.700775 L 56.453545 397.116547 L 56.453545 397.305511 L 56.566933 397.456696 L 56.718109 397.532288 L 56.869293 397.570068 L 57.058266 397.532288 L 57.20945 397.456696 L 57.285042 397.305511 L 57.322838 397.116547 L 57.322838 396.700775 Z"/>
-        <path id="path5" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 16.277164 23.77478 L 97.499207 23.77478 L 97.499207 54.313416 L 16.277164 54.313416 L 16.277164 23.77478 Z"/>
-        <path id="path6" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 16.277164 54.313416 L 97.499207 54.313416 L 97.499207 23.77478 L 16.277164 23.77478 L 16.277164 54.313416 Z"/>
-        <text id="ADN" xml:space="preserve" x="29" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">ADN</text>
-        <text id="-" xml:space="preserve" x="56" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">-</text>
-        <text id="AE" xml:space="preserve" x="60" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">AE</text>
-        <text id="1" xml:space="preserve" x="76" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">1</text>
-        <path id="path7" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 152.718109 23.77478 L 213.644089 23.77478 L 213.644089 54.313416 L 152.718109 54.313416 L 152.718109 23.77478 Z"/>
-        <path id="path8" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 152.718109 54.313416 L 213.644089 54.313416 L 213.644089 23.77478 L 152.718109 23.77478 L 152.718109 54.313416 Z"/>
-        <text id="AND" xml:space="preserve" x="162" y="44" font-family="Calibri" font-size="10.771654" fill="#ffffff">AND</text>
-        <text id="text1" xml:space="preserve" x="182" y="44" font-family="Calibri" font-size="10.771654" fill="#ffffff">-</text>
-        <text id="text2" xml:space="preserve" x="185" y="44" font-family="Calibri" font-size="10.771654" fill="#ffffff">AE</text>
-        <text id="2" xml:space="preserve" x="197" y="44" font-family="Calibri" font-size="10.771654" fill="#ffffff">2</text>
-        <path id="path9" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 183.181107 54.729126 L 183.181107 396.738586"/>
-        <path id="path10" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 182.727554 54.766907 L 183.634644 54.766907 L 183.634644 54.313416 L 183.596848 54.162231 L 183.483459 54.011047 L 183.370071 53.897644 L 183.181107 53.859863 L 182.992126 53.897644 L 182.878738 54.011047 L 182.76535 54.162231 L 182.727554 54.313416 L 182.727554 54.766907 Z"/>
-        <path id="path11" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 183.634644 396.700775 L 182.727554 396.700775 L 182.727554 397.116547 L 182.76535 397.305511 L 182.878738 397.456696 L 182.992126 397.532288 L 183.181107 397.570068 L 183.370071 397.532288 L 183.483459 397.456696 L 183.596848 397.305511 L 183.634644 397.116547 L 183.634644 396.700775 Z"/>
-        <path id="path12" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 142.588974 23.77478 L 223.773224 23.77478 L 223.773224 54.313416 L 142.588974 54.313416 L 142.588974 23.77478 Z"/>
-        <path id="path13" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 142.588974 54.313416 L 223.773224 54.313416 L 223.773224 23.77478 L 142.588974 23.77478 L 142.588974 54.313416 Z"/>
-        <text id="text3" xml:space="preserve" x="155" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">ADN</text>
-        <text id="text4" xml:space="preserve" x="182" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">-</text>
-        <text id="text5" xml:space="preserve" x="186" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">AE</text>
-        <text id="text6" xml:space="preserve" x="202" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">2</text>
-        <path id="path14" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 266.103943 23.77478 L 327.029907 23.77478 L 327.029907 54.313416 L 266.103943 54.313416 L 266.103943 23.77478 Z"/>
-        <path id="path15" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 266.103943 54.313416 L 327.029907 54.313416 L 327.029907 23.77478 L 266.103943 23.77478 L 266.103943 54.313416 Z"/>
-        <path id="path16" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 296.566925 54.729126 L 296.566925 396.738586"/>
-        <path id="path17" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 296.113373 54.766907 L 297.020477 54.766907 L 297.020477 54.313416 L 296.982666 54.162231 L 296.907074 54.011047 L 296.75592 53.897644 L 296.566925 53.859863 L 296.415741 53.897644 L 296.264557 54.011047 L 296.151184 54.162231 L 296.113373 54.313416 L 296.113373 54.766907 Z"/>
-        <path id="path18" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 297.020477 396.700775 L 296.113373 396.700775 L 296.113373 397.116547 L 296.151184 397.305511 L 296.264557 397.456696 L 296.415741 397.532288 L 296.566925 397.570068 L 296.75592 397.532288 L 296.907074 397.456696 L 296.982666 397.305511 L 297.020477 397.116547 L 297.020477 396.700775 Z"/>
-        <path id="path19" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 255.974792 23.77478 L 337.196838 23.77478 L 337.196838 54.313416 L 255.974792 54.313416 L 255.974792 23.77478 Z"/>
-        <path id="path20" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 255.974792 54.313416 L 337.196838 54.313416 L 337.196838 23.77478 L 255.974792 23.77478 L 255.974792 54.313416 Z"/>
-        <text id="MN" xml:space="preserve" x="275" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">MN</text>
-        <text id="text7" xml:space="preserve" x="297" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">-</text>
-        <text id="text8" xml:space="preserve" x="301" y="45" font-family="Calibri" font-size="14.362205" fill="#ffffff">AE</text>
-        <path id="path21" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 367.62204 25.475586 L 428.548035 25.475586 L 428.548035 56.01416 L 367.62204 56.01416 L 367.62204 25.475586 Z"/>
-        <path id="path22" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 367.62204 56.01416 L 428.548035 56.01416 L 428.548035 25.475586 L 367.62204 25.475586 L 367.62204 56.01416 Z"/>
-        <path id="path23" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 398.085052 56.392151 L 398.085052 396.738586"/>
-        <path id="path24" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 397.6315 56.467712 L 398.538574 56.467712 L 398.538574 56.01416 L 398.500793 55.862976 L 398.425201 55.711792 L 398.274017 55.59845 L 398.085052 55.560608 L 397.933868 55.59845 L 397.782684 55.711792 L 397.669281 55.862976 L 397.6315 56.01416 L 397.6315 56.467712 Z"/>
-        <path id="path25" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 398.538574 396.700775 L 397.6315 396.700775 L 397.6315 397.116547 L 397.669281 397.305511 L 397.782684 397.456696 L 397.933868 397.532288 L 398.085052 397.570068 L 398.274017 397.532288 L 398.425201 397.456696 L 398.500793 397.305511 L 398.538574 397.116547 L 398.538574 396.700775 Z"/>
-        <path id="path26" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 357.49292 25.475586 L 438.714966 25.475586 L 438.714966 56.01416 L 357.49292 56.01416 L 357.49292 25.475586 Z"/>
-        <path id="path27" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 357.49292 56.01416 L 438.714966 56.01416 L 438.714966 25.475586 L 357.49292 25.475586 L 357.49292 56.01416 Z"/>
-        <text id="text9" xml:space="preserve" x="373" y="47" font-family="Calibri" font-size="14.362205" fill="#ffffff">MN</text>
-        <text id="text10" xml:space="preserve" x="395" y="47" font-family="Calibri" font-size="14.362205" fill="#ffffff">-</text>
-        <text id="CSE" xml:space="preserve" x="400" y="47" font-family="Calibri" font-size="14.362205" fill="#ffffff">CSE</text>
-        <path id="path28" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 489.473999 25.475586 L 550.362183 25.475586 L 550.362183 56.01416 L 489.473999 56.01416 L 489.473999 25.475586 Z"/>
-        <path id="path29" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 489.473999 56.01416 L 550.362183 56.01416 L 550.362183 25.475586 L 489.473999 25.475586 L 489.473999 56.01416 Z"/>
-        <path id="path30" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 519.899231 56.392151 L 519.899231 396.738586"/>
-        <path id="path31" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 519.483459 56.467712 L 520.352783 56.467712 L 520.352783 56.01416 L 520.314941 55.862976 L 520.23938 55.711792 L 520.088196 55.59845 L 519.899231 55.560608 L 519.748047 55.59845 L 519.596863 55.711792 L 519.483459 55.862976 L 519.483459 56.01416 L 519.483459 56.467712 Z"/>
-        <path id="path32" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 520.352783 396.700775 L 519.483459 396.700775 L 519.483459 397.116547 L 519.483459 397.305511 L 519.596863 397.456696 L 519.748047 397.532288 L 519.899231 397.570068 L 520.088196 397.532288 L 520.23938 397.456696 L 520.314941 397.305511 L 520.352783 397.116547 L 520.352783 396.700775 Z"/>
-        <path id="path33" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 479.307068 25.475586 L 560.529114 25.475586 L 560.529114 56.01416 L 479.307068 56.01416 L 479.307068 25.475586 Z"/>
-        <path id="path34" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 479.307068 56.01416 L 560.529114 56.01416 L 560.529114 25.475586 L 479.307068 25.475586 L 479.307068 56.01416 Z"/>
-        <text id="IN" xml:space="preserve" x="499" y="47" font-family="Calibri" font-size="14.362205" fill="#ffffff">IN</text>
-        <text id="text11" xml:space="preserve" x="513" y="47" font-family="Calibri" font-size="14.362205" fill="#ffffff">-</text>
-        <text id="text12" xml:space="preserve" x="517" y="47" font-family="Calibri" font-size="14.362205" fill="#ffffff">CSE</text>
-        <path id="path35" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 633.285034 25.475586 L 694.173218 25.475586 L 694.173218 56.01416 L 633.285034 56.01416 L 633.285034 25.475586 Z"/>
-        <path id="path36" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 633.285034 56.01416 L 694.173218 56.01416 L 694.173218 25.475586 L 633.285034 25.475586 L 633.285034 56.01416 Z"/>
-        <path id="path37" fill="none" stroke="#5692c9" stroke-width="0.907087" stroke-linejoin="round" d="M 663.748047 56.392151 L 663.748047 396.738586"/>
-        <path id="path38" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 663.294495 56.467712 L 664.163757 56.467712 L 664.163757 56.01416 L 664.163757 55.862976 L 664.050415 55.711792 L 663.899231 55.59845 L 663.748047 55.560608 L 663.559082 55.59845 L 663.407898 55.711792 L 663.332275 55.862976 L 663.294495 56.01416 L 663.294495 56.467712 Z"/>
-        <path id="path39" fill="#5692c9" fill-rule="evenodd" stroke="none" d="M 664.163757 396.700775 L 663.294495 396.700775 L 663.294495 397.116547 L 663.332275 397.305511 L 663.407898 397.456696 L 663.559082 397.532288 L 663.748047 397.570068 L 663.899231 397.532288 L 664.050415 397.456696 L 664.163757 397.305511 L 664.163757 397.116547 L 664.163757 396.700775 Z"/>
-        <path id="path40" fill="#5b9bd5" fill-rule="evenodd" stroke="none" d="M 623.118103 25.475586 L 704.340149 25.475586 L 704.340149 56.01416 L 623.118103 56.01416 L 623.118103 25.475586 Z"/>
-        <path id="path41" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 623.118103 56.01416 L 704.340149 56.01416 L 704.340149 25.475586 L 623.118103 25.475586 L 623.118103 56.01416 Z"/>
-        <text id="text13" xml:space="preserve" x="646" y="47" font-family="Calibri" font-size="14.362205" fill="#ffffff">IN</text>
-        <text id="text14" xml:space="preserve" x="659" y="47" font-family="Calibri" font-size="14.362205" fill="#ffffff">-</text>
-        <text id="text15" xml:space="preserve" x="664" y="47" font-family="Calibri" font-size="14.362205" fill="#ffffff">AE</text>
-        <path id="path42" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 662.954346 96.757507 L 530.595276 96.757507"/>
-        <path id="path43" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 662.840942 95.850403 L 662.840942 97.664551 L 663.748047 97.664551 L 664.088196 97.588989 L 664.352783 97.400024 L 664.579529 97.097656 L 664.61731 96.757507 L 664.579529 96.417297 L 664.352783 96.11499 L 664.088196 95.925964 L 663.748047 95.850403 L 662.840942 95.850403 Z"/>
-        <path id="path44" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 530.708679 97.664551 L 530.708679 95.850403 L 529.801575 95.850403 L 529.461426 95.925964 L 529.196838 96.11499 L 528.970093 96.417297 L 528.932312 96.757507 L 528.970093 97.097656 L 529.196838 97.400024 L 529.461426 97.588989 L 529.801575 97.664551 L 530.708679 97.664551 Z"/>
-        <path id="path45" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 531.237793 102.426758 L 519.899231 96.757507 L 531.237793 91.088196 L 531.237793 102.426758 L 531.237793 102.426758 Z"/>
-        <path id="path46" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 585.511841 91.012573 L 598.135437 91.012573 L 598.135437 102.50238 L 585.511841 102.50238 L 585.511841 91.012573 Z"/>
-        <text id="text16" xml:space="preserve" x="585" y="102" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text17" xml:space="preserve" x="589" y="102" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text18" xml:space="preserve" x="592" y="102" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <path id="path47" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 538.192139 101.255127 L 651.577942 101.255127 L 651.577942 162.370056 L 538.192139 162.370056 L 538.192139 101.255127 Z"/>
-        <path id="path48" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 538.192139 162.370056 L 651.577942 162.370056 L 651.577942 101.255127 L 538.192139 101.255127 L 538.192139 162.370056 Z"/>
-        <text id="creation-of-a-" xml:space="preserve" x="563" y="116" font-family="Calibri" font-size="11.67874" fill="#406fc5">creation of a</text>
-        <text id="LIGHT" xml:space="preserve" x="573" y="130" font-family="Calibri" font-size="11.67874" fill="#406fc5">LIGHT</text>
-        <text id="text19" xml:space="preserve" x="602" y="130" font-family="Calibri" font-size="11.67874" fill="#406fc5">#</text>
-        <text id="1-" xml:space="preserve" x="608" y="130" font-family="Calibri" font-size="11.67874" fill="#406fc5">1</text>
-        <text id="contentInstance-with-" xml:space="preserve" x="542" y="145" font-family="Calibri" font-size="11.67874" fill="#406fc5">contentInstance with</text>
-        <text id="new-light-state" xml:space="preserve" x="558" y="159" font-family="Calibri" font-size="11.67874" fill="#406fc5">new light state</text>
-        <path id="path49" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 403.149597 191.77478 L 403.149597 96.757507 L 393.020477 96.757507 L 393.020477 191.77478 L 403.149597 191.77478 L 403.149597 191.77478 Z"/>
-        <path id="path50" fill="none" stroke="#6ca43e" stroke-width="0.907087" stroke-linejoin="round" d="M 403.149597 191.77478 L 403.149597 96.757507 L 393.020477 96.757507 L 393.020477 191.77478 L 403.149597 191.77478 Z"/>
-        <path id="path51" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 397.329132 351.270874 L 187.527557 349.570068"/>
-        <path id="path52" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 397.215759 350.36377 L 397.177948 352.177948 L 398.085052 352.177948 L 398.425201 352.102356 L 398.72757 351.913391 L 398.916534 351.611023 L 398.992126 351.270874 L 398.916534 350.930695 L 398.72757 350.666138 L 398.425201 350.439362 L 398.085052 350.36377 L 397.215759 350.36377 Z"/>
-        <path id="path53" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 187.640945 350.439362 L 187.640945 348.662994 L 186.771652 348.662994 L 186.431503 348.700775 L 186.129135 348.889771 L 185.940155 349.192139 L 185.864563 349.532288 L 185.902359 349.872437 L 186.129135 350.174805 L 186.393707 350.36377 L 186.733856 350.439362 L 187.640945 350.439362 Z"/>
-        <path id="path54" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 188.132278 355.23938 L 176.831497 349.456696 L 188.20787 343.900787 L 188.132278 355.23938 L 188.132278 355.23938 Z"/>
-        <path id="path55" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 281.184265 344.618896 L 293.770081 344.618896 L 293.770081 356.108673 L 281.184265 356.108673 L 281.184265 344.618896 Z"/>
-        <text id="text20" xml:space="preserve" x="280" y="355" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <text id="text21" xml:space="preserve" x="285" y="355" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text22" xml:space="preserve" x="288" y="355" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <path id="path56" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 397.329132 208.744873 L 67.565353 207.11969"/>
-        <path id="path57" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 397.215759 207.837769 L 397.177948 209.651978 L 398.085052 209.651978 L 398.425201 209.576355 L 398.72757 209.38739 L 398.916534 209.122864 L 398.992126 208.744873 L 398.916534 208.404724 L 398.72757 208.140137 L 398.425201 207.913391 L 398.085052 207.87561 L 397.215759 207.837769 Z"/>
-        <path id="path58" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 67.678741 208.026794 L 67.678741 206.212585 L 66.809448 206.212585 L 66.431496 206.288208 L 66.166931 206.477173 L 65.940155 206.779541 L 65.902359 207.11969 L 65.940155 207.459839 L 66.129135 207.724426 L 66.431496 207.951172 L 66.771652 208.026794 L 67.678741 208.026794 Z"/>
-        <path id="path59" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 68.170082 212.789001 L 56.869293 207.044067 L 68.245667 201.450378 L 68.170082 212.789001 L 68.170082 212.789001 Z"/>
-        <path id="path60" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 221.203156 202.168518 L 233.788971 202.168518 L 233.788971 213.658264 L 221.203156 213.658264 L 221.203156 202.168518 Z"/>
-        <text id="text23" xml:space="preserve" x="220" y="213" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <text id="text24" xml:space="preserve" x="225" y="213" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text25" xml:space="preserve" x="228" y="213" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <path id="path61" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 408.251984 106.092896 L 509.770081 106.092896 L 509.770081 167.170105 L 408.251984 167.170105 L 408.251984 106.092896 Z"/>
-        <path id="path62" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 408.251984 167.170105 L 509.770081 167.170105 L 509.770081 106.092896 L 408.251984 106.092896 L 408.251984 167.170105 Z"/>
-        <text id="processing-" xml:space="preserve" x="432" y="128" font-family="Calibri" font-size="11.67874" fill="#406fc5">processing</text>
-        <text id="contentInstance-" xml:space="preserve" x="419" y="142" font-family="Calibri" font-size="11.67874" fill="#406fc5">contentInstance</text>
-        <text id="creation" xml:space="preserve" x="438" y="157" font-family="Calibri" font-size="11.67874" fill="#406fc5">creation</text>
-        <path id="path63" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 65.070869 126.011047 L 166.588974 126.011047 L 166.588974 201.526001 L 65.070869 201.526001 L 65.070869 126.011047 Z"/>
-        <path id="path64" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 65.070869 201.526001 L 166.588974 201.526001 L 166.588974 126.011047 L 65.070869 126.011047 L 65.070869 201.526001 Z"/>
-        <text id="notifications-with-" xml:space="preserve" x="72" y="141" font-family="Calibri" font-size="11.67874" fill="#406fc5">notifications with</text>
-        <text id="the-latest-light-" xml:space="preserve" x="80" y="155" font-family="Calibri" font-size="11.67874" fill="#406fc5">the latest light</text>
-        <text id="state-to-be-" xml:space="preserve" x="89" y="169" font-family="Calibri" font-size="11.67874" fill="#406fc5">state to be</text>
-        <text id="executed-to-the-" xml:space="preserve" x="77" y="184" font-family="Calibri" font-size="11.67874" fill="#406fc5">executed to the</text>
-        <text id="controlled-light" xml:space="preserve" x="72" y="198" font-family="Calibri" font-size="11.67874" fill="#406fc5">controlled light</text>
-        <text id="text26" xml:space="preserve" x="146" y="198" font-family="Calibri" font-size="11.67874" fill="#406fc5">#</text>
-        <text id="text27" xml:space="preserve" x="152" y="198" font-family="Calibri" font-size="11.67874" fill="#406fc5">1</text>
-        <path id="path65" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 661.25354 249.48819 L 530.595276 249.48819"/>
-        <path id="path66" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 661.140137 248.581116 L 661.140137 250.395264 L 662.047241 250.395264 L 662.38739 250.319672 L 662.689758 250.130707 L 662.878723 249.828339 L 662.954346 249.48819 L 662.878723 249.148041 L 662.689758 248.845673 L 662.38739 248.656708 L 662.047241 248.581116 L 661.140137 248.581116 Z"/>
-        <path id="path67" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 530.708679 250.395264 L 530.708679 248.581116 L 529.801575 248.581116 L 529.461426 248.656708 L 529.196838 248.845673 L 528.970093 249.148041 L 528.932312 249.48819 L 528.970093 249.828339 L 529.196838 250.130707 L 529.461426 250.319672 L 529.801575 250.395264 L 530.708679 250.395264 Z"/>
-        <path id="path68" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 531.237793 255.157471 L 519.899231 249.48819 L 531.237793 243.818909 L 531.237793 255.157471 L 531.237793 255.157471 Z"/>
-        <path id="path69" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 584.680298 243.743317 L 597.266113 243.743317 L 597.266113 255.233063 L 584.680298 255.233063 L 584.680298 243.743317 Z"/>
-        <text id="text28" xml:space="preserve" x="584" y="254" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text29" xml:space="preserve" x="589" y="254" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="3" xml:space="preserve" x="591" y="254" font-family="Calibri" font-size="9.864567" fill="#607423">3</text>
-        <path id="path70" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 538.192139 256.707092 L 651.577942 256.707092 L 651.577942 317.822052 L 538.192139 317.822052 L 538.192139 256.707092 Z"/>
-        <path id="path71" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 538.192139 317.822052 L 651.577942 317.822052 L 651.577942 256.707092 L 538.192139 256.707092 L 538.192139 317.822052 Z"/>
-        <text id="text30" xml:space="preserve" x="563" y="271" font-family="Calibri" font-size="11.67874" fill="#406fc5">creation of a</text>
-        <text id="text31" xml:space="preserve" x="573" y="286" font-family="Calibri" font-size="11.67874" fill="#406fc5">LIGHT</text>
-        <text id="text32" xml:space="preserve" x="602" y="286" font-family="Calibri" font-size="11.67874" fill="#406fc5">#</text>
-        <text id="2-" xml:space="preserve" x="608" y="286" font-family="Calibri" font-size="11.67874" fill="#406fc5">2</text>
-        <text id="text33" xml:space="preserve" x="542" y="300" font-family="Calibri" font-size="11.67874" fill="#406fc5">contentInstance with</text>
-        <text id="text34" xml:space="preserve" x="558" y="314" font-family="Calibri" font-size="11.67874" fill="#406fc5">new light state</text>
-        <path id="path72" fill="#73ae42" fill-rule="evenodd" stroke="none" d="M 403.149597 337.740143 L 403.149597 249.48819 L 393.020477 249.48819 L 393.020477 337.740143 L 403.149597 337.740143 L 403.149597 337.740143 Z"/>
-        <path id="path73" fill="none" stroke="#6ca43e" stroke-width="0.907087" stroke-linejoin="round" d="M 403.149597 337.740143 L 403.149597 249.48819 L 393.020477 249.48819 L 393.020477 337.740143 L 403.149597 337.740143 Z"/>
-        <path id="path74" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 408.251984 256.707092 L 509.770081 256.707092 L 509.770081 317.822052 L 408.251984 317.822052 L 408.251984 256.707092 Z"/>
-        <path id="path75" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 408.251984 317.822052 L 509.770081 317.822052 L 509.770081 256.707092 L 408.251984 256.707092 L 408.251984 317.822052 Z"/>
-        <text id="text35" xml:space="preserve" x="432" y="278" font-family="Calibri" font-size="11.67874" fill="#406fc5">processing</text>
-        <text id="text36" xml:space="preserve" x="419" y="293" font-family="Calibri" font-size="11.67874" fill="#406fc5">contentInstance</text>
-        <text id="text37" xml:space="preserve" x="438" y="307" font-family="Calibri" font-size="11.67874" fill="#406fc5">creation</text>
-        <path id="path76" fill="#dce1f0" fill-rule="evenodd" stroke="none" d="M 188.283463 263.321259 L 289.801575 263.321259 L 289.801575 338.836212 L 188.283463 338.836212 L 188.283463 263.321259 Z"/>
-        <path id="path77" fill="none" stroke="#ffffff" stroke-width="0.907087" stroke-linejoin="round" d="M 188.283463 338.836212 L 289.801575 338.836212 L 289.801575 263.321259 L 188.283463 263.321259 L 188.283463 338.836212 Z"/>
-        <text id="text38" xml:space="preserve" x="196" y="278" font-family="Calibri" font-size="11.67874" fill="#406fc5">notifications with</text>
-        <text id="text39" xml:space="preserve" x="203" y="292" font-family="Calibri" font-size="11.67874" fill="#406fc5">the latest light</text>
-        <text id="text40" xml:space="preserve" x="212" y="307" font-family="Calibri" font-size="11.67874" fill="#406fc5">state to be</text>
-        <text id="text41" xml:space="preserve" x="200" y="321" font-family="Calibri" font-size="11.67874" fill="#406fc5">executed to the</text>
-        <text id="text42" xml:space="preserve" x="195" y="335" font-family="Calibri" font-size="11.67874" fill="#406fc5">controlled light</text>
-        <text id="text43" xml:space="preserve" x="269" y="335" font-family="Calibri" font-size="11.67874" fill="#406fc5">#</text>
-        <text id="text44" xml:space="preserve" x="275" y="335" font-family="Calibri" font-size="11.67874" fill="#406fc5">2</text>
-        <path id="path78" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 519.143311 96.757507 L 413.845673 96.757507"/>
-        <path id="path79" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 519.029907 95.850403 L 519.029907 97.664551 L 519.899231 97.664551 L 520.23938 97.588989 L 520.541748 97.400024 L 520.730713 97.097656 L 520.806274 96.757507 L 520.730713 96.417297 L 520.541748 96.11499 L 520.23938 95.925964 L 519.899231 95.850403 L 519.029907 95.850403 Z"/>
-        <path id="path80" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 413.959045 97.664551 L 413.959045 95.850403 L 413.051971 95.850403 L 412.711823 95.925964 L 412.447235 96.11499 L 412.25827 96.417297 L 412.182678 96.757507 L 412.25827 97.097656 L 412.447235 97.400024 L 412.711823 97.588989 L 413.051971 97.664551 L 413.959045 97.664551 Z"/>
-        <path id="path81" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 414.48819 102.426758 L 403.149597 96.757507 L 414.48819 91.088196 L 414.48819 102.426758 L 414.48819 102.426758 Z"/>
-        <path id="path82" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 455.231506 91.012573 L 467.855133 91.012573 L 467.855133 102.50238 L 455.231506 102.50238 L 455.231506 91.012573 Z"/>
-        <text id="text45" xml:space="preserve" x="454" y="102" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text46" xml:space="preserve" x="459" y="102" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="text47" xml:space="preserve" x="462" y="102" font-family="Calibri" font-size="9.864567" fill="#607423">2</text>
-        <path id="path83" fill="none" stroke="#7c9530" stroke-width="1.814173" stroke-linejoin="round" d="M 519.143311 249.48819 L 413.845673 249.48819"/>
-        <path id="path84" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 519.029907 248.581116 L 519.029907 250.395264 L 519.899231 250.395264 L 520.23938 250.319672 L 520.541748 250.130707 L 520.730713 249.828339 L 520.806274 249.48819 L 520.730713 249.148041 L 520.541748 248.845673 L 520.23938 248.656708 L 519.899231 248.581116 L 519.029907 248.581116 Z"/>
-        <path id="path85" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 413.959045 250.395264 L 413.959045 248.581116 L 413.051971 248.581116 L 412.711823 248.656708 L 412.447235 248.845673 L 412.25827 249.148041 L 412.182678 249.48819 L 412.25827 249.828339 L 412.447235 250.130707 L 412.711823 250.319672 L 413.051971 250.395264 L 413.959045 250.395264 Z"/>
-        <path id="path86" fill="#7c9530" fill-rule="evenodd" stroke="none" d="M 414.48819 255.157471 L 403.149597 249.48819 L 414.48819 243.818909 L 414.48819 255.157471 L 414.48819 255.157471 Z"/>
-        <path id="path87" fill="#ffffff" fill-rule="evenodd" stroke="none" d="M 455.231506 243.743317 L 467.855133 243.743317 L 467.855133 255.233063 L 455.231506 255.233063 L 455.231506 243.743317 Z"/>
-        <text id="text48" xml:space="preserve" x="454" y="254" font-family="Calibri" font-size="9.864567" fill="#607423">1</text>
-        <text id="text49" xml:space="preserve" x="459" y="254" font-family="Calibri" font-size="9.864567" fill="#607423">-</text>
-        <text id="4" xml:space="preserve" x="462" y="254" font-family="Calibri" font-size="9.864567" fill="#607423">4</text>
-    </g>
-</svg>
+<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="389px" preserveAspectRatio="none" style="width:766px;height:389px;background:#FFFFFF;" version="1.1" viewBox="0 0 766 389" width="766px" zoomAndPan="magnify"><defs/><g><rect fill="#FFFFFF" height="44.2656" style="stroke:#181818;stroke-width:1.0;" width="10" x="417" y="157.0938"/><rect fill="#FFFFFF" height="44.2656" style="stroke:#181818;stroke-width:1.0;" width="10" x="417" y="320.1563"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="43" x2="43" y1="36.2969" y2="382.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="129" x2="129" y1="36.2969" y2="382.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="206" x2="206" y1="36.2969" y2="382.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="421.5" x2="421.5" y1="36.2969" y2="382.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="549" x2="549" y1="36.2969" y2="382.4219"/><line style="stroke:#181818;stroke-width:0.5;stroke-dasharray:5.0,5.0;" x1="735" x2="735" y1="36.2969" y2="382.4219"/><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="5" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="12" y="24.9951">ADN-AE1</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="76" x="91" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="62" x="98" y="24.9951">ADN-AE2</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="59" x="177" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="184" y="24.9951">MN-AE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="69" x="387.5" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="55" x="394.5" y="24.9951">MN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="60" x="519" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="526" y="24.9951">IN-CSE</text><rect fill="#E2E2F0" height="30.2969" rx="2.5" ry="2.5" style="stroke:#181818;stroke-width:0.5;" width="50" x="710" y="5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="36" x="717" y="24.9951">IN-AE</text><rect fill="#FFFFFF" height="44.2656" style="stroke:#181818;stroke-width:1.0;" width="10" x="417" y="157.0938"/><rect fill="#FFFFFF" height="44.2656" style="stroke:#181818;stroke-width:1.0;" width="10" x="417" y="320.1563"/><polygon fill="#181818" points="560,93.6953,550,97.6953,560,101.6953,556,97.6953" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="554" x2="734" y1="97.6953" y2="97.6953"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="162" x="561" y="62.3638">1-1) Creation of a light#1</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="132" x="576" y="77.4966">contentInstance with</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="93" x="595.5" y="92.6294">new light state</text><polygon fill="#181818" points="438,153.0938,428,157.0938,438,161.0938,434,157.0938" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="432" x2="548" y1="157.0938" y2="157.0938"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="99" x="438.5" y="121.7622">1-2) Processing</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="103" x="436.5" y="136.895">contentInstance</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="52" x="462" y="152.0278">creation</text><polygon fill="#181818" points="54,197.3594,44,201.3594,54,205.3594,50,201.3594" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="48" x2="421" y1="201.3594" y2="201.3594"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="264" x="100.5" y="181.1606">2-1) Notification with the latest light state</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="230" x="117.5" y="196.2935">to be executed to controlled light#1</text><polygon fill="#181818" points="560,256.7578,550,260.7578,560,264.7578,556,260.7578" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="554" x2="734" y1="260.7578" y2="260.7578"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="158" x="563" y="225.4263">1-3) Creation of a light_2</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="132" x="576" y="240.5591">contentInstance with</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="93" x="595.5" y="255.6919">new light state</text><polygon fill="#181818" points="438,316.1563,428,320.1563,438,324.1563,434,320.1563" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="432" x2="548" y1="320.1563" y2="320.1563"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="99" x="438.5" y="284.8247">1-4) Processing</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="103" x="436.5" y="299.9575">contentInstance</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="52" x="462" y="315.0903">creation</text><polygon fill="#181818" points="140,360.4219,130,364.4219,140,368.4219,136,364.4219" style="stroke:#181818;stroke-width:1.0;"/><line style="stroke:#181818;stroke-width:1.0;" x1="134" x2="421" y1="364.4219" y2="364.4219"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="264" x="143.5" y="344.2231">2-2) Notification with the latest light state</text><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacing" textLength="230" x="160.5" y="359.356">to be executed to controlled light#2</text><!--SRC=[hP6nRi8m48PtFyKr39I18MudXaeHxS0GXDIEI9Kn1x6QdAbzAJn-BuGKsZ1LB97jx_BV-NFXrWWRxtdb3of-EDgPO2g8-5aZMSmnHhF5h7HR0el462wgo3E-uO6Fk1BQbGplkC0AOLSQHp-xoeIeXgPcJtMrmW39_M04YL9gOG8xwtP68fBiUJxENj84J0HPo_8QrsUkV_EymKUQ2-onwMi7PVMRpivqTfLc7PHSrNnX_DIMJY0TfoEO1ZJiF87VW07HKl0WNPBreeLuHf6DM8Mzus99XFks1EIOKHs3ciIyIzGZM0HlvH4SRNinSd1gfunbzoKPfrkfl8jg1Kv0DzFDFRkDi-s4pGmW3mEb_1VvSf8biOSL0XxGrenha6tJE_YobDtfMcgDVzlsb3nSLVAk_w_ayJPATAD4trY9xYdv1W00]--></g></svg>
\ No newline at end of file