ELK nodes grow to ensure port padding

This commit is contained in:
Alexander Wang 2023-03-05 22:13:36 -08:00
parent a60e952a6b
commit 412f53e229
No known key found for this signature in database
GPG key ID: D89FA31966BDBECE
47 changed files with 2097 additions and 2114 deletions

View file

@ -2,6 +2,8 @@
#### Improvements 🧹 #### Improvements 🧹
- ELK nodes with > 1 connection grow to ensure padding around ports [#981](https://github.com/terrastruct/d2/pull/981)
#### Bugfixes ⛑️ #### Bugfixes ⛑️
- Accept absolute paths again on the CLI. [#979](https://github.com/terrastruct/d2/pull/979) - Accept absolute paths again on the CLI. [#979](https://github.com/terrastruct/d2/pull/979)

View file

@ -94,6 +94,8 @@ var DefaultOpts = ConfigurableOpts{
SelfLoopSpacing: 50.0, SelfLoopSpacing: 50.0,
} }
var port_spacing = 40.
type elkOpts struct { type elkOpts struct {
Thoroughness int `json:"elk.layered.thoroughness,omitempty"` Thoroughness int `json:"elk.layered.thoroughness,omitempty"`
EdgeEdgeBetweenLayersSpacing int `json:"elk.layered.spacing.edgeEdgeBetweenLayers,omitempty"` EdgeEdgeBetweenLayersSpacing int `json:"elk.layered.spacing.edgeEdgeBetweenLayers,omitempty"`
@ -176,6 +178,25 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
} }
walk(g.Root, nil, func(obj, parent *d2graph.Object) { walk(g.Root, nil, func(obj, parent *d2graph.Object) {
incoming := 0.
outgoing := 0.
for _, e := range g.Edges {
if e.Src == obj {
outgoing++
}
if e.Dst == obj {
incoming++
}
}
if incoming >= 2 || outgoing >= 2 {
switch g.Root.Attributes.Direction.Value {
case "right", "left":
obj.Height = math.Max(obj.Height, math.Max(incoming, outgoing)*port_spacing)
default:
obj.Width = math.Max(obj.Width, math.Max(incoming, outgoing)*port_spacing)
}
}
height := obj.Height height := obj.Height
width := obj.Width width := obj.Width
if obj.LabelWidth != nil && obj.LabelHeight != nil { if obj.LabelWidth != nil && obj.LabelHeight != nil {

View file

@ -171,10 +171,10 @@
"id": "there", "id": "there",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 475, "x": 457,
"y": 174 "y": 174
}, },
"width": 83, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -327,11 +327,11 @@
"y": 134 "y": 134
}, },
{ {
"x": 496.25, "x": 487,
"y": 134 "y": 134
}, },
{ {
"x": 496.25, "x": 487,
"y": 174 "y": 174
} }
], ],
@ -415,11 +415,11 @@
"y": 134 "y": 134
}, },
{ {
"x": 537.75, "x": 547,
"y": 134 "y": 134
}, },
{ {
"x": 537.75, "x": 547,
"y": 174 "y": 174
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 331 KiB

After

Width:  |  Height:  |  Size: 331 KiB

View file

@ -8,10 +8,10 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 103, "x": 103,
"y": 64 "y": 75
}, },
"width": 135, "width": 135,
"height": 66, "height": 120,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -49,7 +49,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 390, "x": 390,
"y": 48 "y": 72
}, },
"width": 159, "width": 159,
"height": 66, "height": 66,
@ -90,7 +90,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 368, "x": 368,
"y": 134 "y": 158
}, },
"width": 204, "width": 204,
"height": 66, "height": 66,
@ -134,7 +134,7 @@
"y": 12 "y": 12
}, },
"width": 890, "width": 890,
"height": 310, "height": 358,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -172,10 +172,10 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 746, "x": 746,
"y": 78 "y": 72
}, },
"width": 94, "width": 94,
"height": 66, "height": 120,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -216,7 +216,7 @@
"y": 62 "y": 62
}, },
"width": 120, "width": 120,
"height": 66, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -254,10 +254,10 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1170, "x": 1170,
"y": 95 "y": 99
}, },
"width": 120, "width": 120,
"height": 66, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -295,10 +295,10 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1370, "x": 1370,
"y": 95 "y": 99
}, },
"width": 122, "width": 122,
"height": 66, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -336,7 +336,7 @@
"type": "text", "type": "text",
"pos": { "pos": {
"x": 702, "x": 702,
"y": 164 "y": 212
}, },
"width": 138, "width": 138,
"height": 108, "height": 108,
@ -376,7 +376,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 12, "x": 12,
"y": 150 "y": 215
}, },
"width": 226, "width": 226,
"height": 252, "height": 252,
@ -417,7 +417,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 62, "x": 62,
"y": 200 "y": 265
}, },
"width": 126, "width": 126,
"height": 66, "height": 66,
@ -458,7 +458,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 73, "x": 73,
"y": 286 "y": 351
}, },
"width": 103, "width": 103,
"height": 66, "height": 66,
@ -565,11 +565,11 @@
"route": [ "route": [
{ {
"x": 238, "x": 238,
"y": 81.25 "y": 105
}, },
{ {
"x": 390.5, "x": 390.5,
"y": 81.25 "y": 105
} }
], ],
"animated": false, "animated": false,
@ -605,19 +605,19 @@
"route": [ "route": [
{ {
"x": 238, "x": 238,
"y": 97.75 "y": 135
}, },
{ {
"x": 328, "x": 328,
"y": 97.75 "y": 135
}, },
{ {
"x": 328, "x": 328,
"y": 167.25 "y": 191
}, },
{ {
"x": 368, "x": 368,
"y": 167.25 "y": 191
} }
], ],
"animated": false, "animated": false,
@ -653,27 +653,27 @@
"route": [ "route": [
{ {
"x": 238, "x": 238,
"y": 114.25 "y": 165
}, },
{ {
"x": 278, "x": 278,
"y": 114.25 "y": 165
}, },
{ {
"x": 278, "x": 278,
"y": 210.25 "y": 234
}, },
{ {
"x": 612, "x": 612,
"y": 210.25 "y": 234
}, },
{ {
"x": 612, "x": 612,
"y": 244.875 "y": 280.5
}, },
{ {
"x": 652, "x": 652,
"y": 244.875 "y": 280.5
} }
], ],
"animated": false, "animated": false,
@ -709,11 +709,11 @@
"route": [ "route": [
{ {
"x": 840, "x": 840,
"y": 95 "y": 102
}, },
{ {
"x": 970, "x": 970,
"y": 95 "y": 102
} }
], ],
"animated": false, "animated": false,
@ -749,19 +749,19 @@
"route": [ "route": [
{ {
"x": 840, "x": 840,
"y": 111.5 "y": 132
}, },
{ {
"x": 930, "x": 930,
"y": 111.5 "y": 132
}, },
{ {
"x": 930, "x": 930,
"y": 139 "y": 153
}, },
{ {
"x": 1170, "x": 1170,
"y": 139 "y": 153
} }
], ],
"animated": false, "animated": false,
@ -797,27 +797,27 @@
"route": [ "route": [
{ {
"x": 840, "x": 840,
"y": 128 "y": 162
}, },
{ {
"x": 880, "x": 880,
"y": 128 "y": 162
}, },
{ {
"x": 880, "x": 880,
"y": 171 "y": 189.66666666666669
}, },
{ {
"x": 1330, "x": 1330,
"y": 171 "y": 189.66666666666669
}, },
{ {
"x": 1330, "x": 1330,
"y": 144.5 "y": 159.66666666666669
}, },
{ {
"x": 1370, "x": 1370,
"y": 144.5 "y": 159.66666666666669
} }
], ],
"animated": false, "animated": false,
@ -853,19 +853,19 @@
"route": [ "route": [
{ {
"x": 1090, "x": 1090,
"y": 106 "y": 115.33333333333334
}, },
{ {
"x": 1130, "x": 1130,
"y": 106 "y": 115.33333333333334
}, },
{ {
"x": 1130, "x": 1130,
"y": 117 "y": 126.33333333333334
}, },
{ {
"x": 1170, "x": 1170,
"y": 117 "y": 126.33333333333334
} }
], ],
"animated": false, "animated": false,
@ -901,11 +901,11 @@
"route": [ "route": [
{ {
"x": 1290, "x": 1290,
"y": 128 "y": 139.66666666666669
}, },
{ {
"x": 1370, "x": 1370,
"y": 128 "y": 139.66666666666669
} }
], ],
"animated": false, "animated": false,
@ -941,19 +941,19 @@
"route": [ "route": [
{ {
"x": 1370, "x": 1370,
"y": 111.5 "y": 119.66666666666667
}, },
{ {
"x": 1330, "x": 1330,
"y": 111.5 "y": 119.66666666666667
}, },
{ {
"x": 1330, "x": 1330,
"y": 84 "y": 88.66666666666667
}, },
{ {
"x": 1090, "x": 1090,
"y": 84 "y": 88.66666666666667
} }
], ],
"animated": false, "animated": false,
@ -989,19 +989,19 @@
"route": [ "route": [
{ {
"x": 549.5, "x": 549.5,
"y": 81.25 "y": 105
}, },
{ {
"x": 612, "x": 612,
"y": 81.25 "y": 105
}, },
{ {
"x": 612, "x": 612,
"y": 89.625 "y": 101.5
}, },
{ {
"x": 652, "x": 652,
"y": 89.625 "y": 101.5
} }
], ],
"animated": false, "animated": false,
@ -1037,11 +1037,11 @@
"route": [ "route": [
{ {
"x": 572, "x": 572,
"y": 167.25 "y": 191
}, },
{ {
"x": 652, "x": 652,
"y": 167.25 "y": 191
} }
], ],
"animated": false, "animated": false,

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMinYMin meet" viewBox="0 0 1532 463"><svg id="d2-svg" width="1532" height="463" viewBox="11 -60 1532 463"><rect x="11.000000" y="-60.000000" width="1532.000000" height="463.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[ <?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMinYMin meet" viewBox="0 0 1532 528"><svg id="d2-svg" width="1532" height="528" viewBox="11 -60 1532 528"><rect x="11.000000" y="-60.000000" width="1532.000000" height="528.000000" rx="0.000000" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
.text { .text {
font-family: "font-regular"; font-family: "font-regular";
} }
@ -766,13 +766,13 @@
.md .contains-task-list:dir(rtl) .task-list-item-checkbox { .md .contains-task-list:dir(rtl) .task-list-item-checkbox {
margin: 0 -1.6em 0.25em 0.2em; margin: 0 -1.6em 0.25em 0.2em;
} }
</style><g id="OEM Factory"><g class="shape" ><rect x="103.000000" y="64.000000" width="135.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="170.500000" y="102.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">OEM Factory</text></g><g id="OEM Warehouse"><g class="shape" ><rect x="390.000000" y="48.000000" width="159.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="469.500000" y="86.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">OEM Warehouse</text></g><g id="Distributor Warehouse"><g class="shape" ><rect x="368.000000" y="134.000000" width="204.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="470.000000" y="172.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Distributor Warehouse</text></g><g id="Gos Warehouse"><g class="shape" ><rect x="652.000000" y="12.000000" width="890.000000" height="310.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1097.000000" y="45.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">Gos Warehouse</text></g><g id="Customer Site"><g class="shape" ><rect x="12.000000" y="150.000000" width="226.000000" height="252.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="125.000000" y="183.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">Customer Site</text></g><g id="title"><g class="shape" ></g><text x="776.500000" y="-19.000000" class="text fill-N1" style="text-anchor:middle;font-size:40px">Workflow-I (Warehousing, Installation)</text></g><g id="Gos Warehouse.Master"><g class="shape" ><rect x="746.000000" y="78.000000" width="94.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="793.000000" y="116.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Master</text></g><g id="Gos Warehouse.Regional-1"><g class="shape" ><rect x="970.000000" y="62.000000" width="120.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1030.000000" y="100.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-1</text></g><g id="Gos Warehouse.Regional-2"><g class="shape" ><rect x="1170.000000" y="95.000000" width="120.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1230.000000" y="133.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-2</text></g><g id="Gos Warehouse.Regional-N"><g class="shape" ><rect x="1370.000000" y="95.000000" width="122.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1431.000000" y="133.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-N</text></g><g id="Gos Warehouse.explaination"><g class="shape" ></g><g><foreignObject requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" x="702.000000" y="164.000000" width="138" height="108"><div xmlns="http://www.w3.org/1999/xhtml" class="md"><ul> </style><g id="OEM Factory"><g class="shape" ><rect x="103.000000" y="75.000000" width="135.000000" height="120.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="170.500000" y="140.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">OEM Factory</text></g><g id="OEM Warehouse"><g class="shape" ><rect x="390.000000" y="72.000000" width="159.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="469.500000" y="110.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">OEM Warehouse</text></g><g id="Distributor Warehouse"><g class="shape" ><rect x="368.000000" y="158.000000" width="204.000000" height="66.000000" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="470.000000" y="196.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Distributor Warehouse</text></g><g id="Gos Warehouse"><g class="shape" ><rect x="652.000000" y="12.000000" width="890.000000" height="358.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1097.000000" y="45.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">Gos Warehouse</text></g><g id="Customer Site"><g class="shape" ><rect x="12.000000" y="215.000000" width="226.000000" height="252.000000" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="125.000000" y="248.000000" class="text fill-N1" style="text-anchor:middle;font-size:28px">Customer Site</text></g><g id="title"><g class="shape" ></g><text x="776.500000" y="-19.000000" class="text fill-N1" style="text-anchor:middle;font-size:40px">Workflow-I (Warehousing, Installation)</text></g><g id="Gos Warehouse.Master"><g class="shape" ><rect x="746.000000" y="72.000000" width="94.000000" height="120.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="793.000000" y="137.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Master</text></g><g id="Gos Warehouse.Regional-1"><g class="shape" ><rect x="970.000000" y="62.000000" width="120.000000" height="80.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1030.000000" y="107.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-1</text></g><g id="Gos Warehouse.Regional-2"><g class="shape" ><rect x="1170.000000" y="99.000000" width="120.000000" height="80.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1230.000000" y="144.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-2</text></g><g id="Gos Warehouse.Regional-N"><g class="shape" ><rect x="1370.000000" y="99.000000" width="122.000000" height="80.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1431.000000" y="144.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Regional-N</text></g><g id="Gos Warehouse.explaination"><g class="shape" ></g><g><foreignObject requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" x="702.000000" y="212.000000" width="138" height="108"><div xmlns="http://www.w3.org/1999/xhtml" class="md"><ul>
<li>Asset Tagging</li> <li>Asset Tagging</li>
<li>Inventory</li> <li>Inventory</li>
<li>Staging</li> <li>Staging</li>
<li>Dispatch to Site</li> <li>Dispatch to Site</li>
</ul> </ul>
</div></foreignObject></g></g><g id="Customer Site.Installation"><g class="shape" ><rect x="62.000000" y="200.000000" width="126.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="125.000000" y="238.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Installation</text></g><g id="Customer Site.Support"><g class="shape" ><rect x="73.000000" y="286.000000" width="103.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="124.500000" y="324.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Support</text></g><g id="(OEM Factory -&gt; OEM Warehouse)[0]"><marker id="mk-3488378134" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 240.000000 81.250000 L 386.500000 81.250000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="(OEM Factory -&gt; Distributor Warehouse)[0]"><path d="M 240.000000 97.750000 L 318.000000 97.750000 S 328.000000 97.750000 328.000000 107.750000 L 328.000000 157.250000 S 328.000000 167.250000 338.000000 167.250000 L 364.000000 167.250000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="(OEM Factory -&gt; Gos Warehouse)[0]"><path d="M 240.000000 114.250000 L 268.000000 114.250000 S 278.000000 114.250000 278.000000 124.250000 L 278.000000 200.250000 S 278.000000 210.250000 288.000000 210.250000 L 602.000000 210.250000 S 612.000000 210.250000 612.000000 220.250000 L 612.000000 234.875000 S 612.000000 244.875000 622.000000 244.875000 L 648.000000 244.875000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Master -&gt; Regional-1)[0]"><path d="M 842.000000 95.000000 L 966.000000 95.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Master -&gt; Regional-2)[0]"><path d="M 842.000000 111.500000 L 920.000000 111.500000 S 930.000000 111.500000 930.000000 121.500000 L 930.000000 129.000000 S 930.000000 139.000000 940.000000 139.000000 L 1166.000000 139.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Master -&gt; Regional-N)[0]"><path d="M 842.000000 128.000000 L 870.000000 128.000000 S 880.000000 128.000000 880.000000 138.000000 L 880.000000 161.000000 S 880.000000 171.000000 890.000000 171.000000 L 1320.000000 171.000000 S 1330.000000 171.000000 1330.000000 161.000000 L 1330.000000 154.500000 S 1330.000000 144.500000 1340.000000 144.500000 L 1366.000000 144.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Regional-1 -&gt; Regional-2)[0]"><path d="M 1092.000000 106.000000 L 1124.500000 106.000000 C 1135.500000 106.000000 1124.500000 117.000000 1135.500000 117.000000 L 1166.000000 117.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Regional-2 -&gt; Regional-N)[0]"><path d="M 1292.000000 128.000000 L 1366.000000 128.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="Gos Warehouse.(Regional-N -&gt; Regional-1)[0]"><path d="M 1368.000000 111.500000 L 1340.000000 111.500000 S 1330.000000 111.500000 1330.000000 101.500000 L 1330.000000 94.000000 S 1330.000000 84.000000 1320.000000 84.000000 L 1094.000000 84.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="(OEM Warehouse -&gt; Gos Warehouse)[0]"><path d="M 551.500000 81.250000 L 607.812500 81.250000 C 616.187500 81.250000 607.812500 89.625000 616.187500 89.625000 L 648.000000 89.625000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><g id="(Distributor Warehouse -&gt; Gos Warehouse)[0]"><path d="M 574.000000 167.250000 L 648.000000 167.250000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#2338137157)" /></g><mask id="2338137157" maskUnits="userSpaceOnUse" x="11" y="-60" width="1532" height="463"> </div></foreignObject></g></g><g id="Customer Site.Installation"><g class="shape" ><rect x="62.000000" y="265.000000" width="126.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="125.000000" y="303.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Installation</text></g><g id="Customer Site.Support"><g class="shape" ><rect x="73.000000" y="351.000000" width="103.000000" height="66.000000" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="124.500000" y="389.500000" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">Support</text></g><g id="(OEM Factory -&gt; OEM Warehouse)[0]"><marker id="mk-3488378134" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 240.000000 105.000000 L 386.500000 105.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="(OEM Factory -&gt; Distributor Warehouse)[0]"><path d="M 240.000000 135.000000 L 318.000000 135.000000 S 328.000000 135.000000 328.000000 145.000000 L 328.000000 181.000000 S 328.000000 191.000000 338.000000 191.000000 L 364.000000 191.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="(OEM Factory -&gt; Gos Warehouse)[0]"><path d="M 240.000000 165.000000 L 268.000000 165.000000 S 278.000000 165.000000 278.000000 175.000000 L 278.000000 224.000000 S 278.000000 234.000000 288.000000 234.000000 L 602.000000 234.000000 S 612.000000 234.000000 612.000000 244.000000 L 612.000000 270.500000 S 612.000000 280.500000 622.000000 280.500000 L 648.000000 280.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Master -&gt; Regional-1)[0]"><path d="M 842.000000 102.000000 L 966.000000 102.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Master -&gt; Regional-2)[0]"><path d="M 842.000000 132.000000 L 920.000000 132.000000 S 930.000000 132.000000 930.000000 142.000000 L 930.000000 143.000000 S 930.000000 153.000000 940.000000 153.000000 L 1166.000000 153.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Master -&gt; Regional-N)[0]"><path d="M 842.000000 162.000000 L 870.000000 162.000000 S 880.000000 162.000000 880.000000 172.000000 L 880.000000 179.666667 S 880.000000 189.666667 890.000000 189.666667 L 1320.000000 189.666667 S 1330.000000 189.666667 1330.000000 179.666667 L 1330.000000 169.666667 S 1330.000000 159.666667 1340.000000 159.666667 L 1366.000000 159.666667" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Regional-1 -&gt; Regional-2)[0]"><path d="M 1092.000000 115.333333 L 1124.500000 115.333333 C 1135.500000 115.333333 1124.500000 126.333333 1135.500000 126.333333 L 1166.000000 126.333333" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Regional-2 -&gt; Regional-N)[0]"><path d="M 1292.000000 139.666667 L 1366.000000 139.666667" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="Gos Warehouse.(Regional-N -&gt; Regional-1)[0]"><path d="M 1368.000000 119.666667 L 1340.000000 119.666667 S 1330.000000 119.666667 1330.000000 109.666667 L 1330.000000 98.666667 S 1330.000000 88.666667 1320.000000 88.666667 L 1094.000000 88.666667" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="(OEM Warehouse -&gt; Gos Warehouse)[0]"><path d="M 551.500000 105.000000 L 610.250000 105.000000 C 613.750000 105.000000 610.250000 101.500000 613.750000 101.500000 L 648.000000 101.500000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><g id="(Distributor Warehouse -&gt; Gos Warehouse)[0]"><path d="M 574.000000 191.000000 L 648.000000 191.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1454531620)" /></g><mask id="1454531620" maskUnits="userSpaceOnUse" x="11" y="-60" width="1532" height="528">
<rect x="11" y="-60" width="1532" height="463" fill="white"></rect> <rect x="11" y="-60" width="1532" height="528" fill="white"></rect>
</mask></svg></svg> </mask></svg></svg>

Before

Width:  |  Height:  |  Size: 670 KiB

After

Width:  |  Height:  |  Size: 670 KiB

View file

@ -7,10 +7,10 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 20, "x": 58,
"y": 12 "y": 12
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -155,9 +155,17 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 38.5, "x": 84.83333333333333,
"y": 78 "y": 78
}, },
{
"x": 84.83333333333333,
"y": 118
},
{
"x": 38.5,
"y": 118
},
{ {
"x": 38.5, "x": 38.5,
"y": 158 "y": 158
@ -194,17 +202,9 @@
"labelPosition": "", "labelPosition": "",
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{
"x": 56.16666666666667,
"y": 78
},
{
"x": 56.16666666666667,
"y": 118
},
{ {
"x": 111.5, "x": 111.5,
"y": 118 "y": 78
}, },
{ {
"x": 111.5, "x": 111.5,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 329 KiB

After

Width:  |  Height:  |  Size: 329 KiB

View file

@ -294,10 +294,10 @@
"id": "Insomnia", "id": "Insomnia",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 635, "x": 630,
"y": 12 "y": 12
}, },
"width": 110, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -733,11 +733,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 662.5, "x": 660,
"y": 78 "y": 78
}, },
{ {
"x": 662.5, "x": 660,
"y": 118 "y": 118
}, },
{ {
@ -821,11 +821,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 717.5, "x": 720,
"y": 78 "y": 78
}, },
{ {
"x": 717.5, "x": 720,
"y": 118 "y": 118
}, },
{ {

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 479 KiB

After

Width:  |  Height:  |  Size: 479 KiB

View file

@ -7,10 +7,10 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 93, "x": 73,
"y": 12 "y": 12
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -48,10 +48,10 @@
"id": "b", "id": "b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 88, "x": 66,
"y": 544 "y": 544
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -89,10 +89,10 @@
"id": "c", "id": "c",
"type": "document", "type": "document",
"pos": { "pos": {
"x": 97, "x": 79,
"y": 388 "y": 388
}, },
"width": 53, "width": 80,
"height": 76, "height": 76,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -195,11 +195,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 106.5, "x": 93,
"y": 78 "y": 78
}, },
{ {
"x": 106.5, "x": 93,
"y": 118 "y": 118
}, },
{ {
@ -211,11 +211,11 @@
"y": 504 "y": 504
}, },
{ {
"x": 106.5, "x": 93,
"y": 504 "y": 504
}, },
{ {
"x": 106.5, "x": 93,
"y": 544 "y": 544
} }
], ],
@ -251,11 +251,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 124, "x": 120,
"y": 453 "y": 453
}, },
{ {
"x": 124.16666666666666, "x": 119.66666666666666,
"y": 544 "y": 544
} }
], ],
@ -291,11 +291,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 119.75, "x": 113,
"y": 78 "y": 78
}, },
{ {
"x": 119.75, "x": 113,
"y": 168 "y": 168
}, },
{ {
@ -387,11 +387,11 @@
"y": 348 "y": 348
}, },
{ {
"x": 115.33333333333333, "x": 106.33333333333333,
"y": 348 "y": 348
}, },
{ {
"x": 115, "x": 106,
"y": 388 "y": 388
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 475 KiB

After

Width:  |  Height:  |  Size: 475 KiB

View file

@ -7,10 +7,10 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 38, "x": 463,
"y": 12 "y": 12
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -48,10 +48,10 @@
"id": "b", "id": "b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 29, "x": 183,
"y": 158 "y": 158
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -89,10 +89,10 @@
"id": "c", "id": "c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 312, "x": 476,
"y": 158 "y": 158
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -130,10 +130,10 @@
"id": "d", "id": "d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 20, "x": 56,
"y": 304 "y": 304
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -171,10 +171,10 @@
"id": "e", "id": "e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 161, "x": 197,
"y": 304 "y": 304
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -212,10 +212,10 @@
"id": "f", "id": "f",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 304, "x": 341,
"y": 304 "y": 304
}, },
"width": 51, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -253,10 +253,10 @@
"id": "g", "id": "g",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 451, "x": 489,
"y": 304 "y": 304
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -647,11 +647,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 56.33333333333333, "x": 489.6666666666667,
"y": 78 "y": 78
}, },
{ {
"x": 56.33333333333333, "x": 489.6666666666667,
"y": 118
},
{
"x": 223.83333333333331,
"y": 118
},
{
"x": 223.83333333333331,
"y": 158 "y": 158
} }
], ],
@ -687,19 +695,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 74, "x": 516.3333333333334,
"y": 78 "y": 78
}, },
{ {
"x": 74, "x": 516.3333333333334,
"y": 118
},
{
"x": 338.8333333333333,
"y": 118
},
{
"x": 338.8333333333333,
"y": 158 "y": 158
} }
], ],
@ -735,11 +735,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 47.5, "x": 210.49999999999997,
"y": 224 "y": 224
}, },
{ {
"x": 47.5, "x": 210.49999999999997,
"y": 264
},
{
"x": 96.16666666666669,
"y": 264
},
{
"x": 96.16666666666669,
"y": 304 "y": 304
} }
], ],
@ -775,19 +783,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 65.16666666666667, "x": 237.16666666666666,
"y": 224 "y": 224
}, },
{ {
"x": 65.16666666666667, "x": 237.16666666666663,
"y": 264
},
{
"x": 187.83333333333334,
"y": 264
},
{
"x": 187.83333333333334,
"y": 304 "y": 304
} }
], ],
@ -823,11 +823,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 330, "x": 503,
"y": 224 "y": 224
}, },
{ {
"x": 330, "x": 503,
"y": 264
},
{
"x": 381.16666666666663,
"y": 264
},
{
"x": 381.16666666666663,
"y": 304 "y": 304
} }
], ],
@ -863,19 +871,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 347.66666666666663, "x": 529.6666666666666,
"y": 224 "y": 224
}, },
{ {
"x": 347.66666666666663, "x": 529.6666666666666,
"y": 264
},
{
"x": 478.5,
"y": 264
},
{
"x": 478.5,
"y": 304 "y": 304
} }
], ],
@ -911,9 +911,17 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 38.5, "x": 82.83333333333337,
"y": 370 "y": 370
}, },
{
"x": 82.83333333333337,
"y": 410
},
{
"x": 38.5,
"y": 410
},
{ {
"x": 38.5, "x": 38.5,
"y": 450 "y": 450
@ -950,17 +958,9 @@
"labelPosition": "", "labelPosition": "",
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{
"x": 56.5,
"y": 370
},
{
"x": 56.5,
"y": 410
},
{ {
"x": 109.5, "x": 109.5,
"y": 410 "y": 370
}, },
{ {
"x": 109.5, "x": 109.5,
@ -999,9 +999,17 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 179, "x": 223.8333333333333,
"y": 370 "y": 370
}, },
{
"x": 223.8333333333333,
"y": 410
},
{
"x": 179,
"y": 410
},
{ {
"x": 179, "x": 179,
"y": 450 "y": 450
@ -1039,17 +1047,9 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 196.66666666666669, "x": 250.49999999999997,
"y": 370 "y": 370
}, },
{
"x": 196.66666666666669,
"y": 410
},
{
"x": 250.5,
"y": 410
},
{ {
"x": 250.5, "x": 250.5,
"y": 450 "y": 450
@ -1087,9 +1087,17 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 321.5, "x": 367.8333333333333,
"y": 370 "y": 370
}, },
{
"x": 367.8333333333333,
"y": 410
},
{
"x": 321.5,
"y": 410
},
{ {
"x": 321.5, "x": 321.5,
"y": 450 "y": 450
@ -1126,17 +1134,9 @@
"labelPosition": "", "labelPosition": "",
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{
"x": 338.5,
"y": 370
},
{
"x": 338.5,
"y": 410
},
{ {
"x": 394.5, "x": 394.5,
"y": 410 "y": 370
}, },
{ {
"x": 394.5, "x": 394.5,
@ -1175,9 +1175,17 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 469.5, "x": 516.3333333333334,
"y": 370 "y": 370
}, },
{
"x": 516.3333333333334,
"y": 410
},
{
"x": 469.5,
"y": 410
},
{ {
"x": 469.5, "x": 469.5,
"y": 450 "y": 450
@ -1214,17 +1222,9 @@
"labelPosition": "", "labelPosition": "",
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{
"x": 487.5,
"y": 370
},
{
"x": 487.5,
"y": 410
},
{ {
"x": 543, "x": 543,
"y": 410 "y": 370
}, },
{ {
"x": 543, "x": 543,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -11,7 +11,7 @@
"y": 12 "y": 12
}, },
"width": 694, "width": 694,
"height": 1962, "height": 1812,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -49,7 +49,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 62, "x": 62,
"y": 762 "y": 612
}, },
"width": 548, "width": 548,
"height": 1067, "height": 1067,
@ -90,7 +90,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 256, "x": 256,
"y": 1089 "y": 939
}, },
"width": 304, "width": 304,
"height": 690, "height": 690,
@ -131,7 +131,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 306, "x": 306,
"y": 1139 "y": 989
}, },
"width": 193, "width": 193,
"height": 166, "height": 166,
@ -172,7 +172,7 @@
"type": "text", "type": "text",
"pos": { "pos": {
"x": 356, "x": 356,
"y": 1234 "y": 1084
}, },
"width": 16, "width": 16,
"height": 21, "height": 21,
@ -212,7 +212,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 392, "x": 392,
"y": 1189 "y": 1039
}, },
"width": 57, "width": 57,
"height": 66, "height": 66,
@ -252,10 +252,10 @@
"id": "aa.bb.cc.gg", "id": "aa.bb.cc.gg",
"type": "text", "type": "text",
"pos": { "pos": {
"x": 358, "x": 337,
"y": 1481 "y": 1331
}, },
"width": 17, "width": 80,
"height": 21, "height": 21,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -292,8 +292,8 @@
"id": "aa.bb.cc.hh", "id": "aa.bb.cc.hh",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 335, "x": 345,
"y": 1663 "y": 1513
}, },
"width": 63, "width": 63,
"height": 66, "height": 66,
@ -334,7 +334,7 @@
"type": "package", "type": "package",
"pos": { "pos": {
"x": 112, "x": 112,
"y": 812 "y": 662
}, },
"width": 150, "width": 150,
"height": 192, "height": 192,
@ -375,7 +375,7 @@
"type": "diamond", "type": "diamond",
"pos": { "pos": {
"x": 162, "x": 162,
"y": 862 "y": 712
}, },
"width": 50, "width": 50,
"height": 92, "height": 92,
@ -416,7 +416,7 @@
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 282, "x": 282,
"y": 871 "y": 721
}, },
"width": 74, "width": 74,
"height": 74, "height": 74,
@ -457,9 +457,9 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 395, "x": 395,
"y": 360 "y": 260
}, },
"width": 54, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -497,10 +497,10 @@
"id": "aa.mm", "id": "aa.mm",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 297, "x": 270,
"y": 62 "y": 62
}, },
"width": 71, "width": 160,
"height": 118, "height": 118,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -538,7 +538,7 @@
"id": "aa.nn", "id": "aa.nn",
"type": "text", "type": "text",
"pos": { "pos": {
"x": 388, "x": 450,
"y": 110 "y": 110
}, },
"width": 16, "width": 16,
@ -578,7 +578,7 @@
"id": "aa.oo", "id": "aa.oo",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 424, "x": 486,
"y": 88 "y": 88
}, },
"width": 63, "width": 63,
@ -645,11 +645,11 @@
"route": [ "route": [
{ {
"x": 364, "x": 364,
"y": 1255 "y": 1105
}, },
{ {
"x": 364, "x": 364,
"y": 1481 "y": 1331
} }
], ],
"animated": false, "animated": false,
@ -684,12 +684,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 366.83333333333337, "x": 377.3333333333333,
"y": 1502 "y": 1352
}, },
{ {
"x": 366.8333333333333, "x": 377.3333333333333,
"y": 1663 "y": 1513
} }
], ],
"animated": false, "animated": false,
@ -725,19 +725,19 @@
"route": [ "route": [
{ {
"x": 212, "x": 212,
"y": 1004 "y": 854
}, },
{ {
"x": 212, "x": 212,
"y": 1044 "y": 894
}, },
{ {
"x": 356, "x": 356,
"y": 1044 "y": 894
}, },
{ {
"x": 356, "x": 356,
"y": 1139 "y": 989
} }
], ],
"animated": false, "animated": false,
@ -772,20 +772,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 405.8, "x": 419,
"y": 426 "y": 326
}, },
{ {
"x": 405.8, "x": 419,
"y": 667 "y": 517
}, },
{ {
"x": 376, "x": 376,
"y": 667 "y": 517
}, },
{ {
"x": 376, "x": 376,
"y": 762 "y": 612
} }
], ],
"animated": false, "animated": false,
@ -820,20 +820,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 340, "x": 366,
"y": 180 "y": 180
}, },
{
"x": 340.4,
"y": 270
},
{ {
"x": 366, "x": 366,
"y": 270 "y": 939
},
{
"x": 366,
"y": 1089
} }
], ],
"animated": false, "animated": false,
@ -868,20 +860,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 355, "x": 398,
"y": 176 "y": 176
}, },
{ {
"x": 354.6, "x": 398,
"y": 220 "y": 220
}, },
{ {
"x": 422, "x": 455,
"y": 220 "y": 220
}, },
{ {
"x": 422, "x": 455,
"y": 360 "y": 260
} }
], ],
"animated": false, "animated": false,
@ -916,28 +908,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 326, "x": 334,
"y": 180 "y": 180
}, },
{ {
"x": 326.2, "x": 334,
"y": 320 "y": 567
},
{
"x": 339,
"y": 320
},
{
"x": 339,
"y": 717
}, },
{ {
"x": 197, "x": 197,
"y": 717 "y": 567
}, },
{ {
"x": 197, "x": 197,
"y": 762 "y": 612
} }
], ],
"animated": false, "animated": false,
@ -972,36 +956,28 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 416.6, "x": 443,
"y": 426 "y": 326
}, },
{ {
"x": 416.6, "x": 443,
"y": 566 "y": 517
},
{
"x": 425.3,
"y": 566
},
{
"x": 425.3,
"y": 667
}, },
{ {
"x": 509, "x": 509,
"y": 667 "y": 517
}, },
{ {
"x": 509, "x": 509,
"y": 1441 "y": 1291
}, },
{ {
"x": 369.6666666666667, "x": 390.6666666666667,
"y": 1441 "y": 1291
}, },
{ {
"x": 369.6666666666667, "x": 390.6666666666667,
"y": 1481 "y": 1331
} }
], ],
"animated": false, "animated": false,
@ -1036,20 +1012,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 312, "x": 302,
"y": 176 "y": 176
}, },
{ {
"x": 312, "x": 302,
"y": 667 "y": 517
}, },
{ {
"x": 187, "x": 187,
"y": 667 "y": 517
}, },
{ {
"x": 187, "x": 187,
"y": 812 "y": 662
} }
], ],
"animated": false, "animated": false,
@ -1085,27 +1061,27 @@
"route": [ "route": [
{ {
"x": 306, "x": 306,
"y": 1779 "y": 1629
}, },
{ {
"x": 306, "x": 306,
"y": 1874 "y": 1724
}, },
{ {
"x": 620, "x": 620,
"y": 1874 "y": 1724
}, },
{ {
"x": 620, "x": 620,
"y": 516 "y": 416
}, },
{ {
"x": 427.4, "x": 467,
"y": 516 "y": 416
}, },
{ {
"x": 427.4, "x": 467,
"y": 426 "y": 326
} }
], ],
"animated": false, "animated": false,
@ -1141,27 +1117,27 @@
"route": [ "route": [
{ {
"x": 162, "x": 162,
"y": 1004 "y": 854
}, },
{ {
"x": 162, "x": 162,
"y": 1924 "y": 1774
}, },
{ {
"x": 647, "x": 647,
"y": 1924 "y": 1774
}, },
{ {
"x": 647, "x": 647,
"y": 466 "y": 366
}, },
{ {
"x": 438.2, "x": 491,
"y": 466 "y": 366
}, },
{ {
"x": 438.2, "x": 491,
"y": 426 "y": 326
} }
], ],
"animated": false, "animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 815 KiB

After

Width:  |  Height:  |  Size: 815 KiB

View file

@ -7,7 +7,7 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 12, "x": 21,
"y": 12 "y": 12
}, },
"width": 53, "width": 53,
@ -49,9 +49,9 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 12, "x": 12,
"y": 148 "y": 158
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -89,8 +89,8 @@
"id": "c", "id": "c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 12, "x": 21,
"y": 284 "y": 304
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -155,12 +155,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 29.666666666666668, "x": 38.66666666666667,
"y": 78 "y": 78
}, },
{ {
"x": 29.666666666666668, "x": 38.66666666666667,
"y": 148 "y": 158
} }
], ],
"animated": false, "animated": false,
@ -195,12 +195,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 29.666666666666668, "x": 38.66666666666667,
"y": 214 "y": 224
}, },
{ {
"x": 29.666666666666668, "x": 38.66666666666667,
"y": 284 "y": 304
} }
], ],
"animated": false, "animated": false,
@ -235,12 +235,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 47.333333333333336, "x": 56.333333333333336,
"y": 284 "y": 304
}, },
{ {
"x": 47.333333333333336, "x": 56.333333333333336,
"y": 214 "y": 264
},
{
"x": 65.33333333333334,
"y": 264
},
{
"x": 65.33333333333334,
"y": 224
} }
], ],
"animated": false, "animated": false,
@ -275,11 +283,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 47.333333333333336, "x": 65.33333333333334,
"y": 148 "y": 158
}, },
{ {
"x": 47.333333333333336, "x": 65.33333333333334,
"y": 118
},
{
"x": 56.333333333333336,
"y": 118
},
{
"x": 56.333333333333336,
"y": 78 "y": 78
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 329 KiB

After

Width:  |  Height:  |  Size: 329 KiB

View file

@ -7,7 +7,7 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 313, "x": 359,
"y": 208 "y": 208
}, },
"width": 53, "width": 53,
@ -48,10 +48,10 @@
"id": "b", "id": "b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 313, "x": 245,
"y": 354 "y": 354
}, },
"width": 53, "width": 280,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -89,7 +89,7 @@
"id": "c", "id": "c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 240, "x": 286,
"y": 208 "y": 208
}, },
"width": 53, "width": 53,
@ -130,10 +130,10 @@
"id": "d", "id": "d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 258, "x": 318,
"y": 700 "y": 700
}, },
"width": 54, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -171,10 +171,10 @@
"id": "e", "id": "e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 236, "x": 277,
"y": 1192 "y": 1192
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -212,10 +212,10 @@
"id": "f", "id": "f",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 89, "x": 70,
"y": 946 "y": 946
}, },
"width": 51, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -253,7 +253,7 @@
"id": "g", "id": "g",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 96, "x": 97,
"y": 700 "y": 700
}, },
"width": 54, "width": 54,
@ -335,10 +335,10 @@
"id": "i", "id": "i",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 157, "x": 144,
"y": 1338 "y": 1338
}, },
"width": 49, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -376,10 +376,10 @@
"id": "j", "id": "j",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 339, "x": 362,
"y": 12 "y": 12
}, },
"width": 50, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -417,7 +417,7 @@
"id": "k", "id": "k",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 155, "x": 157,
"y": 1474 "y": 1474
}, },
"width": 53, "width": 53,
@ -458,10 +458,10 @@
"id": "l", "id": "l",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 274, "x": 348,
"y": 946 "y": 946
}, },
"width": 49, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -499,10 +499,10 @@
"id": "m", "id": "m",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 170, "x": 171,
"y": 700 "y": 700
}, },
"width": 57, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -540,10 +540,10 @@
"id": "n", "id": "n",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 163, "x": 137,
"y": 1192 "y": 1192
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -581,7 +581,7 @@
"id": "o", "id": "o",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 332, "x": 458,
"y": 700 "y": 700
}, },
"width": 54, "width": 54,
@ -622,7 +622,7 @@
"id": "p", "id": "p",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 406, "x": 532,
"y": 700 "y": 700
}, },
"width": 53, "width": 53,
@ -663,7 +663,7 @@
"id": "q", "id": "q",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 235, "x": 310,
"y": 1338 "y": 1338
}, },
"width": 54, "width": 54,
@ -729,11 +729,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 340.07142857142856, "x": 385.6666666666667,
"y": 274 "y": 274
}, },
{ {
"x": 340.07142857142856, "x": 385.6666666666667,
"y": 354 "y": 354
} }
], ],
@ -769,19 +769,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 267.07142857142856, "x": 312.6666666666667,
"y": 274 "y": 274
}, },
{ {
"x": 267.07142857142856, "x": 312.6666666666667,
"y": 314 "y": 314
}, },
{ {
"x": 326.82142857142856, "x": 315.6666666666667,
"y": 314 "y": 314
}, },
{ {
"x": 326.82142857142856, "x": 315.6666666666667,
"y": 354 "y": 354
} }
], ],
@ -817,19 +817,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 285, "x": 378.6666666666667,
"y": 766 "y": 766
}, },
{ {
"x": 285, "x": 378.6666666666667,
"y": 856 "y": 856
}, },
{ {
"x": 263, "x": 337.6666666666667,
"y": 856 "y": 856
}, },
{ {
"x": 263, "x": 337.6666666666667,
"y": 1192 "y": 1192
} }
], ],
@ -865,19 +865,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 123.99999999999997, "x": 124.00000000000003,
"y": 1012 "y": 1012
}, },
{ {
"x": 123.99999999999997, "x": 124.00000000000003,
"y": 1102 "y": 1102
}, },
{ {
"x": 249.74999999999997, "x": 307.6666666666667,
"y": 1102 "y": 1102
}, },
{ {
"x": 249.74999999999997, "x": 307.6666666666667,
"y": 1192 "y": 1192
} }
], ],
@ -913,27 +913,27 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 336.2857142857143, "x": 365.6666666666667,
"y": 420 "y": 420
}, },
{ {
"x": 336.2857142857143, "x": 365.6666666666667,
"y": 560 "y": 560
}, },
{ {
"x": 85.99999999999997, "x": 86,
"y": 560 "y": 560
}, },
{ {
"x": 85.99999999999997, "x": 86,
"y": 806 "y": 806
}, },
{ {
"x": 106.99999999999997, "x": 97.33333333333337,
"y": 806 "y": 806
}, },
{ {
"x": 106.99999999999997, "x": 97.33333333333337,
"y": 946 "y": 946
} }
], ],
@ -969,19 +969,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 343.85714285714283, "x": 405.6666666666667,
"y": 420 "y": 420
}, },
{ {
"x": 343.85714285714283, "x": 405.6666666666667,
"y": 610 "y": 610
}, },
{ {
"x": 123.99999999999997, "x": 124,
"y": 610 "y": 610
}, },
{ {
"x": 123.99999999999997, "x": 124,
"y": 700 "y": 700
} }
], ],
@ -1017,11 +1017,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 123.99999999999997, "x": 124,
"y": 766 "y": 766
}, },
{ {
"x": 123.99999999999997, "x": 124.00000000000003,
"y": 946 "y": 946
} }
], ],
@ -1057,11 +1057,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 328.7142857142857, "x": 325.6666666666667,
"y": 420 "y": 420
}, },
{ {
"x": 328.7142857142857, "x": 325.6666666666667,
"y": 510 "y": 510
}, },
{ {
@ -1105,11 +1105,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 321.1428571428571, "x": 285.6666666666667,
"y": 420 "y": 420
}, },
{ {
"x": 321.1428571428571, "x": 285.6666666666667,
"y": 460 "y": 460
}, },
{ {
@ -1121,11 +1121,11 @@
"y": 1298 "y": 1298
}, },
{ {
"x": 173.66666666666666, "x": 171,
"y": 1298 "y": 1298
}, },
{ {
"x": 173.66666666666666, "x": 171,
"y": 1338 "y": 1338
} }
], ],
@ -1161,19 +1161,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 351.4285714285714, "x": 445.6666666666667,
"y": 420 "y": 420
}, },
{ {
"x": 351.4285714285714, "x": 445.6666666666667,
"y": 660 "y": 660
}, },
{ {
"x": 285, "x": 378.6666666666667,
"y": 660 "y": 660
}, },
{ {
"x": 285, "x": 378.6666666666667,
"y": 700 "y": 700
} }
], ],
@ -1209,19 +1209,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 351.57142857142856, "x": 382.1666666666667,
"y": 78 "y": 78
}, },
{ {
"x": 351.57142857142856, "x": 382.1666666666667,
"y": 118 "y": 118
}, },
{ {
"x": 267.07142857142856, "x": 312.6666666666667,
"y": 118 "y": 118
}, },
{ {
"x": 267.07142857142856, "x": 312.6666666666667,
"y": 208 "y": 208
} }
], ],
@ -1257,19 +1257,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 364.07142857142856, "x": 402.1666666666667,
"y": 78 "y": 78
}, },
{ {
"x": 364.07142857142856, "x": 402.1666666666667,
"y": 168 "y": 168
}, },
{ {
"x": 340.07142857142856, "x": 385.6666666666667,
"y": 168 "y": 168
}, },
{ {
"x": 340.07142857142856, "x": 385.6666666666667,
"y": 208 "y": 208
} }
], ],
@ -1305,19 +1305,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 353.32142857142856, "x": 455.6666666666667,
"y": 354 "y": 354
}, },
{ {
"x": 353.32142857142856, "x": 455.6666666666667,
"y": 314 "y": 314
}, },
{ {
"x": 376.57142857142856, "x": 422.1666666666667,
"y": 314 "y": 314
}, },
{ {
"x": 376.57142857142856, "x": 422.1666666666667,
"y": 78 "y": 78
} }
], ],
@ -1353,11 +1353,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 181.83333333333331, "x": 184.33333333333334,
"y": 1404 "y": 1404
}, },
{ {
"x": 181.83333333333331, "x": 184.33333333333334,
"y": 1474 "y": 1474
} }
], ],
@ -1393,11 +1393,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 298.5, "x": 408.6666666666667,
"y": 766 "y": 766
}, },
{ {
"x": 298.5, "x": 408.6666666666667,
"y": 946 "y": 946
} }
], ],
@ -1433,19 +1433,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 298.5, "x": 408.6666666666667,
"y": 1012 "y": 1012
}, },
{ {
"x": 298.5, "x": 408.6666666666667,
"y": 1102 "y": 1052
}, },
{ {
"x": 276.25, "x": 367.6666666666667,
"y": 1102 "y": 1052
}, },
{ {
"x": 276.25, "x": 367.6666666666667,
"y": 1192 "y": 1192
} }
], ],
@ -1481,19 +1481,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 208.99999999999997, "x": 224.33333333333334,
"y": 766 "y": 766
}, },
{ {
"x": 208.99999999999997, "x": 224.33333333333334,
"y": 906 "y": 906
}, },
{ {
"x": 286.25, "x": 378.6666666666667,
"y": 906 "y": 906
}, },
{ {
"x": 286.25, "x": 378.6666666666667,
"y": 946 "y": 946
} }
], ],
@ -1529,11 +1529,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 189.99999999999997, "x": 197.66666666666666,
"y": 766 "y": 766
}, },
{ {
"x": 189.99999999999997, "x": 197.66666666666669,
"y": 1192 "y": 1192
} }
], ],
@ -1569,11 +1569,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 189.99999999999997, "x": 197.66666666666669,
"y": 1258 "y": 1258
}, },
{ {
"x": 189.99999999999997, "x": 197.66666666666669,
"y": 1338 "y": 1338
} }
], ],
@ -1609,27 +1609,27 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 271.5, "x": 348.6666666666667,
"y": 766 "y": 766
}, },
{ {
"x": 271.5, "x": 348.6666666666667,
"y": 806 "y": 806
}, },
{ {
"x": 251.99999999999997, "x": 326.6666666666667,
"y": 806 "y": 806
}, },
{ {
"x": 251.99999999999997, "x": 326.6666666666667,
"y": 1052 "y": 1052
}, },
{ {
"x": 203.24999999999997, "x": 227.66666666666669,
"y": 1052 "y": 1052
}, },
{ {
"x": 203.24999999999997, "x": 227.66666666666669,
"y": 1192 "y": 1192
} }
], ],
@ -1665,19 +1665,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 106.99999999999997, "x": 97.33333333333337,
"y": 1012 "y": 1012
}, },
{ {
"x": 106.99999999999997, "x": 97.33333333333337,
"y": 1152 "y": 1152
}, },
{ {
"x": 176.74999999999997, "x": 167.66666666666669,
"y": 1152 "y": 1152
}, },
{ {
"x": 176.74999999999997, "x": 167.66666666666669,
"y": 1192 "y": 1192
} }
], ],
@ -1713,11 +1713,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 359, "x": 485.6666666666667,
"y": 420 "y": 420
}, },
{ {
"x": 359, "x": 485.6666666666667,
"y": 700 "y": 700
} }
], ],
@ -1753,19 +1753,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 432.5, "x": 559.1666666666667,
"y": 766 "y": 766
}, },
{ {
"x": 432.5, "x": 559.1666666666667,
"y": 806 "y": 806
}, },
{ {
"x": 310.75, "x": 438.6666666666667,
"y": 806 "y": 806
}, },
{ {
"x": 310.75, "x": 438.6666666666667,
"y": 946 "y": 946
} }
], ],
@ -1801,11 +1801,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 263, "x": 337.6666666666667,
"y": 1258 "y": 1258
}, },
{ {
"x": 263, "x": 337.6666666666667,
"y": 1338 "y": 1338
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 340 KiB

After

Width:  |  Height:  |  Size: 340 KiB

View file

@ -7,10 +7,10 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 269,
"y": 530 "y": 530
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -48,10 +48,10 @@
"id": "tree", "id": "tree",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 106, "x": 102,
"y": 726 "y": 726
}, },
"width": 74, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -294,10 +294,10 @@
"id": "then", "id": "then",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 434, "x": 433,
"y": 530 "y": 530
}, },
"width": 78, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -704,10 +704,10 @@
"id": "finally.a", "id": "finally.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 741, "x": 732,
"y": 198 "y": 198
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -786,7 +786,7 @@
"id": "finally.inside", "id": "finally.inside",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 724, "x": 728,
"y": 62 "y": 62
}, },
"width": 88, "width": 88,
@ -934,19 +934,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 332.5, "x": 299,
"y": 596 "y": 596
}, },
{ {
"x": 332.5, "x": 299,
"y": 636 "y": 636
}, },
{ {
"x": 143.16666666666663, "x": 142.16666666666663,
"y": 636 "y": 636
}, },
{ {
"x": 143.16666666666663, "x": 142.16666666666663,
"y": 726 "y": 726
} }
], ],
@ -982,11 +982,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 345.75, "x": 329,
"y": 596 "y": 596
}, },
{ {
"x": 345.75, "x": 329,
"y": 686 "y": 686
}, },
{ {
@ -1110,11 +1110,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 130.83333333333326, "x": 128.83333333333326,
"y": 792 "y": 792
}, },
{ {
"x": 130.83333333333326, "x": 128.83333333333326,
"y": 832 "y": 832
}, },
{ {
@ -1198,7 +1198,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 460.5, "x": 460.50000000000006,
"y": 596 "y": 596
}, },
{ {
@ -1318,11 +1318,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 486.5, "x": 487.1666666666667,
"y": 596 "y": 596
}, },
{ {
"x": 486.5, "x": 487.1666666666667,
"y": 636 "y": 636
}, },
{ {
@ -1574,11 +1574,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 768.1666666666666, "x": 772.6666666666666,
"y": 128 "y": 128
}, },
{ {
"x": 768.1666666666666, "x": 772.6666666666666,
"y": 198 "y": 198
} }
], ],
@ -1654,11 +1654,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 776.9999999999999, "x": 786,
"y": 264 "y": 264
}, },
{ {
"x": 776.9999999999999, "x": 786,
"y": 304 "y": 304
}, },
{ {

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 662 KiB

After

Width:  |  Height:  |  Size: 662 KiB

View file

@ -7,10 +7,10 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 29, "x": 84,
"y": 12 "y": 12
}, },
"width": 53, "width": 200,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -49,7 +49,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 12, "x": 12,
"y": 308 "y": 208
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -90,7 +90,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 85, "x": 85,
"y": 308 "y": 208
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -131,7 +131,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 158, "x": 158,
"y": 308 "y": 208
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -172,7 +172,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 231, "x": 231,
"y": 308 "y": 208
}, },
"width": 51, "width": 51,
"height": 66, "height": 66,
@ -213,7 +213,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 302, "x": 302,
"y": 308 "y": 208
}, },
"width": 54, "width": 54,
"height": 66, "height": 66,
@ -278,12 +278,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 38.5, "x": 117.83333333333334,
"y": 78 "y": 78
}, },
{
"x": 117.83333333333334,
"y": 118
},
{ {
"x": 38.5, "x": 38.5,
"y": 308 "y": 118
},
{
"x": 38.5,
"y": 208
} }
], ],
"animated": false, "animated": false,
@ -317,20 +325,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 47.33333333333333, "x": 151.16666666666669,
"y": 78 "y": 78
}, },
{ {
"x": 47.33333333333333, "x": 151.16666666666669,
"y": 268 "y": 168
}, },
{ {
"x": 111.5, "x": 111.5,
"y": 268 "y": 168
}, },
{ {
"x": 111.5, "x": 111.5,
"y": 308 "y": 208
} }
], ],
"animated": false, "animated": false,
@ -365,20 +373,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 56.166666666666664, "x": 184.5,
"y": 78 "y": 78
}, },
{
"x": 56.166666666666664,
"y": 218
},
{ {
"x": 184.5, "x": 184.5,
"y": 218 "y": 208
},
{
"x": 184.5,
"y": 308
} }
], ],
"animated": false, "animated": false,
@ -413,11 +413,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 65, "x": 217.83333333333331,
"y": 78 "y": 78
}, },
{ {
"x": 65, "x": 217.83333333333331,
"y": 168 "y": 168
}, },
{ {
@ -426,7 +426,7 @@
}, },
{ {
"x": 256.5, "x": 256.5,
"y": 308 "y": 208
} }
], ],
"animated": false, "animated": false,
@ -461,11 +461,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 73.83333333333334, "x": 251.16666666666663,
"y": 78 "y": 78
}, },
{ {
"x": 73.83333333333334, "x": 251.16666666666663,
"y": 118 "y": 118
}, },
{ {
@ -474,7 +474,7 @@
}, },
{ {
"x": 329, "x": 329,
"y": 308 "y": 208
} }
], ],
"animated": false, "animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 331 KiB

After

Width:  |  Height:  |  Size: 331 KiB

View file

@ -7,7 +7,7 @@
"id": "aa", "id": "aa",
"type": "step", "type": "step",
"pos": { "pos": {
"x": 67, "x": 70,
"y": 12 "y": 12
}, },
"width": 102, "width": 102,
@ -48,7 +48,7 @@
"id": "bb", "id": "bb",
"type": "step", "type": "step",
"pos": { "pos": {
"x": 152, "x": 155,
"y": 193 "y": 193
}, },
"width": 103, "width": 103,
@ -89,7 +89,7 @@
"id": "cc", "id": "cc",
"type": "step", "type": "step",
"pos": { "pos": {
"x": 136, "x": 138,
"y": 374 "y": 374
}, },
"width": 101, "width": 101,
@ -130,7 +130,7 @@
"id": "dd", "id": "dd",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 19, "x": 22,
"y": 641 "y": 641
}, },
"width": 250, "width": 250,
@ -171,7 +171,7 @@
"id": "dd.ee", "id": "dd.ee",
"type": "diamond", "type": "diamond",
"pos": { "pos": {
"x": 69, "x": 72,
"y": 691 "y": 691
}, },
"width": 64, "width": 64,
@ -212,10 +212,10 @@
"id": "ff", "id": "ff",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 279, "x": 289,
"y": 1839 "y": 1839
}, },
"width": 276, "width": 283,
"height": 338, "height": 338,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -253,10 +253,10 @@
"id": "ff.gg", "id": "ff.gg",
"type": "diamond", "type": "diamond",
"pos": { "pos": {
"x": 338, "x": 342,
"y": 1889 "y": 1889
}, },
"width": 66, "width": 80,
"height": 92, "height": 92,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -294,7 +294,7 @@
"id": "dd.hh", "id": "dd.hh",
"type": "diamond", "type": "diamond",
"pos": { "pos": {
"x": 153, "x": 156,
"y": 691 "y": 691
}, },
"width": 66, "width": 66,
@ -335,7 +335,7 @@
"id": "ii", "id": "ii",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 292, "x": 303,
"y": 998 "y": 998
}, },
"width": 54, "width": 54,
@ -376,7 +376,7 @@
"id": "jj", "id": "jj",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 291, "x": 303,
"y": 1189 "y": 1189
}, },
"width": 55, "width": 55,
@ -417,10 +417,10 @@
"id": "kk", "id": "kk",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 288, "x": 290,
"y": 1451 "y": 1451
}, },
"width": 62, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -458,7 +458,7 @@
"id": "ll", "id": "ll",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 238, "x": 249,
"y": 2358 "y": 2358
}, },
"width": 265, "width": 265,
@ -499,7 +499,7 @@
"id": "ll.mm", "id": "ll.mm",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 288, "x": 299,
"y": 2408 "y": 2408
}, },
"width": 81, "width": 81,
@ -540,7 +540,7 @@
"id": "ff.mm", "id": "ff.mm",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 424, "x": 442,
"y": 1894 "y": 1894
}, },
"width": 81, "width": 81,
@ -663,7 +663,7 @@
"id": "ff.pp", "id": "ff.pp",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 340, "x": 350,
"y": 2061 "y": 2061
}, },
"width": 63, "width": 63,
@ -704,7 +704,7 @@
"id": "ll.qq", "id": "ll.qq",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 389, "x": 400,
"y": 2415 "y": 2415
}, },
"width": 64, "width": 64,
@ -745,7 +745,7 @@
"id": "ll.rr", "id": "ll.rr",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 392, "x": 403,
"y": 2559 "y": 2559
}, },
"width": 58, "width": 58,
@ -786,7 +786,7 @@
"id": "ss", "id": "ss",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 107, "x": 110,
"y": 1139 "y": 1139
}, },
"width": 158, "width": 158,
@ -827,7 +827,7 @@
"id": "ss.tt", "id": "ss.tt",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 157, "x": 160,
"y": 1189 "y": 1189
}, },
"width": 58, "width": 58,
@ -868,7 +868,7 @@
"id": "uu", "id": "uu",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 105, "x": 107,
"y": 1385 "y": 1385
}, },
"width": 163, "width": 163,
@ -909,7 +909,7 @@
"id": "uu.vv", "id": "uu.vv",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 155, "x": 157,
"y": 1435 "y": 1435
}, },
"width": 63, "width": 63,
@ -950,7 +950,7 @@
"id": "ww", "id": "ww",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 137, "x": 139,
"y": 1636 "y": 1636
}, },
"width": 149, "width": 149,
@ -1002,10 +1002,10 @@
"id": "rm", "id": "rm",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 154, "x": 149,
"y": 2525 "y": 2525
}, },
"width": 64, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -1084,7 +1084,7 @@
"id": "yy", "id": "yy",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 279, "x": 290,
"y": 2815 "y": 2815
}, },
"width": 238, "width": 238,
@ -1125,7 +1125,7 @@
"id": "yy.zz", "id": "yy.zz",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 329, "x": 340,
"y": 2865 "y": 2865
}, },
"width": 138, "width": 138,
@ -1177,7 +1177,7 @@
"id": "yy.ab", "id": "yy.ab",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 367, "x": 377,
"y": 3053 "y": 3053
}, },
"width": 63, "width": 63,
@ -1325,19 +1325,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 136, "x": 138,
"y": 112 "y": 111
}, },
{ {
"x": 135.66666666666666, "x": 138.33333333333334,
"y": 153 "y": 153
}, },
{ {
"x": 203.83333333333331, "x": 206.5,
"y": 153 "y": 153
}, },
{ {
"x": 204, "x": 207,
"y": 193 "y": 193
} }
], ],
@ -1373,11 +1373,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 187, "x": 189,
"y": 294 "y": 294
}, },
{ {
"x": 187, "x": 189,
"y": 374 "y": 374
} }
], ],
@ -1413,11 +1413,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 102, "x": 104,
"y": 113 "y": 113
}, },
{ {
"x": 102, "x": 104,
"y": 691 "y": 691
} }
], ],
@ -1453,19 +1453,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 221, "x": 224,
"y": 293 "y": 293
}, },
{ {
"x": 220.99999999999997, "x": 223.66666666666666,
"y": 334 "y": 334
}, },
{ {
"x": 382.66666666666663, "x": 395.66666666666663,
"y": 334 "y": 334
}, },
{ {
"x": 383, "x": 396,
"y": 1904 "y": 1904
} }
], ],
@ -1501,11 +1501,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 187, "x": 189,
"y": 475 "y": 475
}, },
{ {
"x": 187, "x": 189,
"y": 691 "y": 691
} }
], ],
@ -1541,27 +1541,27 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 102, "x": 104,
"y": 783 "y": 783
}, },
{ {
"x": 101.66666666666666, "x": 104.33333333333334,
"y": 823 "y": 823
}, },
{ {
"x": 196.66666666666666, "x": 199.33333333333334,
"y": 823 "y": 823
}, },
{ {
"x": 196.66666666666666, "x": 199.33333333333334,
"y": 958 "y": 958
}, },
{ {
"x": 319.16666666666663, "x": 330.83333333333337,
"y": 958 "y": 958
}, },
{ {
"x": 319.16666666666663, "x": 330.83333333333337,
"y": 998 "y": 998
} }
], ],
@ -1597,11 +1597,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 319.16666666666663, "x": 330.83333333333337,
"y": 1064 "y": 1064
}, },
{ {
"x": 319.16666666666663, "x": 330.83333333333337,
"y": 1189 "y": 1189
} }
], ],
@ -1637,11 +1637,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 319.16666666666663, "x": 330.83333333333337,
"y": 1255 "y": 1255
}, },
{ {
"x": 319.16666666666663, "x": 330.83333333333337,
"y": 1451.6666666666667 "y": 1451.6666666666667
} }
], ],
@ -1677,19 +1677,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 329.49999999999994, "x": 344.1666666666667,
"y": 1517.6666666666667 "y": 1517.6666666666667
}, },
{ {
"x": 329.49999999999994, "x": 344.1666666666667,
"y": 1596 "y": 1596
}, },
{ {
"x": 465.16666666666663, "x": 482.8333333333333,
"y": 1596 "y": 1596
}, },
{ {
"x": 465, "x": 483,
"y": 1895 "y": 1895
} }
], ],
@ -1725,19 +1725,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 465, "x": 483,
"y": 1976 "y": 1976
}, },
{ {
"x": 465.16666666666663, "x": 482.8333333333333,
"y": 2021 "y": 2021
}, },
{ {
"x": 329.16666666666663, "x": 339.8333333333333,
"y": 2021 "y": 2021
}, },
{ {
"x": 329, "x": 340,
"y": 2408 "y": 2408
} }
], ],
@ -1773,11 +1773,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 329, "x": 340,
"y": 2489 "y": 2489
}, },
{ {
"x": 329.16666666666663, "x": 339.8333333333333,
"y": 2720 "y": 2720
}, },
{ {
@ -1785,7 +1785,7 @@
"y": 2720 "y": 2720
}, },
{ {
"x": 93.49999999999997, "x": 93.5,
"y": 3309 "y": 3309
} }
], ],
@ -1821,11 +1821,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 372, "x": 382,
"y": 1981 "y": 1981
}, },
{ {
"x": 371.66666666666663, "x": 382.3333333333333,
"y": 2061 "y": 2061
} }
], ],
@ -1861,19 +1861,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 371.66666666666663, "x": 382.3333333333333,
"y": 2127 "y": 2127
}, },
{ {
"x": 371.66666666666663, "x": 382.3333333333333,
"y": 2222 "y": 2222
}, },
{ {
"x": 421.66666666666663, "x": 432.3333333333333,
"y": 2222 "y": 2222
}, },
{ {
"x": 421.66666666666663, "x": 432.3333333333333,
"y": 2415.5 "y": 2415.5
} }
], ],
@ -1909,11 +1909,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 421.66666666666663, "x": 432.3333333333333,
"y": 2481.5 "y": 2481.5
}, },
{ {
"x": 421.66666666666663, "x": 432.3333333333333,
"y": 2559 "y": 2559
} }
], ],
@ -1949,11 +1949,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 187, "x": 189,
"y": 783 "y": 783
}, },
{ {
"x": 186.66666666666666, "x": 189.33333333333334,
"y": 1189 "y": 1189
} }
], ],
@ -1989,11 +1989,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 186.66666666666666, "x": 189.33333333333334,
"y": 1255 "y": 1255
}, },
{ {
"x": 186.66666666666666, "x": 189.33333333333334,
"y": 1435 "y": 1435
} }
], ],
@ -2029,19 +2029,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 308.8333333333333, "x": 317.50000000000006,
"y": 1517.6666666666667 "y": 1517.6666666666667
}, },
{ {
"x": 308.8333333333333, "x": 317.50000000000006,
"y": 1596 "y": 1596
}, },
{ {
"x": 236.33333333333331, "x": 239,
"y": 1596 "y": 1596
}, },
{ {
"x": 236, "x": 239,
"y": 1636 "y": 1636
} }
], ],
@ -2077,11 +2077,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 186.66666666666666, "x": 189.33333333333334,
"y": 1501 "y": 1501
}, },
{ {
"x": 187, "x": 189,
"y": 1636 "y": 1636
} }
], ],
@ -2117,11 +2117,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 187, "x": 189,
"y": 1754 "y": 1754
}, },
{ {
"x": 186.66666666666666, "x": 189.33333333333331,
"y": 2525.3333333333335 "y": 2525.3333333333335
} }
], ],
@ -2157,7 +2157,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 176, "x": 175.99999999999997,
"y": 2591.3333333333335 "y": 2591.3333333333335
}, },
{ {
@ -2197,11 +2197,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 421.66666666666663, "x": 432.3333333333333,
"y": 2625 "y": 2625
}, },
{ {
"x": 422, "x": 432,
"y": 2865 "y": 2865
} }
], ],
@ -2237,19 +2237,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 197.33333333333331, "x": 202.66666666666666,
"y": 2591.3333333333335 "y": 2591.3333333333335
}, },
{ {
"x": 197.33333333333331, "x": 202.66666666666666,
"y": 2770 "y": 2770
}, },
{ {
"x": 375.66666666666663, "x": 386.3333333333333,
"y": 2770 "y": 2770
}, },
{ {
"x": 376, "x": 386,
"y": 2865 "y": 2865
} }
], ],
@ -2285,11 +2285,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 399, "x": 409,
"y": 2983 "y": 2983
}, },
{ {
"x": 398.66666666666663, "x": 409.3333333333333,
"y": 3053 "y": 3053
} }
], ],
@ -2325,11 +2325,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 398.66666666666663, "x": 409.3333333333333,
"y": 3119 "y": 3119
}, },
{ {
"x": 398.66666666666663, "x": 409.3333333333333,
"y": 3214 "y": 3214
}, },
{ {
@ -2413,19 +2413,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 236, "x": 239,
"y": 1754 "y": 1754
}, },
{ {
"x": 236.33333333333331, "x": 239,
"y": 1794 "y": 1794
}, },
{ {
"x": 360.66666666666663, "x": 369,
"y": 1794 "y": 1794
}, },
{ {
"x": 361, "x": 369,
"y": 1904 "y": 1904
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 812 KiB

After

Width:  |  Height:  |  Size: 812 KiB

View file

@ -48,7 +48,7 @@
"id": "b", "id": "b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 833, "x": 911,
"y": 436 "y": 436
}, },
"width": 53, "width": 53,
@ -89,8 +89,8 @@
"id": "c", "id": "c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 437, "x": 322,
"y": 1998 "y": 1768
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -130,8 +130,8 @@
"id": "d", "id": "d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 510, "x": 395,
"y": 1998 "y": 1768
}, },
"width": 54, "width": 54,
"height": 66, "height": 66,
@ -171,8 +171,8 @@
"id": "e", "id": "e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 511, "x": 395,
"y": 2134 "y": 1904
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -212,8 +212,8 @@
"id": "f", "id": "f",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 584, "x": 469,
"y": 1998 "y": 1768
}, },
"width": 51, "width": 51,
"height": 66, "height": 66,
@ -253,10 +253,10 @@
"id": "g", "id": "g",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 184, "x": 198,
"y": 1998 "y": 1768
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -294,8 +294,8 @@
"id": "h", "id": "h",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 213, "x": 238,
"y": 1011 "y": 1061
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -335,11 +335,11 @@
"id": "i", "id": "i",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 394, "x": 311,
"y": 1011 "y": 1061
}, },
"width": 403, "width": 546,
"height": 752, "height": 522,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -376,8 +376,8 @@
"id": "i.j", "id": "i.j",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 523, "x": 583,
"y": 1061 "y": 1111
}, },
"width": 222, "width": 222,
"height": 166, "height": 166,
@ -417,8 +417,8 @@
"id": "i.j.k", "id": "i.j.k",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 573, "x": 633,
"y": 1111 "y": 1161
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -458,8 +458,8 @@
"id": "i.j.l", "id": "i.j.l",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 646, "x": 706,
"y": 1111 "y": 1161
}, },
"width": 49, "width": 49,
"height": 66, "height": 66,
@ -499,10 +499,10 @@
"id": "i.m", "id": "i.m",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 444, "x": 361,
"y": 1377 "y": 1427
}, },
"width": 57, "width": 200,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -540,8 +540,8 @@
"id": "i.n", "id": "i.n",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 521, "x": 581,
"y": 1417 "y": 1467
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -581,8 +581,8 @@
"id": "i.o", "id": "i.o",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 594, "x": 654,
"y": 1317 "y": 1367
}, },
"width": 153, "width": 153,
"height": 166, "height": 166,
@ -622,8 +622,8 @@
"id": "i.o.p", "id": "i.o.p",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 644, "x": 704,
"y": 1367 "y": 1417
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -663,10 +663,10 @@
"id": "q", "id": "q",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 767, "x": 807,
"y": 1998 "y": 1768
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -707,7 +707,7 @@
"x": 85, "x": 85,
"y": 12 "y": 12
}, },
"width": 728, "width": 806,
"height": 909, "height": 909,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -748,7 +748,7 @@
"x": 135, "x": 135,
"y": 313 "y": 313
}, },
"width": 465, "width": 543,
"height": 417, "height": 417,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -789,7 +789,7 @@
"x": 185, "x": 185,
"y": 551 "y": 551
}, },
"width": 51, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -827,7 +827,7 @@
"id": "r.s.u", "id": "r.s.u",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 256, "x": 325,
"y": 509 "y": 509
}, },
"width": 154, "width": 154,
@ -868,7 +868,7 @@
"id": "r.s.u.v", "id": "r.s.u.v",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 306, "x": 375,
"y": 559 "y": 559
}, },
"width": 54, "width": 54,
@ -909,7 +909,7 @@
"id": "r.s.w", "id": "r.s.w",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 430, "x": 499,
"y": 561 "y": 561
}, },
"width": 58, "width": 58,
@ -950,10 +950,10 @@
"id": "r.s.x", "id": "r.s.x",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 423, "x": 474,
"y": 363 "y": 363
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -991,7 +991,7 @@
"id": "r.s.y", "id": "r.s.y",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 496, "x": 574,
"y": 363 "y": 363
}, },
"width": 54, "width": 54,
@ -1032,7 +1032,7 @@
"id": "r.z", "id": "r.z",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 307, "x": 376,
"y": 805 "y": 805
}, },
"width": 52, "width": 52,
@ -1073,7 +1073,7 @@
"id": "r.aa", "id": "r.aa",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 166, "x": 184,
"y": 162 "y": 162
}, },
"width": 62, "width": 62,
@ -1114,7 +1114,7 @@
"id": "r.bb", "id": "r.bb",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 248, "x": 266,
"y": 62 "y": 62
}, },
"width": 245, "width": 245,
@ -1155,7 +1155,7 @@
"id": "r.bb.cc", "id": "r.bb.cc",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 298, "x": 316,
"y": 112 "y": 112
}, },
"width": 61, "width": 61,
@ -1196,7 +1196,7 @@
"id": "r.bb.dd", "id": "r.bb.dd",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 379, "x": 397,
"y": 112 "y": 112
}, },
"width": 64, "width": 64,
@ -1237,7 +1237,7 @@
"id": "r.ee", "id": "r.ee",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 618, "x": 696,
"y": 162 "y": 162
}, },
"width": 62, "width": 62,
@ -1278,7 +1278,7 @@
"id": "r.ff", "id": "r.ff",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 620, "x": 698,
"y": 313 "y": 313
}, },
"width": 57, "width": 57,
@ -1319,7 +1319,7 @@
"id": "r.gg", "id": "r.gg",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 700, "x": 778,
"y": 162 "y": 162
}, },
"width": 63, "width": 63,
@ -1385,20 +1385,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 600.25, "x": 660,
"y": 1177 "y": 1227
}, },
{ {
"x": 600.25, "x": 660,
"y": 1272 "y": 1322
}, },
{ {
"x": 487.5, "x": 511.5,
"y": 1272 "y": 1322
}, },
{ {
"x": 487.5, "x": 511.5,
"y": 1377.625 "y": 1427.625
} }
], ],
"animated": false, "animated": false,
@ -1433,12 +1433,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 671.25, "x": 731,
"y": 1177 "y": 1227
}, },
{ {
"x": 671.25, "x": 731,
"y": 1367 "y": 1417
} }
], ],
"animated": false, "animated": false,
@ -1473,20 +1473,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 807.75, "x": 867.5,
"y": 1998 "y": 1768
}, },
{ {
"x": 807.75, "x": 867.5,
"y": 966 "y": 1016
}, },
{ {
"x": 473.25, "x": 461.5,
"y": 966 "y": 1016
}, },
{ {
"x": 473.25, "x": 461.5,
"y": 1377.625 "y": 1427.625
} }
], ],
"animated": false, "animated": false,
@ -1521,28 +1521,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 492.25, "x": 528.1666666666666,
"y": 1443.625 "y": 1493.625
}, },
{ {
"x": 492.25, "x": 528.1666666666666,
"y": 1523 "y": 1678
}, },
{ {
"x": 494.25, "x": 827.5,
"y": 1523 "y": 1678
}, },
{ {
"x": 494.25, "x": 827.5,
"y": 1858 "y": 1768
},
{
"x": 780.75,
"y": 1858
},
{
"x": 780.75,
"y": 1998
} }
], ],
"animated": false, "animated": false,
@ -1577,20 +1569,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 548.25, "x": 608,
"y": 1483 "y": 1533
}, },
{ {
"x": 548.25, "x": 608,
"y": 1808 "y": 1628
}, },
{ {
"x": 794.25, "x": 847.5,
"y": 1808 "y": 1628
}, },
{ {
"x": 794.25, "x": 847.5,
"y": 1998 "y": 1768
} }
], ],
"animated": false, "animated": false,
@ -1625,20 +1617,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 463.75, "x": 428.16666666666663,
"y": 1443.625 "y": 1493.625
}, },
{ {
"x": 463.75, "x": 428.16666666666663,
"y": 1673 "y": 1678
}, },
{ {
"x": 464.25, "x": 348.8333333333333,
"y": 1673 "y": 1678
}, },
{ {
"x": 464.25, "x": 348.8333333333333,
"y": 1998 "y": 1768
} }
], ],
"animated": false, "animated": false,
@ -1673,28 +1665,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 473.25, "x": 461.5,
"y": 1443.625 "y": 1493.625
}, },
{ {
"x": 473.25, "x": 461.5,
"y": 1623 "y": 1728
}, },
{ {
"x": 474.25, "x": 422.3333333333333,
"y": 1623 "y": 1728
}, },
{ {
"x": 474.25, "x": 422.3333333333333,
"y": 1958 "y": 1768
},
{
"x": 537.75,
"y": 1958
},
{
"x": 537.75,
"y": 1998
} }
], ],
"animated": false, "animated": false,
@ -1729,20 +1713,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 454.25, "x": 394.8333333333333,
"y": 1443.625 "y": 1493.625
}, },
{ {
"x": 454.25, "x": 394.8333333333333,
"y": 1808 "y": 1628
}, },
{ {
"x": 220, "x": 251.66666666666674,
"y": 1808 "y": 1628
}, },
{ {
"x": 220, "x": 251.66666666666674,
"y": 1998 "y": 1768
} }
], ],
"animated": false, "animated": false,
@ -1777,28 +1761,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 482.75, "x": 494.8333333333333,
"y": 1443.625 "y": 1493.625
}, },
{ {
"x": 482.75, "x": 494.8333333333333,
"y": 1573 "y": 1768
},
{
"x": 484.25,
"y": 1573
},
{
"x": 484.25,
"y": 1908
},
{
"x": 610.25,
"y": 1908
},
{
"x": 610.25,
"y": 1998
} }
], ],
"animated": false, "animated": false,
@ -1833,12 +1801,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 537.75, "x": 422.3333333333333,
"y": 2064 "y": 1834
}, },
{ {
"x": 537.75, "x": 422.3333333333333,
"y": 2134 "y": 1904
} }
], ],
"animated": false, "animated": false,
@ -1873,19 +1841,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 441.3333333333333, "x": 501.3333333333333,
"y": 429 "y": 429
}, },
{ {
"x": 441.3333333333333, "x": 501.3333333333333,
"y": 469 "y": 469
}, },
{ {
"x": 223.25, "x": 275,
"y": 469 "y": 469
}, },
{ {
"x": 223.25, "x": 275,
"y": 551 "y": 551
} }
], ],
@ -1921,11 +1889,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 459, "x": 528,
"y": 429 "y": 429
}, },
{ {
"x": 459, "x": 528,
"y": 561.5 "y": 561.5
} }
], ],
@ -1961,19 +1929,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 731.6666666666666, "x": 809.6666666666666,
"y": 228 "y": 228
}, },
{ {
"x": 731.6666666666666, "x": 809.6666666666666,
"y": 268 "y": 268
}, },
{ {
"x": 210.5, "x": 245,
"y": 268 "y": 268
}, },
{ {
"x": 210.5, "x": 245,
"y": 551 "y": 551
} }
], ],
@ -2009,11 +1977,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 333, "x": 402,
"y": 625 "y": 625
}, },
{ {
"x": 333, "x": 402,
"y": 805 "y": 805
} }
], ],
@ -2049,11 +2017,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 197.75, "x": 215,
"y": 228 "y": 228
}, },
{ {
"x": 197.75, "x": 215,
"y": 551 "y": 551
} }
], ],
@ -2089,12 +2057,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 459, "x": 528,
"y": 627.5 "y": 627.5
}, },
{ {
"x": 459, "x": 528,
"y": 1377.625 "y": 966
},
{
"x": 411.5,
"y": 966
},
{
"x": 411.5,
"y": 1427.625
} }
], ],
"animated": false, "animated": false,
@ -2129,12 +2105,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 202, "x": 225,
"y": 617 "y": 617
}, },
{ {
"x": 202, "x": 225,
"y": 1998 "y": 1768
} }
], ],
"animated": false, "animated": false,
@ -2169,20 +2145,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 219, "x": 265,
"y": 617 "y": 617
}, },
{ {
"x": 219, "x": 265,
"y": 966 "y": 1061
},
{
"x": 239.5,
"y": 966
},
{
"x": 239.5,
"y": 1011
} }
], ],
"animated": false, "animated": false,
@ -2217,11 +2185,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 649.1666666666666, "x": 727.1666666666666,
"y": 228 "y": 228
}, },
{ {
"x": 649.1666666666666, "x": 727.1666666666666,
"y": 313 "y": 313
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 666 KiB

After

Width:  |  Height:  |  Size: 666 KiB

View file

@ -7,10 +7,10 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 442, "x": 382,
"y": 294 "y": 294
}, },
"width": 53, "width": 240,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -48,10 +48,10 @@
"id": "b", "id": "b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 80, "x": 46,
"y": 540 "y": 540
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -89,10 +89,10 @@
"id": "c", "id": "c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 152, "x": 186,
"y": 540 "y": 540
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -130,10 +130,10 @@
"id": "d", "id": "d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 299, "x": 333,
"y": 540 "y": 540
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -171,10 +171,10 @@
"id": "e", "id": "e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 445, "x": 479,
"y": 540 "y": 540
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -212,10 +212,10 @@
"id": "f", "id": "f",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 590, "x": 623,
"y": 540 "y": 540
}, },
"width": 51, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -253,10 +253,10 @@
"id": "g", "id": "g",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 441, "x": 462,
"y": 158 "y": 158
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -294,10 +294,10 @@
"id": "h", "id": "h",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 661, "x": 723,
"y": 540 "y": 540
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -417,7 +417,7 @@
"id": "k", "id": "k",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 451, "x": 489,
"y": 12 "y": 12
}, },
"width": 53, "width": 53,
@ -458,7 +458,7 @@
"id": "l", "id": "l",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 382, "x": 420,
"y": 12 "y": 12
}, },
"width": 49, "width": 49,
@ -499,7 +499,7 @@
"id": "m", "id": "m",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 84, "x": 136,
"y": 686 "y": 686
}, },
"width": 57, "width": 57,
@ -540,7 +540,7 @@
"id": "n", "id": "n",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 161, "x": 213,
"y": 686 "y": 686
}, },
"width": 53, "width": 53,
@ -581,7 +581,7 @@
"id": "o", "id": "o",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 234, "x": 286,
"y": 686 "y": 686
}, },
"width": 54, "width": 54,
@ -622,7 +622,7 @@
"id": "p", "id": "p",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 308, "x": 360,
"y": 686 "y": 686
}, },
"width": 53, "width": 53,
@ -663,7 +663,7 @@
"id": "q", "id": "q",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 381, "x": 433,
"y": 686 "y": 686
}, },
"width": 54, "width": 54,
@ -704,7 +704,7 @@
"id": "r", "id": "r",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 455, "x": 507,
"y": 686 "y": 686
}, },
"width": 51, "width": 51,
@ -745,7 +745,7 @@
"id": "s", "id": "s",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 309, "x": 360,
"y": 822 "y": 822
}, },
"width": 52, "width": 52,
@ -786,7 +786,7 @@
"id": "t", "id": "t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 526, "x": 578,
"y": 686 "y": 686
}, },
"width": 51, "width": 51,
@ -827,7 +827,7 @@
"id": "u", "id": "u",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 597, "x": 649,
"y": 686 "y": 686
}, },
"width": 54, "width": 54,
@ -868,7 +868,7 @@
"id": "v", "id": "v",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 598, "x": 710,
"y": 294 "y": 294
}, },
"width": 54, "width": 54,
@ -909,7 +909,7 @@
"id": "w", "id": "w",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 672, "x": 784,
"y": 294 "y": 294
}, },
"width": 58, "width": 58,
@ -975,19 +975,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 449.7857142857142, "x": 416.64285714285717,
"y": 360 "y": 360
}, },
{ {
"x": 449.7857142857142, "x": 416.64285714285717,
"y": 400 "y": 400
}, },
{ {
"x": 119.75, "x": 136.5,
"y": 400 "y": 400
}, },
{ {
"x": 119.75, "x": 136.5,
"y": 540 "y": 540
} }
], ],
@ -1023,19 +1023,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 457.3571428571428, "x": 450.92857142857144,
"y": 360 "y": 360
}, },
{ {
"x": 457.3571428571428, "x": 450.92857142857144,
"y": 450 "y": 450
}, },
{ {
"x": 179.49999999999994, "x": 226.5,
"y": 450 "y": 450
}, },
{ {
"x": 179.49999999999994, "x": 226.5,
"y": 540 "y": 540
} }
], ],
@ -1071,19 +1071,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 464.92857142857133, "x": 485.2142857142858,
"y": 360 "y": 360
}, },
{ {
"x": 464.92857142857133, "x": 485.2142857142858,
"y": 500 "y": 500
}, },
{ {
"x": 326.33333333333326, "x": 373.50000000000006,
"y": 500 "y": 500
}, },
{ {
"x": 326.33333333333326, "x": 373.50000000000006,
"y": 540 "y": 540
} }
], ],
@ -1119,11 +1119,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 472.4999999999999, "x": 519.5,
"y": 360 "y": 360
}, },
{ {
"x": 472.4999999999999, "x": 519.5,
"y": 540 "y": 540
} }
], ],
@ -1159,19 +1159,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 480.0714285714285, "x": 553.7857142857143,
"y": 360 "y": 360
}, },
{ {
"x": 480.0714285714285, "x": 553.7857142857143,
"y": 500 "y": 500
}, },
{ {
"x": 616.3333333333333, "x": 663,
"y": 500 "y": 500
}, },
{ {
"x": 616.3333333333333, "x": 663,
"y": 540 "y": 540
} }
], ],
@ -1207,11 +1207,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 468.71428571428567, "x": 502.3571428571429,
"y": 224 "y": 224
}, },
{ {
"x": 468.71428571428567, "x": 502.3571428571429,
"y": 294 "y": 294
} }
], ],
@ -1247,19 +1247,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 487.64285714285705, "x": 588.0714285714286,
"y": 360 "y": 360
}, },
{ {
"x": 487.64285714285705, "x": 588.0714285714286,
"y": 450 "y": 450
}, },
{ {
"x": 675.0833333333333, "x": 753,
"y": 450 "y": 450
}, },
{ {
"x": 675.0833333333333, "x": 753,
"y": 540 "y": 540
} }
], ],
@ -1343,11 +1343,11 @@
"y": 400 "y": 400
}, },
{ {
"x": 93.25, "x": 76.5,
"y": 400 "y": 400
}, },
{ {
"x": 93.25, "x": 76.5,
"y": 540 "y": 540
} }
], ],
@ -1383,11 +1383,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 477.71428571428567, "x": 515.6904761904763,
"y": 78 "y": 78
}, },
{ {
"x": 477.71428571428567, "x": 515.6904761904763,
"y": 158 "y": 158
} }
], ],
@ -1423,19 +1423,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 406.71428571428567, "x": 444.69047619047626,
"y": 78 "y": 78
}, },
{ {
"x": 406.71428571428567, "x": 444.69047619047626,
"y": 118 "y": 118
}, },
{ {
"x": 459.71428571428567, "x": 489.0238095238095,
"y": 118 "y": 118
}, },
{ {
"x": 459.71428571428567, "x": 489.0238095238095,
"y": 158 "y": 158
} }
], ],
@ -1471,19 +1471,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 170.66666666666663, "x": 213.16666666666669,
"y": 606 "y": 606
}, },
{ {
"x": 170.66666666666663, "x": 213.16666666666669,
"y": 646 "y": 646
}, },
{ {
"x": 113.33333333333326, "x": 164.83333333333326,
"y": 646 "y": 646
}, },
{ {
"x": 113.33333333333326, "x": 164.83333333333326,
"y": 686 "y": 686
} }
], ],
@ -1519,11 +1519,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 188.33333333333326, "x": 239.83333333333331,
"y": 606 "y": 606
}, },
{ {
"x": 188.33333333333326, "x": 239.83333333333331,
"y": 686 "y": 686
} }
], ],
@ -1559,19 +1559,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 317.33333333333326, "x": 360.16666666666674,
"y": 606 "y": 606
}, },
{ {
"x": 317.33333333333326, "x": 360.16666666666674,
"y": 646 "y": 646
}, },
{ {
"x": 261.83333333333326, "x": 313.33333333333337,
"y": 646 "y": 646
}, },
{ {
"x": 261.83333333333326, "x": 313.33333333333337,
"y": 686 "y": 686
} }
], ],
@ -1607,11 +1607,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 335.33333333333326, "x": 386.83333333333337,
"y": 606 "y": 606
}, },
{ {
"x": 335.33333333333326, "x": 386.83333333333337,
"y": 686 "y": 686
} }
], ],
@ -1647,19 +1647,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 463.6666666666666, "x": 506.1666666666667,
"y": 606 "y": 606
}, },
{ {
"x": 463.6666666666666, "x": 506.1666666666667,
"y": 646 "y": 646
}, },
{ {
"x": 408.83333333333326, "x": 460.33333333333337,
"y": 646 "y": 646
}, },
{ {
"x": 408.83333333333326, "x": 460.33333333333337,
"y": 686 "y": 686
} }
], ],
@ -1695,11 +1695,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 481.33333333333326, "x": 532.8333333333334,
"y": 606 "y": 606
}, },
{ {
"x": 481.33333333333326, "x": 532.8333333333334,
"y": 686 "y": 686
} }
], ],
@ -1735,11 +1735,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 335.33333333333326, "x": 386.83333333333337,
"y": 752 "y": 752
}, },
{ {
"x": 335.33333333333326, "x": 386.83333333333337,
"y": 822 "y": 822
} }
], ],
@ -1775,19 +1775,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 607.8333333333333, "x": 649.6666666666666,
"y": 606 "y": 606
}, },
{ {
"x": 607.8333333333333, "x": 649.6666666666666,
"y": 646 "y": 646
}, },
{ {
"x": 552.3333333333333, "x": 603.8333333333334,
"y": 646 "y": 646
}, },
{ {
"x": 552.3333333333333, "x": 603.8333333333334,
"y": 686 "y": 686
} }
], ],
@ -1823,11 +1823,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 624.8333333333333, "x": 676.3333333333334,
"y": 606 "y": 606
}, },
{ {
"x": 624.8333333333333, "x": 676.3333333333334,
"y": 686 "y": 686
} }
], ],
@ -1863,19 +1863,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 625.5833333333333, "x": 737,
"y": 360 "y": 360
}, },
{ {
"x": 625.5833333333333, "x": 737,
"y": 400 "y": 400
}, },
{ {
"x": 688.3333333333333, "x": 783,
"y": 400 "y": 400
}, },
{ {
"x": 688.3333333333333, "x": 783,
"y": 540 "y": 540
} }
], ],
@ -1911,11 +1911,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 701.5833333333333, "x": 813,
"y": 360 "y": 360
}, },
{ {
"x": 701.5833333333333, "x": 813,
"y": 540 "y": 540
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 340 KiB

After

Width:  |  Height:  |  Size: 340 KiB

View file

@ -7,10 +7,10 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 210, "x": 283,
"y": 982 "y": 832
}, },
"width": 53, "width": 160,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -48,10 +48,10 @@
"id": "b", "id": "b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 254, "x": 393,
"y": 1274 "y": 1124
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -89,10 +89,10 @@
"id": "c", "id": "c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 216, "x": 319,
"y": 294 "y": 294
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -130,10 +130,10 @@
"id": "d", "id": "d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 254, "x": 393,
"y": 686 "y": 686
}, },
"width": 54, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -171,10 +171,10 @@
"id": "e", "id": "e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 506,
"y": 982 "y": 832
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -212,10 +212,10 @@
"id": "f", "id": "f",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 365, "x": 536,
"y": 1128 "y": 978
}, },
"width": 51, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -253,10 +253,10 @@
"id": "g", "id": "g",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 225, "x": 352,
"y": 12 "y": 12
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -294,7 +294,7 @@
"id": "h", "id": "h",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 400, "x": 621,
"y": 158 "y": 158
}, },
"width": 53, "width": 53,
@ -335,7 +335,7 @@
"id": "i", "id": "i",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 402, "x": 623,
"y": 294 "y": 294
}, },
"width": 49, "width": 49,
@ -376,10 +376,10 @@
"id": "j", "id": "j",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 402, "x": 607,
"y": 540 "y": 540
}, },
"width": 50, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -417,7 +417,7 @@
"id": "k", "id": "k",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 328, "x": 533,
"y": 686 "y": 686
}, },
"width": 53, "width": 53,
@ -458,10 +458,10 @@
"id": "l", "id": "l",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 12, "x": 18,
"y": 982 "y": 832
}, },
"width": 49, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -499,10 +499,10 @@
"id": "m", "id": "m",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 42, "x": 51,
"y": 1274 "y": 1124
}, },
"width": 57, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -540,10 +540,10 @@
"id": "n", "id": "n",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 19, "x": 12,
"y": 686 "y": 686
}, },
"width": 53, "width": 200,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -581,10 +581,10 @@
"id": "o", "id": "o",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 93, "x": 156,
"y": 982 "y": 832
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -622,10 +622,10 @@
"id": "p", "id": "p",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 93, "x": 136,
"y": 1128 "y": 978
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -663,10 +663,10 @@
"id": "q", "id": "q",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 28, "x": 85,
"y": 12 "y": 12
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -704,7 +704,7 @@
"id": "r", "id": "r",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 140, "x": 234,
"y": 158 "y": 158
}, },
"width": 51, "width": 51,
@ -745,10 +745,10 @@
"id": "s", "id": "s",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 139, "x": 219,
"y": 294 "y": 294
}, },
"width": 52, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -786,10 +786,10 @@
"id": "t", "id": "t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 140, "x": 219,
"y": 540 "y": 540
}, },
"width": 51, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -827,10 +827,10 @@
"id": "u", "id": "u",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 168, "x": 257,
"y": 686 "y": 686
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -893,20 +893,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 237.3, "x": 363.3333333333333,
"y": 1048 "y": 898
}, },
{ {
"x": 237.3, "x": 363.3333333333333,
"y": 1234 "y": 1084
}, },
{ {
"x": 267.75, "x": 423.3333333333333,
"y": 1234 "y": 1084
}, },
{ {
"x": 267.75, "x": 423.3333333333333,
"y": 1274 "y": 1124
} }
], ],
"animated": false, "animated": false,
@ -941,20 +941,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 243, "x": 379.66666666666663,
"y": 360 "y": 360
}, },
{ {
"x": 243, "x": 379.66666666666663,
"y": 792 "y": 792
}, },
{ {
"x": 242.60000000000002, "x": 379.3333333333333,
"y": 792 "y": 792
}, },
{ {
"x": 242.60000000000002, "x": 379.3333333333333,
"y": 982 "y": 832
} }
], ],
"animated": false, "animated": false,
@ -989,20 +989,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 267.5, "x": 423.3333333333333,
"y": 752 "y": 752
}, },
{ {
"x": 267.5, "x": 423.3333333333333,
"y": 842 "y": 792
}, },
{ {
"x": 253.20000000000002, "x": 411.3333333333333,
"y": 842 "y": 792
}, },
{ {
"x": 253.20000000000002, "x": 411.3333333333333,
"y": 982 "y": 832
} }
], ],
"animated": false, "animated": false,
@ -1037,12 +1037,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 281, "x": 453.3333333333333,
"y": 752 "y": 752
}, },
{ {
"x": 281, "x": 453.3333333333333,
"y": 1274 "y": 1124
} }
], ],
"animated": false, "animated": false,
@ -1077,20 +1077,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 294.5, "x": 483.3333333333333,
"y": 752 "y": 752
}, },
{ {
"x": 294.5, "x": 483.3333333333333,
"y": 792 "y": 792
}, },
{ {
"x": 336.83333333333337, "x": 533.1666666666666,
"y": 792 "y": 792
}, },
{ {
"x": 336.83333333333337, "x": 533.1666666666666,
"y": 982 "y": 832
} }
], ],
"animated": false, "animated": false,
@ -1125,20 +1125,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 345.6666666666667, "x": 546.5,
"y": 1048 "y": 898
}, },
{ {
"x": 345.6666666666667, "x": 546.5,
"y": 1088 "y": 938
}, },
{ {
"x": 378.25, "x": 566.5,
"y": 1088 "y": 938
}, },
{ {
"x": 378.25, "x": 566.5,
"y": 1128 "y": 978
} }
], ],
"animated": false, "animated": false,
@ -1173,20 +1173,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 391, "x": 596.5,
"y": 1194 "y": 1044
}, },
{ {
"x": 391, "x": 596.5,
"y": 1234 "y": 1084
}, },
{ {
"x": 294.25, "x": 483.3333333333333,
"y": 1234 "y": 1084
}, },
{ {
"x": 294.25, "x": 483.3333333333333,
"y": 1274 "y": 1124
} }
], ],
"animated": false, "animated": false,
@ -1221,20 +1221,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 256.25, "x": 409.66666666666663,
"y": 360 "y": 360
}, },
{ {
"x": 256.25, "x": 409.66666666666663,
"y": 400 "y": 400
}, },
{ {
"x": 391, "x": 596.5,
"y": 400 "y": 400
}, },
{ {
"x": 391, "x": 596.5,
"y": 1128 "y": 978
} }
], ],
"animated": false, "animated": false,
@ -1269,11 +1269,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 243, "x": 379.66666666666663,
"y": 78 "y": 78
}, },
{ {
"x": 243, "x": 379.66666666666663,
"y": 294 "y": 294
} }
], ],
@ -1309,19 +1309,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 261, "x": 406.33333333333326,
"y": 78 "y": 78
}, },
{ {
"x": 261, "x": 406.33333333333326,
"y": 118 "y": 118
}, },
{ {
"x": 427, "x": 647.5,
"y": 118 "y": 118
}, },
{ {
"x": 427, "x": 647.5,
"y": 158 "y": 158
} }
], ],
@ -1357,11 +1357,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 427, "x": 647.5,
"y": 224 "y": 224
}, },
{ {
"x": 427, "x": 647.5,
"y": 294 "y": 294
} }
], ],
@ -1397,11 +1397,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 427, "x": 647.5,
"y": 360 "y": 360
}, },
{ {
"x": 427, "x": 647.5,
"y": 540 "y": 540
} }
], ],
@ -1437,19 +1437,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 418.6666666666667, "x": 634.1666666666666,
"y": 606 "y": 606
}, },
{ {
"x": 418.6666666666667, "x": 634.1666666666666,
"y": 646 "y": 646
}, },
{ {
"x": 354.5, "x": 559.8333333333333,
"y": 646 "y": 646
}, },
{ {
"x": 354.5, "x": 559.8333333333333,
"y": 686 "y": 686
} }
], ],
@ -1485,12 +1485,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 354.5, "x": 559.8333333333333,
"y": 752 "y": 752
}, },
{ {
"x": 354.5, "x": 559.8333333333333,
"y": 982 "y": 832
} }
], ],
"animated": false, "animated": false,
@ -1525,20 +1525,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 435.3333333333333, "x": 660.8333333333334,
"y": 606 "y": 606
}, },
{ {
"x": 435.3333333333333, "x": 660.8333333333334,
"y": 1088 "y": 938
}, },
{ {
"x": 403.75, "x": 626.5,
"y": 1088 "y": 938
}, },
{ {
"x": 403.75, "x": 626.5,
"y": 1128 "y": 978
} }
], ],
"animated": false, "animated": false,
@ -1573,20 +1573,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 36.5, "x": 58.66666666666666,
"y": 1048 "y": 898
}, },
{ {
"x": 36.5, "x": 58.66666666666666,
"y": 1234 "y": 1084
}, },
{ {
"x": 56.75, "x": 81.99999999999999,
"y": 1234 "y": 1084
}, },
{ {
"x": 56.75, "x": 81.99999999999999,
"y": 1274 "y": 1124
} }
], ],
"animated": false, "animated": false,
@ -1621,12 +1621,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 28.333333333333332, "x": 45.33333333333333,
"y": 752 "y": 752
}, },
{ {
"x": 28.333333333333332, "x": 45.33333333333333,
"y": 982 "y": 832
} }
], ],
"animated": false, "animated": false,
@ -1661,20 +1661,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 37.166666666666664, "x": 78.66666666666666,
"y": 752 "y": 752
}, },
{ {
"x": 37.166666666666664, "x": 78.66666666666666,
"y": 942 "y": 792
}, },
{ {
"x": 44.666666666666664, "x": 72,
"y": 942 "y": 792
}, },
{ {
"x": 44.666666666666664, "x": 72,
"y": 982 "y": 832
} }
], ],
"animated": false, "animated": false,
@ -1709,20 +1709,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 46, "x": 111.99999999999999,
"y": 752 "y": 752
}, },
{ {
"x": 46, "x": 111.99999999999999,
"y": 892 "y": 1124
},
{
"x": 71,
"y": 892
},
{
"x": 71,
"y": 1274
} }
], ],
"animated": false, "animated": false,
@ -1757,20 +1749,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 63.66666666666667, "x": 178.66666666666663,
"y": 752 "y": 752
}, },
{ {
"x": 63.66666666666667, "x": 178.66666666666663,
"y": 792 "y": 792
}, },
{ {
"x": 111, "x": 182.99999999999997,
"y": 792 "y": 792
}, },
{ {
"x": 111, "x": 182.99999999999997,
"y": 982 "y": 832
} }
], ],
"animated": false, "animated": false,
@ -1805,12 +1797,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 120, "x": 196.33333333333331,
"y": 1048 "y": 898
}, },
{ {
"x": 120, "x": 196.33333333333331,
"y": 1128 "y": 978
} }
], ],
"animated": false, "animated": false,
@ -1845,20 +1837,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 120, "x": 196.33333333333331,
"y": 1194 "y": 1044
}, },
{ {
"x": 120, "x": 196.33333333333331,
"y": 1234 "y": 1084
}, },
{ {
"x": 85.25, "x": 142,
"y": 1234 "y": 1084
}, },
{ {
"x": 85.25, "x": 142,
"y": 1274 "y": 1124
} }
], ],
"animated": false, "animated": false,
@ -1893,28 +1885,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 54.833333333333336, "x": 145.33333333333331,
"y": 752 "y": 752
}, },
{ {
"x": 54.833333333333336, "x": 145.33333333333331,
"y": 842 "y": 938
}, },
{ {
"x": 82, "x": 166.33333333333331,
"y": 842 "y": 938
}, },
{ {
"x": 82, "x": 166.33333333333331,
"y": 1088 "y": 978
},
{
"x": 106.75,
"y": 1088
},
{
"x": 106.75,
"y": 1128
} }
], ],
"animated": false, "animated": false,
@ -1949,11 +1933,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 46, "x": 112,
"y": 78 "y": 78
}, },
{ {
"x": 46, "x": 112,
"y": 686 "y": 686
} }
], ],
@ -1989,19 +1973,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 64, "x": 138.66666666666666,
"y": 78 "y": 78
}, },
{ {
"x": 64, "x": 138.66666666666666,
"y": 118 "y": 118
}, },
{ {
"x": 165.66666666666669, "x": 259.66666666666663,
"y": 118 "y": 118
}, },
{ {
"x": 165.66666666666669, "x": 259.66666666666663,
"y": 158 "y": 158
} }
], ],
@ -2037,11 +2021,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 165.66666666666669, "x": 259.66666666666663,
"y": 224 "y": 224
}, },
{ {
"x": 165.66666666666669, "x": 259.66666666666663,
"y": 294 "y": 294
} }
], ],
@ -2077,11 +2061,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 157, "x": 246.33333333333331,
"y": 360 "y": 360
}, },
{ {
"x": 157, "x": 246.33333333333331,
"y": 540 "y": 540
} }
], ],
@ -2117,19 +2101,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 174, "x": 273,
"y": 606 "y": 606
}, },
{ {
"x": 174, "x": 273,
"y": 646 "y": 646
}, },
{ {
"x": 195, "x": 297.3333333333333,
"y": 646 "y": 646
}, },
{ {
"x": 195, "x": 297.3333333333333,
"y": 686 "y": 686
} }
], ],
@ -2165,20 +2149,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 186, "x": 284,
"y": 752 "y": 752
}, },
{ {
"x": 186, "x": 284,
"y": 792 "y": 792
}, },
{ {
"x": 129, "x": 209.66666666666666,
"y": 792 "y": 792
}, },
{ {
"x": 129, "x": 209.66666666666666,
"y": 982 "y": 832
} }
], ],
"animated": false, "animated": false,
@ -2213,20 +2197,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 157, "x": 246.33333333333331,
"y": 606 "y": 606
}, },
{ {
"x": 157, "x": 246.33333333333331,
"y": 1088 "y": 938
}, },
{ {
"x": 133.25, "x": 226.33333333333331,
"y": 1088 "y": 938
}, },
{ {
"x": 133.25, "x": 226.33333333333331,
"y": 1128 "y": 978
} }
], ],
"animated": false, "animated": false,
@ -2261,19 +2245,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 229.75, "x": 349.66666666666663,
"y": 360 "y": 360
}, },
{ {
"x": 229.75, "x": 349.66666666666663,
"y": 500 "y": 450
}, },
{ {
"x": 174, "x": 273,
"y": 500 "y": 450
}, },
{ {
"x": 174, "x": 273,
"y": 540 "y": 540
} }
], ],
@ -2309,20 +2293,28 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 174.33333333333334, "x": 273,
"y": 360 "y": 360
}, },
{ {
"x": 174.33333333333334, "x": 273,
"y": 450 "y": 400
}, },
{ {
"x": 232, "x": 310.16666666666663,
"y": 450 "y": 400
}, },
{ {
"x": 232, "x": 310.16666666666663,
"y": 982 "y": 500
},
{
"x": 347.3333333333333,
"y": 500
},
{
"x": 347.3333333333333,
"y": 832
} }
], ],
"animated": false, "animated": false,
@ -2357,20 +2349,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 204, "x": 310.66666666666663,
"y": 752 "y": 752
}, },
{ {
"x": 204, "x": 310.66666666666663,
"y": 842 "y": 792
}, },
{ {
"x": 221.4, "x": 315.3333333333333,
"y": 842 "y": 792
}, },
{ {
"x": 221.4, "x": 315.3333333333333,
"y": 982 "y": 832
} }
], ],
"animated": false, "animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 343 KiB

After

Width:  |  Height:  |  Size: 343 KiB

View file

@ -89,10 +89,10 @@
"id": "c", "id": "c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 73, "x": 39,
"y": 731 "y": 731
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -376,11 +376,11 @@
"y": 691 "y": 691
}, },
{ {
"x": 86.25, "x": 69.5,
"y": 691 "y": 691
}, },
{ {
"x": 86.25, "x": 69.5,
"y": 731 "y": 731
} }
], ],
@ -464,11 +464,11 @@
"y": 691 "y": 691
}, },
{ {
"x": 112.75, "x": 129.5,
"y": 691 "y": 691
}, },
{ {
"x": 112.75, "x": 129.5,
"y": 731 "y": 731
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 656 KiB

After

Width:  |  Height:  |  Size: 655 KiB

View file

@ -7,10 +7,10 @@
"id": "top2", "id": "top2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 63, "x": 12,
"y": 12 "y": 12
}, },
"width": 180, "width": 220,
"height": 166, "height": 166,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -48,10 +48,10 @@
"id": "top2.start", "id": "top2.start",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 113, "x": 62,
"y": 62 "y": 62
}, },
"width": 80, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -89,8 +89,8 @@
"id": "a", "id": "a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 53, "x": 65,
"y": 263 "y": 313
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -130,8 +130,8 @@
"id": "b", "id": "b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 126, "x": 138,
"y": 263 "y": 313
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -171,8 +171,8 @@
"id": "c", "id": "c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 199, "x": 211,
"y": 263 "y": 313
}, },
"width": 53, "width": 53,
"height": 66, "height": 66,
@ -212,10 +212,10 @@
"id": "bottom", "id": "bottom",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 12, "x": 55,
"y": 464 "y": 464
}, },
"width": 172, "width": 220,
"height": 166, "height": 166,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -253,10 +253,10 @@
"id": "bottom.end", "id": "bottom.end",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 62, "x": 105,
"y": 514 "y": 514
}, },
"width": 72, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -319,20 +319,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 133, "x": 92,
"y": 128 "y": 128
}, },
{ {
"x": 133, "x": 92,
"y": 223 "y": 313
},
{
"x": 80,
"y": 223
},
{
"x": 80,
"y": 263
} }
], ],
"animated": false, "animated": false,
@ -367,12 +359,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 153, "x": 122,
"y": 128 "y": 128
}, },
{ {
"x": 153, "x": 122,
"y": 263 "y": 273
},
{
"x": 165,
"y": 273
},
{
"x": 165,
"y": 313
} }
], ],
"animated": false, "animated": false,
@ -407,20 +407,20 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 173, "x": 152,
"y": 128 "y": 128
}, },
{ {
"x": 173, "x": 152,
"y": 223 "y": 223
}, },
{ {
"x": 226, "x": 238,
"y": 223 "y": 223
}, },
{ {
"x": 226, "x": 238,
"y": 263 "y": 313
} }
], ],
"animated": false, "animated": false,
@ -455,11 +455,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 80, "x": 92,
"y": 329 "y": 379
}, },
{ {
"x": 80, "x": 92,
"y": 419
},
{
"x": 135,
"y": 419
},
{
"x": 135,
"y": 514 "y": 514
} }
], ],
@ -495,19 +503,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 153, "x": 165,
"y": 329 "y": 379
}, },
{ {
"x": 153, "x": 165,
"y": 369
},
{
"x": 98,
"y": 369
},
{
"x": 98,
"y": 514 "y": 514
} }
], ],
@ -543,19 +543,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 226, "x": 238,
"y": 329 "y": 379
}, },
{ {
"x": 226, "x": 238,
"y": 419 "y": 419
}, },
{ {
"x": 116, "x": 195,
"y": 419 "y": 419
}, },
{ {
"x": 116, "x": 195,
"y": 514 "y": 514
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 655 KiB

After

Width:  |  Height:  |  Size: 655 KiB

View file

@ -10,7 +10,7 @@
"x": 72, "x": 72,
"y": 12 "y": 12
}, },
"width": 53, "width": 120,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -48,10 +48,10 @@
"id": "y", "id": "y",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 80, "x": 105,
"y": 158 "y": 158
}, },
"width": 54, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -89,10 +89,10 @@
"id": "z", "id": "z",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 230, "x": 297,
"y": 12 "y": 12
}, },
"width": 52, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -251,11 +251,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 98.5, "x": 132,
"y": 78 "y": 78
}, },
{ {
"x": 98.5, "x": 132,
"y": 158 "y": 158
} }
], ],
@ -291,19 +291,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 256, "x": 337,
"y": 78 "y": 78
}, },
{ {
"x": 256, "x": 337,
"y": 118 "y": 118
}, },
{ {
"x": 116.5, "x": 158.66666666666666,
"y": 118 "y": 118
}, },
{ {
"x": 116.5, "x": 158.66666666666666,
"y": 158 "y": 158
} }
], ],
@ -339,19 +339,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 230, "x": 297,
"y": 34 "y": 34
}, },
{ {
"x": 180, "x": 247,
"y": 34 "y": 34
}, },
{ {
"x": 180, "x": 247,
"y": 56 "y": 56
}, },
{ {
"x": 230, "x": 297,
"y": 56 "y": 56
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 473 KiB

After

Width:  |  Height:  |  Size: 473 KiB

View file

@ -7,10 +7,10 @@
"id": "a_shape", "id": "a_shape",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 462, "x": 459,
"y": 12 "y": 12
}, },
"width": 108, "width": 120,
"height": 108, "height": 108,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -3697,11 +3697,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 516, "x": 519,
"y": 120 "y": 120
}, },
{ {
"x": 516, "x": 519,
"y": 210 "y": 210
}, },
{ {
@ -3825,11 +3825,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 543, "x": 549,
"y": 113 "y": 113
}, },
{ {
"x": 543, "x": 549,
"y": 160 "y": 160
}, },
{ {

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 828 KiB

After

Width:  |  Height:  |  Size: 828 KiB

View file

@ -7,10 +7,10 @@
"id": "bear", "id": "bear",
"type": "text", "type": "text",
"pos": { "pos": {
"x": 64, "x": 52,
"y": 133 "y": 133
}, },
"width": 44, "width": 80,
"height": 28, "height": 28,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -200,11 +200,11 @@
"y": 93 "y": 93
}, },
{ {
"x": 94.16666666666666, "x": 106.16666666666666,
"y": 93 "y": 93
}, },
{ {
"x": 94.16666666666666, "x": 106.16666666666666,
"y": 133 "y": 133
} }
], ],

View file

@ -776,7 +776,7 @@
.md .contains-task-list:dir(rtl) .task-list-item-checkbox { .md .contains-task-list:dir(rtl) .task-list-item-checkbox {
margin: 0 -1.6em 0.25em 0.2em; margin: 0 -1.6em 0.25em 0.2em;
} }
</style><g id="bear"><g class="shape" ></g><text x="86.000000" y="155.000000" class="text-bold fill-N1" style="text-anchor:middle;font-size:22px">bear</text></g><g id="mama bear"><g class="shape" ></g><text x="79.500000" y="45.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:28px">mama bear</text></g><g id="papa bear"><g class="shape" ></g><text x="234.000000" y="44.000000" class="text text-underline fill-N1" style="text-anchor:middle;font-size:32px">papa bear</text></g><g id="(mama bear -&gt; bear)[0]"><marker id="mk-3488378134" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 79.500000 55.000000 L 79.500000 129.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#260478598)" /></g><g id="(papa bear -&gt; bear)[0]"><path d="M 234.000000 55.000000 L 234.000000 83.000000 S 234.000000 93.000000 224.000000 93.000000 L 104.166667 93.000000 S 94.166667 93.000000 94.166667 103.000000 L 94.166667 129.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#260478598)" /></g><mask id="260478598" maskUnits="userSpaceOnUse" x="11" y="11" width="291" height="151"> </style><g id="bear"><g class="shape" ></g><text x="74.000000" y="155.000000" class="text-bold fill-N1" style="text-anchor:middle;font-size:22px">bear</text></g><g id="mama bear"><g class="shape" ></g><text x="79.500000" y="45.000000" class="text-italic fill-N2" style="text-anchor:middle;font-size:28px">mama bear</text></g><g id="papa bear"><g class="shape" ></g><text x="234.000000" y="44.000000" class="text text-underline fill-N1" style="text-anchor:middle;font-size:32px">papa bear</text></g><g id="(mama bear -&gt; bear)[0]"><marker id="mk-3488378134" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" class="connection fill-B1" stroke-width="2" /> </marker><path d="M 79.500000 55.000000 L 79.500000 129.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1672137039)" /></g><g id="(papa bear -&gt; bear)[0]"><path d="M 234.000000 55.000000 L 234.000000 83.000000 S 234.000000 93.000000 224.000000 93.000000 L 116.166667 93.000000 S 106.166667 93.000000 106.166667 103.000000 L 106.166667 129.000000" fill="none" class="connection stroke-B1" style="stroke-width:2;" marker-end="url(#mk-3488378134)" mask="url(#1672137039)" /></g><mask id="1672137039" maskUnits="userSpaceOnUse" x="11" y="11" width="291" height="151">
<rect x="11" y="11" width="291" height="151" fill="white"></rect> <rect x="11" y="11" width="291" height="151" fill="white"></rect>
</mask></svg></svg> </mask></svg></svg>

Before

Width:  |  Height:  |  Size: 806 KiB

After

Width:  |  Height:  |  Size: 806 KiB

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 371 KiB

After

Width:  |  Height:  |  Size: 372 KiB

View file

@ -48,10 +48,10 @@
"id": "b", "id": "b",
"type": "cloud", "type": "cloud",
"pos": { "pos": {
"x": 26, "x": 70,
"y": 213 "y": 213
}, },
"width": 155, "width": 180,
"height": 166, "height": 166,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -89,10 +89,10 @@
"id": "b.c", "id": "b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 76, "x": 120,
"y": 263 "y": 263
}, },
"width": 53, "width": 80,
"height": 66, "height": 66,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -130,7 +130,7 @@
"id": "d", "id": "d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 75, "x": 133,
"y": 454 "y": 454
}, },
"width": 54, "width": 54,
@ -324,14 +324,14 @@
}, },
{ {
"x": 38.5, "x": 38.5,
"y": 118 "y": 168
}, },
{ {
"x": 93.83333333333333, "x": 146.83333333333331,
"y": 118 "y": 168
}, },
{ {
"x": 93.83333333333333, "x": 146.83333333333331,
"y": 263 "y": 263
} }
], ],
@ -367,11 +367,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 102.66666666666666, "x": 160.16666666666666,
"y": 329 "y": 329
}, },
{ {
"x": 102.66666666666666, "x": 160.16666666666669,
"y": 454 "y": 454
} }
], ],
@ -412,6 +412,14 @@
}, },
{ {
"x": 111.5, "x": 111.5,
"y": 118
},
{
"x": 173.5,
"y": 118
},
{
"x": 173.5,
"y": 263 "y": 263
} }
], ],
@ -451,16 +459,8 @@
"y": 78 "y": 78
}, },
{ {
"x": 183.5, "x": 184,
"y": 118 "y": 214
},
{
"x": 121.5,
"y": 118
},
{
"x": 122,
"y": 213
} }
], ],
"animated": false, "animated": false,
@ -500,15 +500,15 @@
}, },
{ {
"x": 256, "x": 256,
"y": 168 "y": 118
}, },
{ {
"x": 131.5, "x": 193.5,
"y": 168 "y": 118
}, },
{ {
"x": 131, "x": 194,
"y": 218 "y": 219
} }
], ],
"animated": false, "animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 655 KiB

After

Width:  |  Height:  |  Size: 655 KiB