valueflows

valueflows docs
git clone https://s.sonu.ch/~srfsh/valueflows.git
Log | Files | Refs | README

commit 08ba29a545e9e280be1e0f069e4dd3749b2fd463
parent 8a94011a7c9ccfda761ffe56444c7ce3828ef371
Author: Lynn Foster <foster.j.lynn@gmail.com>
Date:   Wed, 21 Aug 2019 16:23:28 -0500

json-schemas into the doc (#573)

* updated uml diagram

* json schemas into the doc

* link for json-schemas

Diffstat:
Mdocs/SUMMARY.md | 3++-
Adocs/specification/json-schema-ref.md | 140+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mdocs/specification/protege-spec.md | 2+-
Mrelease-doc-in-process/ValueFlowsUML.png | 0
Mrelease-doc-in-process/ValueFlowsUML.xml | 576+------------------------------------------------------------------------------
5 files changed, 145 insertions(+), 576 deletions(-)

diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md @@ -33,9 +33,10 @@ ## Specification -* [External terms](specification/external-terms.md) * [Classes and Properties](specification/protege-spec.md) +* [External terms](specification/external-terms.md) * [Graphql Reference](https://github.com/valueflows/vf-graphql/tree/master/lib/schemas) +* [JSON-schema Reference](specification/json-schema-ref.md) ## Examples diff --git a/docs/specification/json-schema-ref.md b/docs/specification/json-schema-ref.md @@ -0,0 +1,140 @@ +# JSON-schema Reference + +The following are the classes needed for a ValueFlows implementation, in json-schema format. The list includes the ValueFlows namespace, plus other vocabulary items re-used from other defined vocabularies. + +* [vf:Action](#action) +* [foaf:Agent](#agent) +* [vf:AgentRelationship](#agentrelationship) +* [vf:AgentRelationshipRole](#agentrelationshiprole) +* [vf:Agreement](#agreement) +* [vf:Appreciation](#appreciation) +* [vf:Claim](#claim) +* [vf:Commitment](#commitment) +* [time:Duration](#duration) +* [vf:EconomicEvent](#economicevent) +* [vf:EconomicResource](#economicresource) +* [vf:Fulfillment](#fulfillment) +* [vf:Intent](#intent) +* [vf:Plan](#plan) +* [vf:Process](#) +* [vf:ProcessSpecification](#processspecification) +* [dfc:ProductBatch](#productbatch) +* [qudt:QuantityValue](#quantityvalue) +* [vf:RecipeFlow](#recipeflow) +* [vf:RecipeProcess](#recipeprocess) +* [vf:RecipeResource](#reciperesource) +* [vf:ResourceSpecification](#resourcespecification) +* [vf:Satisfaction](#satisfaction) +* [vf:Scenario](#scenario) +* [vf:ScenarioDefinition](#scenariodefinition) +* [vf:Settlement](#settlement) +* [geo:SpatialThing](#spatialthing) + + +#### Action + +[import, lang:"json"](../../../vf-json-schema/schemas/Action.json) + +#### Agent + +[import, lang:"json"](../../../vf-json-schema/schemas/Agent.json) + +#### AgentRelationship + +[import, lang:"json"](../../../vf-json-schema/schemas/AgentRelationship.json) + +#### AgentRelationshipRole + +[import, lang:"json"](../../../vf-json-schema/schemas/AgentRelationshipRole.json) + +#### Agreement + +[import, lang:"json"](../../../vf-json-schema/schemas/Agreement.json) + +#### Appreciation + +[import, lang:"json"](../../../vf-json-schema/schemas/Appreciation.json) + +#### Claim + +[import, lang:"json"](../../../vf-json-schema/schemas/Claim.json) + +#### Commitment + +[import, lang:"json"](../../../vf-json-schema/schemas/Commitment.json) + +#### Duration + +[import, lang:"json"](../../../vf-json-schema/schemas/Duration.json) + +#### EconomicEvent + +[import, lang:"json"](../../../vf-json-schema/schemas/EconomicEvent.json) + +#### EconomicResource + +[import, lang:"json"](../../../vf-json-schema/schemas/EconomicResource.json) + +#### Fulfillment + +[import, lang:"json"](../../../vf-json-schema/schemas/Fulfillment.json) + +#### Intent + +[import, lang:"json"](../../../vf-json-schema/schemas/Intent.json) + +#### Plan + +[import, lang:"json"](../../../vf-json-schema/schemas/Plan.json) + +#### Process + +[import, lang:"json"](../../../vf-json-schema/schemas/Process.json) + +#### ProcessSpecification + +[import, lang:"json"](../../../vf-json-schema/schemas/ProcessSpecification.json) + +#### ProductBatch + +[import, lang:"json"](../../../vf-json-schema/schemas/ProductBatch.json) + +#### QuantityValue + +[import, lang:"json"](../../../vf-json-schema/schemas/QuantityValue.json) + +#### RecipeFlow + +[import, lang:"json"](../../../vf-json-schema/schemas/RecipeFlow.json) + +#### RecipeProcess + +[import, lang:"json"](../../../vf-json-schema/schemas/RecipeProcess.json) + +#### RecipeResource + +[import, lang:"json"](../../../vf-json-schema/schemas/RecipeResource.json) + +#### ResourceSpecification + +[import, lang:"json"](../../../vf-json-schema/schemas/ResourceSpecification.json) + +#### Satisfaction + +[import, lang:"json"](../../../vf-json-schema/schemas/Satisfaction.json) + +#### Scenario + +[import, lang:"json"](../../../vf-json-schema/schemas/Scenario.json) + +#### ScenarioDefinition + +[import, lang:"json"](../../../vf-json-schema/schemas/ScenarioDefinition.json) + +#### Settlement + +[import, lang:"json"](../../../vf-json-schema/schemas/Settlement.json) + +#### SpatialThing + +[import, lang:"json"](../../../vf-json-schema/schemas/SpatialThing.json) diff --git a/docs/specification/protege-spec.md b/docs/specification/protege-spec.md @@ -14,4 +14,4 @@ For the current rdf turtle file reference, [click here](https://raw.githubuserco ### Complete References -For a complete reference, see the [UML diagram](https://valueflo.ws/specification/diagrams/uml.html), which also documents the appropriate rdf namespace for each element. Also the [graphql reference](https://github.com/valueflows/vf-graphql/tree/master/lib/schemas) includes the entire vocabulary in a non-rdf format. +For a complete reference, see the [UML diagram](https://valueflo.ws/specification/diagrams/uml.html), which also documents the appropriate rdf namespace for each element. Also the [graphql reference](https://github.com/valueflows/vf-graphql/tree/master/lib/schemas) includes the entire vocabulary in a non-rdf format, as does the [json-schema reference](https://valueflo.ws/specification/json-schema-ref.html). diff --git a/release-doc-in-process/ValueFlowsUML.png b/release-doc-in-process/ValueFlowsUML.png Binary files differ. diff --git a/release-doc-in-process/ValueFlowsUML.xml b/release-doc-in-process/ValueFlowsUML.xml @@ -1,575 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<mxfile modified="2019-08-18T10:42:45.160Z" host="www.draw.io" agent="Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0" etag="pgDGrBelGmKdjk6gC8v9" version="11.1.2" type="google" compressed="false"> - <diagram id="fbe6a5e9-5b10-23b0-562a-0cf294ecc85a" name="Page-1"> - <mxGraphModel dx="2205" dy="2778" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="2000" math="0" shadow="0"> - <root> - <mxCell id="0"/> - <mxCell id="1" parent="0"/> - <mxCell id="2028f4c0cddd94fa-15" value="Observation" style="whiteSpace=wrap;html=1;fillColor=#d5e8d4;dashed=1;strokeColor=#82b366;fontSize=14;verticalAlign=top;align=left;" parent="1" vertex="1"> - <mxGeometry x="-140" y="614" width="2670" height="520" as="geometry"/> - </mxCell> - <mxCell id="2028f4c0cddd94fa-14" value="Plan" style="whiteSpace=wrap;html=1;fillColor=#f8cecc;dashed=1;strokeColor=#b85450;verticalAlign=top;align=left;fontSize=14;" parent="1" vertex="1"> - <mxGeometry x="-140" y="44" width="2670" height="570" as="geometry"/> - </mxCell> - <mxCell id="2028f4c0cddd94fa-13" value="&lt;font style=&quot;font-size: 14px&quot;&gt;Knowledge&lt;/font&gt;" style="whiteSpace=wrap;html=1;fillColor=#fff2cc;dashed=1;strokeColor=#d6b656;align=left;verticalAlign=top;" parent="1" vertex="1"> - <mxGeometry x="-140" y="-321" width="2670" height="365" as="geometry"/> - </mxCell> - <mxCell id="2b1bba910c18a604-3" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;foaf:Agent&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:name&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:image&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:primaryLocation&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="2131.5" y="638" width="120" height="130" as="geometry"/> - </mxCell> - <mxCell id="2b1bba910c18a604-5" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;foaf:Person&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="2065.5" y="873" width="110" height="60" as="geometry"/> - </mxCell> - <mxCell id="2b1bba910c18a604-6" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;org:Organization&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="2202.5" y="873" width="135" height="60" as="geometry"/> - </mxCell> - <mxCell id="2b1bba910c18a604-8" value="" style="endArrow=block;endSize=16;endFill=0;html=1;strokeColor=#000000;entryX=0.75;entryY=1;exitX=0.5;exitY=0;" parent="1" source="2b1bba910c18a604-6" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry x="2118.5" y="659" width="160" as="geometry"> - <mxPoint x="2118.5" y="659" as="sourcePoint"/> - <mxPoint x="2191.5" y="699" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="2b1bba910c18a604-9" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:AgentRelationship&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&amp;nbsp; vf:inScopeOf&lt;br&gt;&lt;/font&gt;&lt;div&gt;&amp;nbsp; skos:note&lt;br&gt;&lt;/div&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="2325.5" y="738" width="168" height="90" as="geometry"/> - </mxCell> - <mxCell id="2b1bba910c18a604-10" value="vf:subject" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0;exitY=0.25;entryX=1;entryY=0.25;" parent="1" source="2b1bba910c18a604-9" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry width="100" relative="1" as="geometry"> - <mxPoint x="2108.5" y="686" as="sourcePoint"/> - <mxPoint x="1928.5" y="903" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="2b1bba910c18a604-11" value="vf:object" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0;exitY=0.75;entryX=1;entryY=0.75;entryDx=0;entryDy=0;exitDx=0;exitDy=0;" parent="1" source="2b1bba910c18a604-9" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry x="2058.5" y="696" width="100" as="geometry"> - <mxPoint x="2136.5" y="696" as="sourcePoint"/> - <mxPoint x="2058.5" y="706" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="2b1bba910c18a604-13" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:EconomicResource&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:name&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:trackingIentifier&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:accountingQuantity&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:onhandQuantity&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:currentLocation&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:classifiedAs&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:image&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:unitOfEffort&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:stage&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:state&lt;/font&gt;&lt;br&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="5" y="672" width="170" height="198" as="geometry"/> - </mxCell> - <mxCell id="2028f4c0cddd94fa-1" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:ResourceSpecification&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:name&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:image&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:uri&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;skos:note&lt;br&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="-108" y="-221" width="190" height="130" as="geometry"/> - </mxCell> - <mxCell id="2028f4c0cddd94fa-4" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Commitment&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:name&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:resourceQuantity&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:effortQuantity&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:hasBeginning&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:hasEnd&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;:hasPointInTime&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;time:before&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;time:after&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:finished&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:inScopeOf&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&lt;font&gt;vf:resourceClassifiedAs&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&lt;font&gt;vf:stage&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&lt;font&gt;vf:state&lt;/font&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;dcterms:created&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:agreedIn&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="1234" y="272" width="151" height="273" as="geometry"/> - </mxCell> - <mxCell id="2028f4c0cddd94fa-6" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Agreement&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:name&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;dcterms:created&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="2075.5" y="192" width="130" height="108" as="geometry"/> - </mxCell> - <mxCell id="2028f4c0cddd94fa-7" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Action&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;rdfs:label&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:resourceEffect&lt;br&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="1391" y="-139" width="130" height="70" as="geometry"/> - </mxCell> - <mxCell id="2028f4c0cddd94fa-8" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Process&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:name&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:plannedTime&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:finished&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:classifiedAs&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:inScopeOf&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="710" y="580" width="130" height="160" as="geometry"/> - </mxCell> - <mxCell id="2028f4c0cddd94fa-16" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:EconomicEvent&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:resourceQuantity&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:effortQuantity&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:hasBeginning&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:hasEnd&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;:hasPointInTime&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;time:before&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;time:after&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:inScopeOf&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:image&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:resourceClassifiedAs&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:agreedIn&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="1763" y="860" width="151" height="212" as="geometry"/> - </mxCell> - <mxCell id="2028f4c0cddd94fa-18" value="vf:conformsTo" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.25;exitY=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="2b1bba910c18a604-13" target="2028f4c0cddd94fa-1" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="-57" y="580" as="sourcePoint"/> - <mxPoint x="43" y="250" as="targetPoint"/> - <mxPoint x="-27" y="-330" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-20" value="vf:action" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.75;exitY=0;entryX=0.5;entryY=1;" parent="1" source="2028f4c0cddd94fa-4" target="2028f4c0cddd94fa-7" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="1032" y="270" as="sourcePoint"/> - <mxPoint x="1168" y="120" as="targetPoint"/> - <mxPoint x="8" y="-20" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-21" value="vf:action" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.25;exitY=0;entryX=0.75;entryY=1;exitDx=0;exitDy=0;" parent="1" source="2028f4c0cddd94fa-16" target="2028f4c0cddd94fa-7" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="922" y="275" as="sourcePoint"/> - <mxPoint x="939" y="125" as="targetPoint"/> - <mxPoint x="-113" y="-324" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-23" value="vf:resourceConformsTo" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.25;exitY=0;entryX=1;entryY=0.75;entryDx=0;entryDy=0;" parent="1" source="2028f4c0cddd94fa-4" target="2028f4c0cddd94fa-1" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="492" y="280" as="sourcePoint"/> - <mxPoint x="270" y="220" as="targetPoint"/> - <mxPoint x="-217" y="-72" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-30" value="vf:inputOf" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0;exitY=0.75;entryX=0.75;entryY=0;" parent="1" source="2028f4c0cddd94fa-4" target="2028f4c0cddd94fa-8" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="738" y="375" as="sourcePoint"/> - <mxPoint x="653.6666666666665" y="588" as="targetPoint"/> - <mxPoint x="-161" y="42" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-31" value="vf:inputOf" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=-0.009;exitY=0.629;entryX=0.5;entryY=1;exitPerimeter=0;" parent="1" source="2028f4c0cddd94fa-16" target="2028f4c0cddd94fa-8" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="680" y="590" as="sourcePoint"/> - <mxPoint x="520" y="720.3333333333333" as="targetPoint"/> - <mxPoint x="-295" y="-77" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-33" value="vf:provider" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=1;exitY=0.25;entryX=0;entryY=0.75;" parent="1" source="2028f4c0cddd94fa-16" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry x="1511.5" y="1050" width="100" as="geometry"> - <mxPoint x="1314.5" y="914" as="sourcePoint"/> - <mxPoint x="1162.5" y="845" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-34" value="vf:receiver" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=1;exitY=0.5;entryX=0.018;entryY=0.888;entryPerimeter=0;" parent="1" source="2028f4c0cddd94fa-16" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry x="1521.5" y="1060" width="100" as="geometry"> - <mxPoint x="1432.5" y="907" as="sourcePoint"/> - <mxPoint x="1545.5" y="962" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-35" value="vf:provider" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=1;exitY=0.75;entryX=0.004;entryY=0.102;entryPerimeter=0;" parent="1" source="2028f4c0cddd94fa-4" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="1084" y="640" as="sourcePoint"/> - <mxPoint x="2040" y="699" as="targetPoint"/> - <mxPoint x="162" y="40" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-44" value="vf:resourceInventoriedAs" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0;exitY=0.75;entryX=1;entryY=0.75;" parent="1" source="2028f4c0cddd94fa-16" target="2b1bba910c18a604-13" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="719" y="725" as="sourcePoint"/> - <mxPoint x="615" y="798" as="targetPoint"/> - <mxPoint x="1" y="-14" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-68" value="vf:containedIn" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=1;exitY=0.5;entryX=1;entryY=0.25;rounded=0;" parent="1" source="2b1bba910c18a604-13" target="2b1bba910c18a604-13" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="440.16666666666674" y="761.8333333333335" as="sourcePoint"/> - <mxPoint x="237.66666666666674" y="587.6666666666667" as="targetPoint"/> - <Array as="points"> - <mxPoint x="245" y="771"/> - <mxPoint x="245" y="722"/> - </Array> - <mxPoint x="55" y="1" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2028f4c0cddd94fa-69" value="vf:resourceInventoriedAs" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0;exitY=0.5;entryX=0.75;entryY=0;" parent="1" source="2028f4c0cddd94fa-4" target="2b1bba910c18a604-13" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="423" y="412.66666666666674" as="sourcePoint"/> - <mxPoint x="144.66666666666674" y="650.1666666666667" as="targetPoint"/> - <mxPoint x="-433" y="112" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="2ce1e37c1baab34f-9" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Appreciation&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&amp;nbsp; skos:note" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="2092.5" y="986.5" width="130" height="56" as="geometry"/> - </mxCell> - <mxCell id="2ce1e37c1baab34f-10" value="vf:appreciationOf" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0;exitY=0.25;entryX=1.009;entryY=0.607;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="2ce1e37c1baab34f-9" target="2028f4c0cddd94fa-16" edge="1"> - <mxGeometry x="1634.5" y="935.5" width="100" as="geometry"> - <mxPoint x="1873.5" y="1007" as="sourcePoint"/> - <mxPoint x="1910" y="993" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="2ce1e37c1baab34f-13" value="vf:appreciatedWith" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0;exitY=0.75;entryX=1;entryY=0.75;entryDx=0;entryDy=0;" parent="1" source="2ce1e37c1baab34f-9" target="2028f4c0cddd94fa-16" edge="1"> - <mxGeometry x="1644.5" y="945.5" width="100" as="geometry"> - <mxPoint x="1440.5" y="1035.5" as="sourcePoint"/> - <mxPoint x="1863.5" y="1036" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="56272bb379787ee4-4" value="vf:receiver" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=1.008;exitY=0.942;entryX=0;entryY=0.25;exitPerimeter=0;" parent="1" source="2028f4c0cddd94fa-4" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="1234" y="850" as="sourcePoint"/> - <mxPoint x="1372" y="811" as="targetPoint"/> - <mxPoint x="181" y="40" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="33d39f40dea53fb9-2" value="vf:outputOf" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0;exitY=0.5;entryX=1;entryY=0.75;" parent="1" source="2028f4c0cddd94fa-16" target="2028f4c0cddd94fa-8" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="1206" y="941" as="sourcePoint"/> - <mxPoint x="563" y="713" as="targetPoint"/> - <mxPoint x="-356" y="-118" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="33d39f40dea53fb9-3" value="vf:outputOf" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.005;exitY=0.836;entryX=1;entryY=0.25;exitPerimeter=0;" parent="1" source="2028f4c0cddd94fa-4" target="2028f4c0cddd94fa-8" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="992" y="415" as="sourcePoint"/> - <mxPoint x="628" y="583" as="targetPoint"/> - <mxPoint x="-117" y="30" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="1abf9e2170aed3bf-1" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:AgentRelationshipRole&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&amp;nbsp; rdfs:label&lt;br&gt;&lt;/font&gt;&lt;div&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&amp;nbsp; vf:inverseLabel&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&amp;nbsp; skos:note&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&lt;br&gt;&lt;/font&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="2309.5" y="-91" width="200" height="90" as="geometry"/> - </mxCell> - <mxCell id="1abf9e2170aed3bf-2" value="vf:relationship" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.5;exitY=0;entryX=0.5;entryY=1;" parent="1" source="2b1bba910c18a604-9" target="1abf9e2170aed3bf-1" edge="1"> - <mxGeometry width="100" relative="1" as="geometry"> - <mxPoint x="2124" y="776" as="sourcePoint"/> - <mxPoint x="2011" y="807" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="6d66ee6468fceae0-1" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Fulfillment&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;div&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&amp;nbsp; vf:resourceQuantity&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&amp;nbsp; vf:effortQuantity&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="1572" y="680" width="140" height="78" as="geometry"/> - </mxCell> - <mxCell id="6d66ee6468fceae0-2" value="vf:fulledlby" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.75;exitY=1;entryX=0.116;entryY=-0.005;entryDx=0;entryDy=0;exitDx=0;exitDy=0;entryPerimeter=0;" parent="1" source="6d66ee6468fceae0-1" target="2028f4c0cddd94fa-16" edge="1"> - <mxGeometry x="1298" y="928.5" width="100" as="geometry"> - <mxPoint x="1662.475308641975" y="771.2253086419751" as="sourcePoint"/> - <mxPoint x="1329" y="901.067149504282" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="6d66ee6468fceae0-3" value="vf:fulfills" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.25;exitY=0;entryX=0.75;entryY=1;exitDx=0;exitDy=0;entryDx=0;entryDy=0;" parent="1" source="6d66ee6468fceae0-1" target="2028f4c0cddd94fa-4" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="919" y="705" as="sourcePoint"/> - <mxPoint x="1013.8869891114505" y="404.5138772572416" as="targetPoint"/> - <Array as="points"/> - <mxPoint x="-57" y="-33" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="36862ffdf416c1f3-1" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:ProcessSpecification&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:name&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;skos:note&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;br&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="720" y="-130" width="191" height="97" as="geometry"/> - </mxCell> - <mxCell id="36862ffdf416c1f3-2" value="vf:basedOn" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.25;exitY=0;entryX=0.75;entryY=1;exitDx=0;exitDy=0;entryDx=0;entryDy=0;" parent="1" source="2028f4c0cddd94fa-8" target="36862ffdf416c1f3-1" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="111" y="700" as="sourcePoint"/> - <mxPoint x="186" y="210" as="targetPoint"/> - <mxPoint x="37" y="-253" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="5" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:RecipeFlow&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;skos:note&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:resourceQuantity&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:effortQuantity&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:stage&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:state&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;br&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="990" y="-300" width="160" height="110" as="geometry"/> - </mxCell> - <mxCell id="6" value="vf:action" style="endArrow=classic;html=1;exitX=1;exitY=0.75;entryX=0;entryY=0.5;" parent="1" source="5" target="2028f4c0cddd94fa-7" edge="1"> - <mxGeometry width="50" height="50" relative="1" as="geometry"> - <mxPoint x="993" y="-209" as="sourcePoint"/> - <mxPoint x="1043" y="-259" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="7" value="vf:recipeInputOf" style="endArrow=classic;html=1;exitX=0.5;exitY=1;entryX=0.25;entryY=0;exitDx=0;exitDy=0;entryDx=0;entryDy=0;" parent="1" source="5" target="WgYd2YjfuSUQQR85dr-W-24" edge="1"> - <mxGeometry x="-0.2219" y="-25" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="643" y="-219" as="sourcePoint"/> - <mxPoint x="805.855670103093" y="-128.8556701030925" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="8" value="vf:recipeOutputOf" style="endArrow=classic;html=1;exitX=0.75;exitY=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitDx=0;exitDy=0;" parent="1" source="5" target="WgYd2YjfuSUQQR85dr-W-24" edge="1"> - <mxGeometry x="0.4339" y="30" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="847.2" y="-179.19999999999982" as="sourcePoint"/> - <mxPoint x="853.2989690721652" y="-128.8556701030925" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="9" value="vf:resourceConformsTo" style="endArrow=classic;html=1;exitX=0;exitY=0.5;entryX=1;entryY=0.25;exitDx=0;exitDy=0;" parent="1" source="WgYd2YjfuSUQQR85dr-W-23" target="2028f4c0cddd94fa-1" edge="1"> - <mxGeometry x="0.0367" y="-7" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="403" y="-205" as="sourcePoint"/> - <mxPoint x="453" y="-255" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="15" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Intent&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:name&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:resourceQuantity&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:effortQuantity&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:availableQuantity&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:resourceClassifiedAs&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:hasBeginning&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:hasEnd&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;:hasPointInTime&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;time:before&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;time:after&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:inScopeOf&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:finished&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:image&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:agreedIn&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="65.5" y="234" width="168" height="260" as="geometry"/> - </mxCell> - <mxCell id="18" value="vf:resourceConformsTo" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.25;exitY=0;entryX=0.75;entryY=1;" parent="1" source="15" target="2028f4c0cddd94fa-1" edge="1"> - <mxGeometry x="-122" width="100" as="geometry"> - <mxPoint x="-29" y="677" as="sourcePoint"/> - <mxPoint x="33" y="-99" as="targetPoint"/> - <mxPoint x="5" y="-137" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-19" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Satisfaction&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:resourceQuantity&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:effortQuantity&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="879" y="340" width="130" height="90" as="geometry"/> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-23" value="vf:satisfiedBy" style="endArrow=classic;html=1;exitX=1;exitY=0.5;entryX=0;entryY=0.25;" parent="1" source="Y3wMit8w-xaCPeqG1mIL-19" target="2028f4c0cddd94fa-4" edge="1"> - <mxGeometry x="-0.104" y="-1" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="800" y="360" as="sourcePoint"/> - <mxPoint x="850" y="310" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-24" value="vf:satisfies" style="endArrow=classic;html=1;exitX=0;exitY=0.5;entryX=1;entryY=0.5;" parent="1" source="Y3wMit8w-xaCPeqG1mIL-19" target="15" edge="1"> - <mxGeometry x="0.6398" y="-8" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="440" y="390" as="sourcePoint"/> - <mxPoint x="490" y="340" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-25" value="vf:action" style="endArrow=classic;html=1;exitX=1;exitY=0.358;entryX=0.25;entryY=1;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="15" target="2028f4c0cddd94fa-7" edge="1"> - <mxGeometry x="-0.858" y="5" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="530" y="260" as="sourcePoint"/> - <mxPoint x="580" y="210" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-26" value="vf:inputOf" style="endArrow=classic;html=1;exitX=0.75;exitY=1;entryX=0;entryY=0.25;" parent="1" source="15" target="2028f4c0cddd94fa-8" edge="1"> - <mxGeometry x="-0.4739" y="7" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="400" y="550" as="sourcePoint"/> - <mxPoint x="450" y="500" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-27" value="vf:outputOf" style="endArrow=classic;html=1;exitX=0.5;exitY=1;entryX=0;entryY=0.5;" parent="1" source="15" target="2028f4c0cddd94fa-8" edge="1"> - <mxGeometry x="-0.3217" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="260" y="580" as="sourcePoint"/> - <mxPoint x="310" y="530" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-28" value="vf:resourceInventoriedAs" style="endArrow=classic;html=1;exitX=0.25;exitY=1;entryX=0.5;entryY=0;" parent="1" source="15" target="2b1bba910c18a604-13" edge="1"> - <mxGeometry x="-0.4495" y="31" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="78" y="580" as="sourcePoint"/> - <mxPoint x="128" y="530" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-29" value="vf:provider" style="endArrow=classic;html=1;exitX=1;exitY=0.75;entryX=0;entryY=0.5;" parent="1" source="15" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry x="-0.9444" y="10" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="540" y="460" as="sourcePoint"/> - <mxPoint x="590" y="410" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-30" value="vf:receiver" style="endArrow=classic;html=1;exitX=1.006;exitY=0.883;entryX=-0.002;entryY=0.642;entryPerimeter=0;exitPerimeter=0;" parent="1" source="15" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry x="-0.9203" y="-3" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="500" y="500" as="sourcePoint"/> - <mxPoint x="550" y="450" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Y3wMit8w-xaCPeqG1mIL-31" value="vf:satisfiedBy" style="endArrow=classic;html=1;exitX=1;exitY=0.75;entryX=0;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="Y3wMit8w-xaCPeqG1mIL-19" target="2028f4c0cddd94fa-16" edge="1"> - <mxGeometry x="0.0937" y="-2" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="945" y="335" as="sourcePoint"/> - <mxPoint x="1134" y="326" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="l5Hp9O5IRhXKJsJPgQWF-18" value="" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;entryX=0.25;entryY=1;entryDx=0;entryDy=0;exitX=0.003;exitY=0.842;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="2028f4c0cddd94fa-16" target="2028f4c0cddd94fa-1" edge="1"> - <mxGeometry x="10" y="10" width="100" as="geometry"> - <mxPoint x="1680" y="1020" as="sourcePoint"/> - <mxPoint x="128" y="-160" as="targetPoint"/> - <mxPoint x="-119" y="-36" as="offset"/> - <Array as="points"> - <mxPoint x="-60" y="1040"/> - </Array> - </mxGeometry> - </mxCell> - <mxCell id="l5Hp9O5IRhXKJsJPgQWF-19" value="vf:resourceConformsTo" style="text;html=1;resizable=0;points=[];align=center;verticalAlign=middle;labelBackgroundColor=#ffffff;" parent="l5Hp9O5IRhXKJsJPgQWF-18" vertex="1" connectable="0"> - <mxGeometry relative="1" as="geometry"> - <mxPoint x="-346" y="-1020" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="l5Hp9O5IRhXKJsJPgQWF-20" value="" style="endArrow=block;endSize=16;endFill=0;html=1;strokeColor=#000000;entryX=0.25;entryY=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryDx=0;entryDy=0;" parent="1" source="2b1bba910c18a604-5" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry x="2128.5" y="669" width="160" as="geometry"> - <mxPoint x="2291.166666666667" y="883.6666666666665" as="sourcePoint"/> - <mxPoint x="2251.166666666667" y="790.3333333333335" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-19" value="" style="whiteSpace=wrap;html=1;fillColor=#CCCCCC;dashed=1;strokeColor=#23445d;fontSize=14;verticalAlign=top;align=left;" parent="1" vertex="1"> - <mxGeometry x="-140" y="1145" width="790" height="185" as="geometry"/> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-20" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;qudt:QuantityValue&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;qudt:numericValue&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;qudt:unit&lt;br&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="-50" y="1173" width="170" height="80" as="geometry"/> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-26" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;time:Duration&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;time:numericDuration&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;time:unitType&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="190" y="1173" width="170" height="100" as="geometry"/> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-29" value="vf:triggeredBy" style="endArrow=classic;html=1;exitX=0.25;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="Tauemc8Aw21Hce5KtOuX-33" target="2028f4c0cddd94fa-16" edge="1"> - <mxGeometry x="-0.8582" y="-7" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1362" y="1400" as="sourcePoint"/> - <mxPoint x="1375" y="1578" as="targetPoint"/> - <mxPoint x="1" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-30" value="vf:settledBy" style="endArrow=classic;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.75;entryY=0;entryDx=0;entryDy=0;" parent="1" source="Tauemc8Aw21Hce5KtOuX-32" target="2028f4c0cddd94fa-16" edge="1"> - <mxGeometry x="0.027" y="7" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1485" y="1508" as="sourcePoint"/> - <mxPoint x="1435" y="1578" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-31" value="vf:settles" style="endArrow=classic;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.75;entryY=1;entryDx=0;entryDy=0;" parent="1" source="Tauemc8Aw21Hce5KtOuX-32" target="Tauemc8Aw21Hce5KtOuX-33" edge="1"> - <mxGeometry x="0.6775" y="2" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1477" y="1448" as="sourcePoint"/> - <mxPoint x="1432" y="1400" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-32" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Settlement&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;div&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&amp;nbsp; vf:resourceQuantity&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;&amp;nbsp; vf:effortQuantity&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="1823" y="705" width="125" height="78" as="geometry"/> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-33" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Claim&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:resourceQuantity&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:effortQuantity&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;dcterms:created&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:resourceClassifiedAs&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:finished&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:inScopeOf&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:agreedIn&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="1688" y="315" width="151" height="156" as="geometry"/> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-35" value="vf:action" style="endArrow=classic;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;entryX=1;entryY=0.75;entryDx=0;entryDy=0;" parent="1" source="Tauemc8Aw21Hce5KtOuX-33" target="2028f4c0cddd94fa-7" edge="1"> - <mxGeometry x="0.1363" y="-1" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1700" y="160" as="sourcePoint"/> - <mxPoint x="1750" y="110" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-38" value="vf:provider" style="endArrow=classic;html=1;entryX=0.25;entryY=0;entryDx=0;entryDy=0;exitX=1;exitY=0.75;exitDx=0;exitDy=0;" parent="1" source="Tauemc8Aw21Hce5KtOuX-33" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry x="0.5341" y="-12" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="2120" y="540" as="sourcePoint"/> - <mxPoint x="2170" y="490" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-39" value="vf:receiver" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="Tauemc8Aw21Hce5KtOuX-33" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry x="0.5511" y="11" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="2120" y="550" as="sourcePoint"/> - <mxPoint x="2170" y="500" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="Tauemc8Aw21Hce5KtOuX-40" value="vf:resourceConformsTo" style="endArrow=classic;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="Tauemc8Aw21Hce5KtOuX-33" target="2028f4c0cddd94fa-1" edge="1"> - <mxGeometry x="0.5793" y="-17" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1740" y="-60" as="sourcePoint"/> - <mxPoint x="1790" y="-110" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="oJrSKW7QNGFuydV7huNM-18" value="vf:clauseOf" style="endArrow=classic;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=-0.004;entryY=0.377;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="2028f4c0cddd94fa-4" target="2028f4c0cddd94fa-6" edge="1"> - <mxGeometry x="0.2528" y="2" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1460" y="350" as="sourcePoint"/> - <mxPoint x="2070" y="210" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="oJrSKW7QNGFuydV7huNM-19" value="vf:realizationOf" style="endArrow=classic;html=1;exitX=1.003;exitY=0.058;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.75;entryY=1;entryDx=0;entryDy=0;" parent="1" source="2028f4c0cddd94fa-16" target="2028f4c0cddd94fa-6" edge="1"> - <mxGeometry x="0.6749" y="-20" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1990" y="810" as="sourcePoint"/> - <mxPoint x="2040" y="760" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="oJrSKW7QNGFuydV7huNM-20" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Plan&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:name&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;time:before&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;dcterms:created&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="830" y="192" width="115" height="98" as="geometry"/> - </mxCell> - <mxCell id="oJrSKW7QNGFuydV7huNM-21" value="vf:plannedWithin" style="endArrow=classic;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="2028f4c0cddd94fa-8" target="oJrSKW7QNGFuydV7huNM-20" edge="1"> - <mxGeometry x="-0.1295" y="-17" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="590" y="270" as="sourcePoint"/> - <mxPoint x="640" y="220" as="targetPoint"/> - <mxPoint y="1" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="oJrSKW7QNGFuydV7huNM-22" value="vf:independentDemandOf" style="endArrow=classic;html=1;exitX=-0.012;exitY=0.111;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="2028f4c0cddd94fa-4" target="oJrSKW7QNGFuydV7huNM-20" edge="1"> - <mxGeometry width="50" height="50" relative="1" as="geometry"> - <mxPoint x="820" y="230" as="sourcePoint"/> - <mxPoint x="870" y="180" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="oJrSKW7QNGFuydV7huNM-23" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Proposal&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:name&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 0px 8px ; font-size: 11px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:hasBeginning&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 0px 8px ; font-size: 11px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:hasEnd&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 0px 8px ; font-size: 11px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:eligibleLocation&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 0px 8px ; font-size: 11px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:inScopeOf&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 0px 8px ; font-size: 11px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:unitBased&lt;/font&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;dcterms:created&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="367" y="66" width="147" height="154" as="geometry"/> - </mxCell> - <mxCell id="QHsRYAhEHgMgAU8Zw86L-19" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;geo:SpatialThing&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;geo:lat&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;geo:long&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;geo:alt&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:mappableAddress&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;skos:note&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:name&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="440" y="1173" width="170" height="134" as="geometry"/> - </mxCell> - <mxCell id="WgYd2YjfuSUQQR85dr-W-20" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;dfc:ProductBatch&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;dfc:batchNumber&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;dfc:expiryDate&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;dfc:productionDate&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="115" y="920" width="150" height="90" as="geometry"/> - </mxCell> - <mxCell id="WgYd2YjfuSUQQR85dr-W-21" value="vf:lot" style="endArrow=classic;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.25;entryY=0;entryDx=0;entryDy=0;" parent="1" source="2b1bba910c18a604-13" target="WgYd2YjfuSUQQR85dr-W-20" edge="1"> - <mxGeometry width="50" height="50" relative="1" as="geometry"> - <mxPoint x="100" y="960" as="sourcePoint"/> - <mxPoint x="150" y="910" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="WgYd2YjfuSUQQR85dr-W-22" value="vf:triggeredBy" style="endArrow=classic;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=1.007;entryY=0.855;entryDx=0;entryDy=0;entryPerimeter=0;rounded=0;" parent="1" source="2028f4c0cddd94fa-16" target="2028f4c0cddd94fa-16" edge="1"> - <mxGeometry x="-0.2651" y="10" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1940" y="1110" as="sourcePoint"/> - <mxPoint x="1990" y="1060" as="targetPoint"/> - <Array as="points"> - <mxPoint x="1839" y="1100"/> - <mxPoint x="1940" y="1100"/> - <mxPoint x="1940" y="1041"/> - </Array> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="WgYd2YjfuSUQQR85dr-W-23" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:RecipeResource&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:name&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:image&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:unitOfResource&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:unitOfEffect&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:resourceClassifiedAs&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:substitutable&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;skos:note&lt;br&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="390" y="-280" width="190" height="140" as="geometry"/> - </mxCell> - <mxCell id="WgYd2YjfuSUQQR85dr-W-24" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:RecipeProcess&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:name&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;skos:note&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;time:hasDuration&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:durationMultiplier&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:processClassifiedAs&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="1060" y="-138.5" width="171" height="125" as="geometry"/> - </mxCell> - <mxCell id="WgYd2YjfuSUQQR85dr-W-25" value="vf:processConformsTo" style="endArrow=classic;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="WgYd2YjfuSUQQR85dr-W-24" target="36862ffdf416c1f3-1" edge="1"> - <mxGeometry width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1160" y="-40" as="sourcePoint"/> - <mxPoint x="1210" y="-90" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="WgYd2YjfuSUQQR85dr-W-26" value="vf:recipeFlowResource" style="endArrow=classic;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="5" target="WgYd2YjfuSUQQR85dr-W-23" edge="1"> - <mxGeometry width="50" height="50" relative="1" as="geometry"> - <mxPoint x="710" y="-230" as="sourcePoint"/> - <mxPoint x="760" y="-280" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="MzeL6ERTokwWHOy8V-At-18" value="vf:toResourceInventoriedAs" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;entryX=0.994;entryY=0.889;entryDx=0;entryDy=0;entryPerimeter=0;exitX=-0.007;exitY=0.792;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="2028f4c0cddd94fa-16" target="2b1bba910c18a604-13" edge="1"> - <mxGeometry width="100" as="geometry"> - <mxPoint x="1760" y="1032" as="sourcePoint"/> - <mxPoint x="185" y="797" as="targetPoint"/> - <mxPoint x="42" y="21" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="MzeL6ERTokwWHOy8V-At-22" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:ProposedTo&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;br&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="1170" y="90" width="125" height="59" as="geometry"/> - </mxCell> - <mxCell id="MzeL6ERTokwWHOy8V-At-23" value="vf:proposed" style="endArrow=classic;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="MzeL6ERTokwWHOy8V-At-22" target="oJrSKW7QNGFuydV7huNM-23" edge="1"> - <mxGeometry x="-0.7861" y="-8" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="450" y="230" as="sourcePoint"/> - <mxPoint x="500" y="180" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="MzeL6ERTokwWHOy8V-At-24" value="vf:proposedTo" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.75;entryY=0;entryDx=0;entryDy=0;" parent="1" source="MzeL6ERTokwWHOy8V-At-22" target="2b1bba910c18a604-3" edge="1"> - <mxGeometry width="50" height="50" relative="1" as="geometry"> - <mxPoint x="1850" y="130" as="sourcePoint"/> - <mxPoint x="1900" y="80" as="targetPoint"/> - <Array as="points"> - <mxPoint x="2222" y="119"/> - </Array> - </mxGeometry> - </mxCell> - <mxCell id="tgiocElxYbsHrkKaK0dx-18" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:ProposedIntent&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:reciprocal&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="100" y="100" width="150" height="60" as="geometry"/> - </mxCell> - <mxCell id="tgiocElxYbsHrkKaK0dx-19" value="vf:publishedIn" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="tgiocElxYbsHrkKaK0dx-18" target="oJrSKW7QNGFuydV7huNM-23" edge="1"> - <mxGeometry x="0.0498" y="-1" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="108" y="45" as="sourcePoint"/> - <mxPoint x="62" y="40" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="tgiocElxYbsHrkKaK0dx-20" value="vf:publishes" style="endArrow=classic;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="tgiocElxYbsHrkKaK0dx-18" target="15" edge="1"> - <mxGeometry width="50" height="50" relative="1" as="geometry"> - <mxPoint x="8" y="145" as="sourcePoint"/> - <mxPoint x="75.35199999999986" y="167.73000000000002" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="tgiocElxYbsHrkKaK0dx-21" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:Scenario&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:name&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;time:hasBeginning&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;time:hasEnd&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;vf:inScopeOf&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot;&gt;skos:note&lt;br&gt;&lt;/font&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="574" y="231" width="130" height="109" as="geometry"/> - </mxCell> - <mxCell id="tgiocElxYbsHrkKaK0dx-22" value="vf:nestedIn" style="endArrow=classic;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.131;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="2028f4c0cddd94fa-8" target="tgiocElxYbsHrkKaK0dx-21" edge="1"> - <mxGeometry width="50" height="50" relative="1" as="geometry"> - <mxPoint x="610" y="460" as="sourcePoint"/> - <mxPoint x="660" y="410" as="targetPoint"/> - </mxGeometry> - </mxCell> - <mxCell id="tgiocElxYbsHrkKaK0dx-24" value="vf:refinementOf" style="endArrow=block;endFill=1;endSize=6;html=1;strokeColor=#000000;exitX=0.25;exitY=1;entryX=0;entryY=0.75;rounded=0;exitDx=0;exitDy=0;entryDx=0;entryDy=0;" parent="1" source="tgiocElxYbsHrkKaK0dx-21" target="tgiocElxYbsHrkKaK0dx-21" edge="1"> - <mxGeometry x="-6" width="100" as="geometry"> - <mxPoint x="179" y="758.5" as="sourcePoint"/> - <mxPoint x="179" y="720.25" as="targetPoint"/> - <Array as="points"> - <mxPoint x="607" y="360"/> - <mxPoint x="494" y="360"/> - <mxPoint x="494" y="313"/> - </Array> - <mxPoint x="-46" y="24" as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="tgiocElxYbsHrkKaK0dx-25" value="&lt;p style=&quot;margin: 0px ; margin-top: 4px ; text-align: center ; text-decoration: underline&quot;&gt;&lt;font style=&quot;font-size: 13px&quot;&gt;&lt;b&gt;vf:ScenarioDefnition&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;&lt;hr&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;vf:name&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;time:hasDuration&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;skos:note&lt;/p&gt;&lt;p style=&quot;margin: 0px ; margin-left: 8px&quot;&gt;&lt;br&gt;&lt;/p&gt;" style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;fillColor=#ffffff;strokeColor=#000000;" parent="1" vertex="1"> - <mxGeometry x="530" y="-130" width="160" height="97" as="geometry"/> - </mxCell> - <mxCell id="tgiocElxYbsHrkKaK0dx-26" value="vf:definedAs" style="endArrow=classic;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="tgiocElxYbsHrkKaK0dx-21" target="tgiocElxYbsHrkKaK0dx-25" edge="1"> - <mxGeometry x="-0.3067" y="4" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="570" y="180" as="sourcePoint"/> - <mxPoint x="620" y="130" as="targetPoint"/> - <mxPoint as="offset"/> - </mxGeometry> - </mxCell> - <mxCell id="cnMHkILFynIJ7EYlQH1O-18" value="vf:refinementOf" style="endArrow=classic;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="oJrSKW7QNGFuydV7huNM-20" target="tgiocElxYbsHrkKaK0dx-21" edge="1"> - <mxGeometry x="0.1289" y="-7" width="50" height="50" relative="1" as="geometry"> - <mxPoint x="720" y="230" as="sourcePoint"/> - <mxPoint x="770" y="180" as="targetPoint"/> - <mxPoint y="1" as="offset"/> - </mxGeometry> - </mxCell> - </root> - </mxGraphModel> - </diagram> -</mxfile> +<mxfile modified="2019-08-21T20:38:50.916Z" host="www.draw.io" agent="Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0" etag="7pPNzEhAcLJpY5zPNsxf" version="11.1.5" type="google" pages="1"><diagram id="fbe6a5e9-5b10-23b0-562a-0cf294ecc85a" name="Page-1">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</diagram></mxfile>+ \ No newline at end of file