Merge pull request #267 from ejulio-ts/render-priority

Render priority
This commit is contained in:
ejulio-ts 2022-11-30 13:36:49 -08:00 committed by GitHub
commit 4c6dd8d9f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
406 changed files with 7262 additions and 4049 deletions

View file

@ -88,13 +88,14 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape {
shape := d2target.BaseShape() shape := d2target.BaseShape()
shape.SetType(obj.Attributes.Shape.Value) shape.SetType(obj.Attributes.Shape.Value)
shape.ID = obj.AbsID() shape.ID = obj.AbsID()
shape.ZIndex = obj.ZIndex
shape.Level = int(obj.Level())
shape.Pos = d2target.NewPoint(int(obj.TopLeft.X), int(obj.TopLeft.Y)) shape.Pos = d2target.NewPoint(int(obj.TopLeft.X), int(obj.TopLeft.Y))
shape.Width = int(obj.Width) shape.Width = int(obj.Width)
shape.Height = int(obj.Height) shape.Height = int(obj.Height)
text := obj.Text() text := obj.Text()
shape.FontSize = text.FontSize shape.FontSize = text.FontSize
shape.Level = int(obj.Level())
applyStyles(shape, obj) applyStyles(shape, obj)
applyTheme(shape, obj, theme) applyTheme(shape, obj, theme)
@ -133,6 +134,7 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape {
func toConnection(edge *d2graph.Edge, theme *d2themes.Theme) d2target.Connection { func toConnection(edge *d2graph.Edge, theme *d2themes.Theme) d2target.Connection {
connection := d2target.BaseConnection() connection := d2target.BaseConnection()
connection.ID = edge.AbsID() connection.ID = edge.AbsID()
connection.ZIndex = edge.ZIndex
// edge.Edge.ID = go2.StringToIntHash(connection.ID) // edge.Edge.ID = go2.StringToIntHash(connection.ID)
text := edge.Text() text := edge.Text()

View file

@ -78,6 +78,8 @@ type Object struct {
ChildrenArray []*Object `json:"-"` ChildrenArray []*Object `json:"-"`
Attributes Attributes `json:"attributes"` Attributes Attributes `json:"attributes"`
ZIndex int `json:"zIndex"`
} }
type Attributes struct { type Attributes struct {
@ -633,6 +635,8 @@ type Edge struct {
References []EdgeReference `json:"references,omitempty"` References []EdgeReference `json:"references,omitempty"`
Attributes Attributes `json:"attributes"` Attributes Attributes `json:"attributes"`
ZIndex int `json:"zIndex"`
} }
type EdgeReference struct { type EdgeReference struct {

View file

@ -10,6 +10,7 @@ import (
"fmt" "fmt"
"hash/fnv" "hash/fnv"
"io" "io"
"sort"
"strings" "strings"
"math" "math"
@ -983,26 +984,30 @@ func Render(diagram *d2target.Diagram) ([]byte, error) {
// SVG has no notion of z-index. The z-index is effectively the order it's drawn. // SVG has no notion of z-index. The z-index is effectively the order it's drawn.
// So draw from the least nested to most nested // So draw from the least nested to most nested
idToShape := make(map[string]d2target.Shape) idToShape := make(map[string]d2target.Shape)
highest := 1 allObjects := make([]DiagramObject, 0, len(diagram.Shapes)+len(diagram.Connections))
for _, s := range diagram.Shapes { for _, s := range diagram.Shapes {
highest = go2.Max(highest, s.Level)
idToShape[s.ID] = s idToShape[s.ID] = s
allObjects = append(allObjects, s)
} }
for i := 1; i <= highest; i++ { for _, c := range diagram.Connections {
for _, s := range diagram.Shapes { allObjects = append(allObjects, c)
if s.Level == i { }
sortObjects(allObjects)
markers := map[string]struct{}{}
for _, obj := range allObjects {
if c, is := obj.(d2target.Connection); is {
drawConnection(buf, c, markers, idToShape)
} else if s, is := obj.(d2target.Shape); is {
err := drawShape(buf, s) err := drawShape(buf, s)
if err != nil { if err != nil {
return nil, err return nil, err
} }
} else {
return nil, fmt.Errorf("unknow object of type %T", obj)
} }
} }
}
markers := map[string]struct{}{}
for _, c := range diagram.Connections {
drawConnection(buf, c, markers, idToShape)
}
embedFonts(buf) embedFonts(buf)
@ -1010,6 +1015,39 @@ func Render(diagram *d2target.Diagram) ([]byte, error) {
return buf.Bytes(), nil return buf.Bytes(), nil
} }
type DiagramObject interface {
GetID() string
GetZIndex() int
}
// sortObjects sorts all diagrams objects (shapes and connections) in the desired drawing order
// the sorting criteria is:
// 1. zIndex, lower comes first
// 2. two shapes with the same zIndex are sorted by their level (container nesting), containers come first
// 3. two shapes with the same zIndex and same level, are sorted in the order they were exported
// 4. shape and edge, shapes come first
func sortObjects(allObjects []DiagramObject) {
sort.SliceStable(allObjects, func(i, j int) bool {
// first sort by zIndex
iZIndex := allObjects[i].GetZIndex()
jZIndex := allObjects[j].GetZIndex()
if iZIndex != jZIndex {
return iZIndex < jZIndex
}
// then, if both are shapes, parents come before their children
iShape, iIsShape := allObjects[i].(d2target.Shape)
jShape, jIsShape := allObjects[j].(d2target.Shape)
if iIsShape && jIsShape {
return iShape.Level < jShape.Level
}
// then, shapes come before connections
_, jIsConnection := allObjects[j].(d2target.Connection)
return iIsShape && jIsConnection
})
}
func hash(s string) string { func hash(s string) string {
const secret = "lalalas" const secret = "lalalas"
h := fnv.New32a() h := fnv.New32a()

View file

@ -0,0 +1,83 @@
package d2svg
import (
"testing"
"oss.terrastruct.com/d2/d2target"
)
func TestSortObjects(t *testing.T) {
allObjects := []DiagramObject{
// same zIndex and level, should keep in this order
d2target.Shape{
ID: "0",
ZIndex: 0,
Level: 0,
},
d2target.Shape{
ID: "1",
ZIndex: 0,
Level: 0,
},
// same zIndex, different level, should be swapped
d2target.Shape{
ID: "2",
ZIndex: 0,
Level: 1,
},
d2target.Shape{
ID: "3",
ZIndex: 0,
Level: 0,
},
// different zIndex, should come after connections
d2target.Shape{
ID: "4",
ZIndex: 1,
Level: 0,
},
// connections come after shapes
d2target.Connection{
ID: "5",
ZIndex: 0,
},
d2target.Connection{
ID: "6",
ZIndex: 0,
},
// this should be last object
d2target.Connection{
ID: "7",
ZIndex: 2,
},
// this should be the first object
d2target.Connection{
ID: "8",
ZIndex: -1,
},
}
expectedOrder := []DiagramObject{
allObjects[8],
allObjects[0],
allObjects[1],
allObjects[3],
allObjects[2],
allObjects[5],
allObjects[6],
allObjects[4],
allObjects[7],
}
sortObjects(allObjects)
if len(allObjects) != len(expectedOrder) {
t.Fatal("number of objects changed while sorting")
}
for i := 0; i < len(allObjects); i++ {
if allObjects[i].GetID() != expectedOrder[i].GetID() {
t.Fatalf("object order differs at index %d, got '%s' expected '%s'", i, allObjects[i].GetID(), expectedOrder[i].GetID())
}
}
}

View file

@ -91,7 +91,6 @@ type Shape struct {
Pos Point `json:"pos"` Pos Point `json:"pos"`
Width int `json:"width"` Width int `json:"width"`
Height int `json:"height"` Height int `json:"height"`
Level int `json:"level"`
Opacity float64 `json:"opacity"` Opacity float64 `json:"opacity"`
StrokeDash float64 `json:"strokeDash"` StrokeDash float64 `json:"strokeDash"`
@ -117,6 +116,9 @@ type Shape struct {
Text Text
LabelPosition string `json:"labelPosition,omitempty"` LabelPosition string `json:"labelPosition,omitempty"`
ZIndex int `json:"zIndex"`
Level int `json:"level"`
} }
func (s *Shape) SetType(t string) { func (s *Shape) SetType(t string) {
@ -130,6 +132,14 @@ func (s *Shape) SetType(t string) {
s.Type = strings.ToLower(t) s.Type = strings.ToLower(t)
} }
func (s Shape) GetZIndex() int {
return s.ZIndex
}
func (s Shape) GetID() string {
return s.ID
}
type Text struct { type Text struct {
Label string `json:"label"` Label string `json:"label"`
FontSize int `json:"fontSize"` FontSize int `json:"fontSize"`
@ -183,6 +193,8 @@ type Connection struct {
Animated bool `json:"animated"` Animated bool `json:"animated"`
Tooltip string `json:"tooltip"` Tooltip string `json:"tooltip"`
Icon *url.URL `json:"icon"` Icon *url.URL `json:"icon"`
ZIndex int `json:"zIndex"`
} }
func BaseConnection() *Connection { func BaseConnection() *Connection {
@ -210,6 +222,14 @@ func (c *Connection) GetLabelTopLeft() *geo.Point {
) )
} }
func (c Connection) GetZIndex() int {
return c.ZIndex
}
func (c Connection) GetID() string {
return c.ID
}
type Arrowhead string type Arrowhead string
const ( const (

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -162,7 +165,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> c)[0]", "id": "(a -> c)[0]",
@ -209,7 +213,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -153,7 +156,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> c)[0]", "id": "(a -> c)[0]",
@ -199,7 +203,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -124,7 +126,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -115,7 +117,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 213, "width": 213,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.b", "id": "a.b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 214, "width": 214,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c.d", "id": "c.d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -212,7 +216,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 263, "width": 263,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.b", "id": "a.b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 264, "width": 264,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c.d", "id": "c.d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -191,7 +195,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -124,7 +126,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -115,7 +117,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 171, "width": 171,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 71, "labelWidth": 71,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "square", "id": "square",
@ -48,7 +49,6 @@
}, },
"width": 154, "width": 154,
"height": 154, "height": 154,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 54, "labelWidth": 54,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "page", "id": "page",
@ -86,7 +88,6 @@
}, },
"width": 139, "width": 139,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 39, "labelWidth": 39,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "parallelogram", "id": "parallelogram",
@ -124,7 +127,6 @@
}, },
"width": 204, "width": 204,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 104, "labelWidth": 104,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "document", "id": "document",
@ -162,7 +166,6 @@
}, },
"width": 177, "width": 177,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cylinder", "id": "cylinder",
@ -200,7 +205,6 @@
}, },
"width": 164, "width": 164,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 64, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "queue", "id": "queue",
@ -238,7 +244,6 @@
}, },
"width": 149, "width": 149,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 49, "labelWidth": 49,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "package", "id": "package",
@ -276,7 +283,6 @@
}, },
"width": 163, "width": 163,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "step", "id": "step",
@ -314,7 +322,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "callout", "id": "callout",
@ -352,7 +361,6 @@
}, },
"width": 155, "width": 155,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 55, "labelWidth": 55,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "stored_data", "id": "stored_data",
@ -390,7 +400,6 @@
}, },
"width": 191, "width": 191,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 91, "labelWidth": 91,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "person", "id": "person",
@ -428,7 +439,6 @@
}, },
"width": 153, "width": 153,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 53,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "diamond", "id": "diamond",
@ -466,7 +478,6 @@
}, },
"width": 168, "width": 168,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 68, "labelWidth": 68,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "oval", "id": "oval",
@ -504,7 +517,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "circle", "id": "circle",
@ -542,7 +556,6 @@
}, },
"width": 144, "width": 144,
"height": 144, "height": 144,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 44, "labelWidth": 44,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "hexagon", "id": "hexagon",
@ -580,7 +595,6 @@
}, },
"width": 165, "width": 165,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cloud", "id": "cloud",
@ -618,7 +634,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -694,7 +711,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(square -> page)[0]", "id": "(square -> page)[0]",
@ -741,7 +759,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(parallelogram -> document)[0]", "id": "(parallelogram -> document)[0]",
@ -788,7 +807,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(document -> cylinder)[0]", "id": "(document -> cylinder)[0]",
@ -835,7 +855,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(queue -> package)[0]", "id": "(queue -> package)[0]",
@ -882,7 +903,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(package -> step)[0]", "id": "(package -> step)[0]",
@ -929,7 +951,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(callout -> stored_data)[0]", "id": "(callout -> stored_data)[0]",
@ -976,7 +999,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(stored_data -> person)[0]", "id": "(stored_data -> person)[0]",
@ -1023,7 +1047,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(diamond -> oval)[0]", "id": "(diamond -> oval)[0]",
@ -1070,7 +1095,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(oval -> circle)[0]", "id": "(oval -> circle)[0]",
@ -1117,7 +1143,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hexagon -> cloud)[0]", "id": "(hexagon -> cloud)[0]",
@ -1164,7 +1191,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 171, "width": 171,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 71, "labelWidth": 71,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "square", "id": "square",
@ -48,7 +49,6 @@
}, },
"width": 154, "width": 154,
"height": 154, "height": 154,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 54, "labelWidth": 54,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "page", "id": "page",
@ -86,7 +88,6 @@
}, },
"width": 139, "width": 139,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 39, "labelWidth": 39,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "parallelogram", "id": "parallelogram",
@ -124,7 +127,6 @@
}, },
"width": 204, "width": 204,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 104, "labelWidth": 104,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "document", "id": "document",
@ -162,7 +166,6 @@
}, },
"width": 177, "width": 177,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cylinder", "id": "cylinder",
@ -200,7 +205,6 @@
}, },
"width": 164, "width": 164,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 64, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "queue", "id": "queue",
@ -238,7 +244,6 @@
}, },
"width": 149, "width": 149,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 49, "labelWidth": 49,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "package", "id": "package",
@ -276,7 +283,6 @@
}, },
"width": 163, "width": 163,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "step", "id": "step",
@ -314,7 +322,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "callout", "id": "callout",
@ -352,7 +361,6 @@
}, },
"width": 155, "width": 155,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 55, "labelWidth": 55,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "stored_data", "id": "stored_data",
@ -390,7 +400,6 @@
}, },
"width": 191, "width": 191,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 91, "labelWidth": 91,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "person", "id": "person",
@ -428,7 +439,6 @@
}, },
"width": 153, "width": 153,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 53,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "diamond", "id": "diamond",
@ -466,7 +478,6 @@
}, },
"width": 168, "width": 168,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 68, "labelWidth": 68,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "oval", "id": "oval",
@ -504,7 +517,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "circle", "id": "circle",
@ -542,7 +556,6 @@
}, },
"width": 144, "width": 144,
"height": 144, "height": 144,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 44, "labelWidth": 44,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "hexagon", "id": "hexagon",
@ -580,7 +595,6 @@
}, },
"width": 165, "width": 165,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cloud", "id": "cloud",
@ -618,7 +634,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -685,7 +702,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(square -> page)[0]", "id": "(square -> page)[0]",
@ -723,7 +741,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(parallelogram -> document)[0]", "id": "(parallelogram -> document)[0]",
@ -761,7 +780,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(document -> cylinder)[0]", "id": "(document -> cylinder)[0]",
@ -799,7 +819,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(queue -> package)[0]", "id": "(queue -> package)[0]",
@ -837,7 +858,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(package -> step)[0]", "id": "(package -> step)[0]",
@ -875,7 +897,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(callout -> stored_data)[0]", "id": "(callout -> stored_data)[0]",
@ -913,7 +936,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(stored_data -> person)[0]", "id": "(stored_data -> person)[0]",
@ -951,7 +975,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(diamond -> oval)[0]", "id": "(diamond -> oval)[0]",
@ -989,7 +1014,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(oval -> circle)[0]", "id": "(oval -> circle)[0]",
@ -1027,7 +1053,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hexagon -> cloud)[0]", "id": "(hexagon -> cloud)[0]",
@ -1065,7 +1092,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 171, "width": 171,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 71, "labelWidth": 71,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "square", "id": "square",
@ -48,7 +49,6 @@
}, },
"width": 154, "width": 154,
"height": 154, "height": 154,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 54, "labelWidth": 54,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "page", "id": "page",
@ -86,7 +88,6 @@
}, },
"width": 139, "width": 139,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 39, "labelWidth": 39,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "parallelogram", "id": "parallelogram",
@ -124,7 +127,6 @@
}, },
"width": 204, "width": 204,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 104, "labelWidth": 104,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "document", "id": "document",
@ -162,7 +166,6 @@
}, },
"width": 177, "width": 177,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cylinder", "id": "cylinder",
@ -200,7 +205,6 @@
}, },
"width": 164, "width": 164,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 64, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "queue", "id": "queue",
@ -238,7 +244,6 @@
}, },
"width": 149, "width": 149,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 49, "labelWidth": 49,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "package", "id": "package",
@ -276,7 +283,6 @@
}, },
"width": 163, "width": 163,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "step", "id": "step",
@ -314,7 +322,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "callout", "id": "callout",
@ -352,7 +361,6 @@
}, },
"width": 155, "width": 155,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 55, "labelWidth": 55,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "stored_data", "id": "stored_data",
@ -390,7 +400,6 @@
}, },
"width": 191, "width": 191,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 91, "labelWidth": 91,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "person", "id": "person",
@ -428,7 +439,6 @@
}, },
"width": 153, "width": 153,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 53,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "diamond", "id": "diamond",
@ -466,7 +478,6 @@
}, },
"width": 168, "width": 168,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 68, "labelWidth": 68,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "oval", "id": "oval",
@ -504,7 +517,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "circle", "id": "circle",
@ -542,7 +556,6 @@
}, },
"width": 144, "width": 144,
"height": 144, "height": 144,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 44, "labelWidth": 44,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "hexagon", "id": "hexagon",
@ -580,7 +595,6 @@
}, },
"width": 165, "width": 165,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cloud", "id": "cloud",
@ -618,7 +634,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -694,7 +711,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(square -> page)[0]", "id": "(square -> page)[0]",
@ -741,7 +759,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(parallelogram -> document)[0]", "id": "(parallelogram -> document)[0]",
@ -788,7 +807,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(document -> cylinder)[0]", "id": "(document -> cylinder)[0]",
@ -835,7 +855,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(queue -> package)[0]", "id": "(queue -> package)[0]",
@ -882,7 +903,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(package -> step)[0]", "id": "(package -> step)[0]",
@ -929,7 +951,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(callout -> stored_data)[0]", "id": "(callout -> stored_data)[0]",
@ -976,7 +999,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(stored_data -> person)[0]", "id": "(stored_data -> person)[0]",
@ -1023,7 +1047,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(diamond -> oval)[0]", "id": "(diamond -> oval)[0]",
@ -1070,7 +1095,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(oval -> circle)[0]", "id": "(oval -> circle)[0]",
@ -1117,7 +1143,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hexagon -> cloud)[0]", "id": "(hexagon -> cloud)[0]",
@ -1164,7 +1191,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 171, "width": 171,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 71, "labelWidth": 71,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "square", "id": "square",
@ -48,7 +49,6 @@
}, },
"width": 154, "width": 154,
"height": 154, "height": 154,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 54, "labelWidth": 54,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "page", "id": "page",
@ -86,7 +88,6 @@
}, },
"width": 139, "width": 139,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 39, "labelWidth": 39,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "parallelogram", "id": "parallelogram",
@ -124,7 +127,6 @@
}, },
"width": 204, "width": 204,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 104, "labelWidth": 104,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "document", "id": "document",
@ -162,7 +166,6 @@
}, },
"width": 177, "width": 177,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cylinder", "id": "cylinder",
@ -200,7 +205,6 @@
}, },
"width": 164, "width": 164,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 64, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "queue", "id": "queue",
@ -238,7 +244,6 @@
}, },
"width": 149, "width": 149,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 49, "labelWidth": 49,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "package", "id": "package",
@ -276,7 +283,6 @@
}, },
"width": 163, "width": 163,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "step", "id": "step",
@ -314,7 +322,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "callout", "id": "callout",
@ -352,7 +361,6 @@
}, },
"width": 155, "width": 155,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 55, "labelWidth": 55,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "stored_data", "id": "stored_data",
@ -390,7 +400,6 @@
}, },
"width": 191, "width": 191,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 91, "labelWidth": 91,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "person", "id": "person",
@ -428,7 +439,6 @@
}, },
"width": 153, "width": 153,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 53,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "diamond", "id": "diamond",
@ -466,7 +478,6 @@
}, },
"width": 168, "width": 168,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 68, "labelWidth": 68,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "oval", "id": "oval",
@ -504,7 +517,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "circle", "id": "circle",
@ -542,7 +556,6 @@
}, },
"width": 144, "width": 144,
"height": 144, "height": 144,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 44, "labelWidth": 44,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "hexagon", "id": "hexagon",
@ -580,7 +595,6 @@
}, },
"width": 165, "width": 165,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cloud", "id": "cloud",
@ -618,7 +634,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -685,7 +702,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(square -> page)[0]", "id": "(square -> page)[0]",
@ -723,7 +741,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(parallelogram -> document)[0]", "id": "(parallelogram -> document)[0]",
@ -761,7 +780,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(document -> cylinder)[0]", "id": "(document -> cylinder)[0]",
@ -799,7 +819,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(queue -> package)[0]", "id": "(queue -> package)[0]",
@ -837,7 +858,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(package -> step)[0]", "id": "(package -> step)[0]",
@ -875,7 +897,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(callout -> stored_data)[0]", "id": "(callout -> stored_data)[0]",
@ -913,7 +936,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(stored_data -> person)[0]", "id": "(stored_data -> person)[0]",
@ -951,7 +975,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(diamond -> oval)[0]", "id": "(diamond -> oval)[0]",
@ -989,7 +1014,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(oval -> circle)[0]", "id": "(oval -> circle)[0]",
@ -1027,7 +1053,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hexagon -> cloud)[0]", "id": "(hexagon -> cloud)[0]",
@ -1065,7 +1092,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 171, "width": 171,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 71, "labelWidth": 71,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "square", "id": "square",
@ -48,7 +49,6 @@
}, },
"width": 154, "width": 154,
"height": 154, "height": 154,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 54, "labelWidth": 54,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "page", "id": "page",
@ -86,7 +88,6 @@
}, },
"width": 139, "width": 139,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 39, "labelWidth": 39,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "parallelogram", "id": "parallelogram",
@ -124,7 +127,6 @@
}, },
"width": 204, "width": 204,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 104, "labelWidth": 104,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "document", "id": "document",
@ -162,7 +166,6 @@
}, },
"width": 177, "width": 177,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cylinder", "id": "cylinder",
@ -200,7 +205,6 @@
}, },
"width": 164, "width": 164,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 64, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "queue", "id": "queue",
@ -238,7 +244,6 @@
}, },
"width": 149, "width": 149,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 49, "labelWidth": 49,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "package", "id": "package",
@ -276,7 +283,6 @@
}, },
"width": 163, "width": 163,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "step", "id": "step",
@ -314,7 +322,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "callout", "id": "callout",
@ -352,7 +361,6 @@
}, },
"width": 155, "width": 155,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 55, "labelWidth": 55,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "stored_data", "id": "stored_data",
@ -390,7 +400,6 @@
}, },
"width": 191, "width": 191,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 91, "labelWidth": 91,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "person", "id": "person",
@ -428,7 +439,6 @@
}, },
"width": 153, "width": 153,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 53,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "diamond", "id": "diamond",
@ -466,7 +478,6 @@
}, },
"width": 168, "width": 168,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 68, "labelWidth": 68,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "oval", "id": "oval",
@ -504,7 +517,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "circle", "id": "circle",
@ -542,7 +556,6 @@
}, },
"width": 144, "width": 144,
"height": 144, "height": 144,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 44, "labelWidth": 44,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "hexagon", "id": "hexagon",
@ -580,7 +595,6 @@
}, },
"width": 165, "width": 165,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cloud", "id": "cloud",
@ -618,7 +634,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -694,7 +711,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(square -> page)[0]", "id": "(square -> page)[0]",
@ -741,7 +759,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(parallelogram -> document)[0]", "id": "(parallelogram -> document)[0]",
@ -788,7 +807,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(document -> cylinder)[0]", "id": "(document -> cylinder)[0]",
@ -835,7 +855,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(queue -> package)[0]", "id": "(queue -> package)[0]",
@ -882,7 +903,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(package -> step)[0]", "id": "(package -> step)[0]",
@ -929,7 +951,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(callout -> stored_data)[0]", "id": "(callout -> stored_data)[0]",
@ -976,7 +999,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(stored_data -> person)[0]", "id": "(stored_data -> person)[0]",
@ -1023,7 +1047,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(diamond -> oval)[0]", "id": "(diamond -> oval)[0]",
@ -1070,7 +1095,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(oval -> circle)[0]", "id": "(oval -> circle)[0]",
@ -1117,7 +1143,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hexagon -> cloud)[0]", "id": "(hexagon -> cloud)[0]",
@ -1164,7 +1191,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 171, "width": 171,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 71, "labelWidth": 71,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "square", "id": "square",
@ -48,7 +49,6 @@
}, },
"width": 154, "width": 154,
"height": 154, "height": 154,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 54, "labelWidth": 54,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "page", "id": "page",
@ -86,7 +88,6 @@
}, },
"width": 139, "width": 139,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 39, "labelWidth": 39,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "parallelogram", "id": "parallelogram",
@ -124,7 +127,6 @@
}, },
"width": 204, "width": 204,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 104, "labelWidth": 104,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "document", "id": "document",
@ -162,7 +166,6 @@
}, },
"width": 177, "width": 177,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cylinder", "id": "cylinder",
@ -200,7 +205,6 @@
}, },
"width": 164, "width": 164,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 64, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "queue", "id": "queue",
@ -238,7 +244,6 @@
}, },
"width": 149, "width": 149,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 49, "labelWidth": 49,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "package", "id": "package",
@ -276,7 +283,6 @@
}, },
"width": 163, "width": 163,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "step", "id": "step",
@ -314,7 +322,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "callout", "id": "callout",
@ -352,7 +361,6 @@
}, },
"width": 155, "width": 155,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 55, "labelWidth": 55,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "stored_data", "id": "stored_data",
@ -390,7 +400,6 @@
}, },
"width": 191, "width": 191,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 91, "labelWidth": 91,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "person", "id": "person",
@ -428,7 +439,6 @@
}, },
"width": 153, "width": 153,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 53,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "diamond", "id": "diamond",
@ -466,7 +478,6 @@
}, },
"width": 168, "width": 168,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 68, "labelWidth": 68,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "oval", "id": "oval",
@ -504,7 +517,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "circle", "id": "circle",
@ -542,7 +556,6 @@
}, },
"width": 144, "width": 144,
"height": 144, "height": 144,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 44, "labelWidth": 44,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "hexagon", "id": "hexagon",
@ -580,7 +595,6 @@
}, },
"width": 165, "width": 165,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cloud", "id": "cloud",
@ -618,7 +634,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -685,7 +702,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(square -> page)[0]", "id": "(square -> page)[0]",
@ -723,7 +741,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(parallelogram -> document)[0]", "id": "(parallelogram -> document)[0]",
@ -761,7 +780,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(document -> cylinder)[0]", "id": "(document -> cylinder)[0]",
@ -799,7 +819,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(queue -> package)[0]", "id": "(queue -> package)[0]",
@ -837,7 +858,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(package -> step)[0]", "id": "(package -> step)[0]",
@ -875,7 +897,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(callout -> stored_data)[0]", "id": "(callout -> stored_data)[0]",
@ -913,7 +936,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(stored_data -> person)[0]", "id": "(stored_data -> person)[0]",
@ -951,7 +975,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(diamond -> oval)[0]", "id": "(diamond -> oval)[0]",
@ -989,7 +1014,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(oval -> circle)[0]", "id": "(oval -> circle)[0]",
@ -1027,7 +1053,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hexagon -> cloud)[0]", "id": "(hexagon -> cloud)[0]",
@ -1065,7 +1092,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 7, "strokeWidth": 7,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 8, "strokeWidth": 8,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 8, "strokeWidth": 8,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "Oval", "id": "Oval",
@ -124,7 +127,6 @@
}, },
"width": 100, "width": 100,
"height": 100, "height": 100,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 6, "strokeWidth": 6,
@ -150,7 +152,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 0, "labelWidth": 0,
"labelHeight": 0 "labelHeight": 0,
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -199,7 +203,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -258,7 +263,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a <-> Oval)[0]", "id": "(a <-> Oval)[0]",
@ -305,7 +311,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -- a)[0]", "id": "(c -- a)[0]",
@ -352,7 +359,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(Oval <-> c)[0]", "id": "(Oval <-> c)[0]",
@ -411,7 +419,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 7, "strokeWidth": 7,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 8, "strokeWidth": 8,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 8, "strokeWidth": 8,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "Oval", "id": "Oval",
@ -124,7 +127,6 @@
}, },
"width": 100, "width": 100,
"height": 100, "height": 100,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 6, "strokeWidth": 6,
@ -150,7 +152,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 0, "labelWidth": 0,
"labelHeight": 0 "labelHeight": 0,
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -198,7 +202,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -236,7 +241,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a <-> Oval)[0]", "id": "(a <-> Oval)[0]",
@ -274,7 +280,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -- a)[0]", "id": "(c -- a)[0]",
@ -320,7 +327,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(Oval <-> c)[0]", "id": "(Oval <-> c)[0]",
@ -374,7 +382,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -124,7 +126,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -115,7 +117,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "j", "id": "j",
@ -352,7 +361,6 @@
}, },
"width": 110, "width": 110,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 10, "labelWidth": 10,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "k", "id": "k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "l", "id": "l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "m", "id": "m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "n", "id": "n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "o", "id": "o",
@ -542,7 +556,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -618,7 +633,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> c)[0]", "id": "(a -> c)[0]",
@ -665,7 +681,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> d)[0]", "id": "(b -> d)[0]",
@ -712,7 +729,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> e)[0]", "id": "(b -> e)[0]",
@ -759,7 +777,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> f)[0]", "id": "(c -> f)[0]",
@ -806,7 +825,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> g)[0]", "id": "(c -> g)[0]",
@ -853,7 +873,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> h)[0]", "id": "(d -> h)[0]",
@ -900,7 +921,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> i)[0]", "id": "(d -> i)[0]",
@ -947,7 +969,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> j)[0]", "id": "(e -> j)[0]",
@ -994,7 +1017,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> k)[0]", "id": "(e -> k)[0]",
@ -1041,7 +1065,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> l)[0]", "id": "(f -> l)[0]",
@ -1088,7 +1113,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> m)[0]", "id": "(f -> m)[0]",
@ -1135,7 +1161,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> n)[0]", "id": "(g -> n)[0]",
@ -1182,7 +1209,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> o)[0]", "id": "(g -> o)[0]",
@ -1229,7 +1257,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "j", "id": "j",
@ -352,7 +361,6 @@
}, },
"width": 110, "width": 110,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 10, "labelWidth": 10,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "k", "id": "k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "l", "id": "l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "m", "id": "m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "n", "id": "n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "o", "id": "o",
@ -542,7 +556,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -609,7 +624,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> c)[0]", "id": "(a -> c)[0]",
@ -655,7 +671,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> d)[0]", "id": "(b -> d)[0]",
@ -701,7 +718,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> e)[0]", "id": "(b -> e)[0]",
@ -739,7 +757,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> f)[0]", "id": "(c -> f)[0]",
@ -785,7 +804,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> g)[0]", "id": "(c -> g)[0]",
@ -823,7 +843,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> h)[0]", "id": "(d -> h)[0]",
@ -861,7 +882,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> i)[0]", "id": "(d -> i)[0]",
@ -907,7 +929,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> j)[0]", "id": "(e -> j)[0]",
@ -945,7 +968,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> k)[0]", "id": "(e -> k)[0]",
@ -991,7 +1015,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> l)[0]", "id": "(f -> l)[0]",
@ -1029,7 +1054,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> m)[0]", "id": "(f -> m)[0]",
@ -1075,7 +1101,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> n)[0]", "id": "(g -> n)[0]",
@ -1121,7 +1148,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> o)[0]", "id": "(g -> o)[0]",
@ -1159,7 +1187,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 251, "width": 251,
"height": 452, "height": 452,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 46, "labelWidth": 46,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "aaa.bbb", "id": "aaa.bbb",
@ -48,7 +49,6 @@
}, },
"width": 132, "width": 132,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ddd", "id": "ddd",
@ -86,7 +88,6 @@
}, },
"width": 133, "width": 133,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 33, "labelWidth": 33,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "eee", "id": "eee",
@ -124,7 +127,6 @@
}, },
"width": 130, "width": 130,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 30, "labelWidth": 30,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "aaa.ccc", "id": "aaa.ccc",
@ -162,7 +166,6 @@
}, },
"width": 128, "width": 128,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 28, "labelWidth": 28,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -238,7 +243,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(eee <- aaa.ccc)[0]", "id": "(eee <- aaa.ccc)[0]",
@ -285,7 +291,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 430, "width": 430,
"height": 317, "height": 317,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 46, "labelWidth": 46,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "aaa.bbb", "id": "aaa.bbb",
@ -48,7 +49,6 @@
}, },
"width": 132, "width": 132,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ddd", "id": "ddd",
@ -86,7 +88,6 @@
}, },
"width": 133, "width": 133,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 33, "labelWidth": 33,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "eee", "id": "eee",
@ -124,7 +127,6 @@
}, },
"width": 130, "width": 130,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 30, "labelWidth": 30,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "aaa.ccc", "id": "aaa.ccc",
@ -162,7 +166,6 @@
}, },
"width": 128, "width": 128,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 28, "labelWidth": 28,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -229,7 +234,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(eee <- aaa.ccc)[0]", "id": "(eee <- aaa.ccc)[0]",
@ -267,7 +273,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 1117, "width": 1117,
"height": 1654, "height": 1654,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "aa.bb", "id": "aa.bb",
@ -48,7 +49,6 @@
}, },
"width": 776, "width": 776,
"height": 1554, "height": 1554,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "aa.bb.cc", "id": "aa.bb.cc",
@ -86,7 +88,6 @@
}, },
"width": 510, "width": 510,
"height": 676, "height": 676,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "aa.bb.cc.dd", "id": "aa.bb.cc.dd",
@ -124,7 +127,6 @@
}, },
"width": 355, "width": 355,
"height": 226, "height": 226,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 4
}, },
{ {
"id": "aa.bb.cc.dd.ee", "id": "aa.bb.cc.dd.ee",
@ -162,7 +166,6 @@
}, },
"width": 16, "width": 16,
"height": 24, "height": 24,
"level": 5,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -188,7 +191,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 5
}, },
{ {
"id": "aa.bb.cc.dd.ff", "id": "aa.bb.cc.dd.ff",
@ -199,7 +204,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 5,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -226,7 +230,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 5
}, },
{ {
"id": "aa.bb.cc.gg", "id": "aa.bb.cc.gg",
@ -237,7 +243,6 @@
}, },
"width": 17, "width": 17,
"height": 24, "height": 24,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -263,7 +268,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 4
}, },
{ {
"id": "aa.bb.cc.hh", "id": "aa.bb.cc.hh",
@ -274,7 +281,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -301,7 +307,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
}, },
{ {
"id": "aa.bb.ii", "id": "aa.bb.ii",
@ -312,7 +320,6 @@
}, },
"width": 367, "width": 367,
"height": 226, "height": 226,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -339,7 +346,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "aa.bb.ii.jj", "id": "aa.bb.ii.jj",
@ -350,7 +359,6 @@
}, },
"width": 115, "width": 115,
"height": 126, "height": 126,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -377,7 +385,9 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
}, },
{ {
"id": "aa.bb.kk", "id": "aa.bb.kk",
@ -388,7 +398,6 @@
}, },
"width": 126, "width": 126,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -415,7 +424,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "aa.ll", "id": "aa.ll",
@ -426,7 +437,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -453,7 +463,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "aa.mm", "id": "aa.mm",
@ -464,7 +476,6 @@
}, },
"width": 131, "width": 131,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -491,7 +502,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "aa.nn", "id": "aa.nn",
@ -502,7 +515,6 @@
}, },
"width": 18, "width": 18,
"height": 24, "height": 24,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -528,7 +540,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 2
}, },
{ {
"id": "aa.oo", "id": "aa.oo",
@ -539,7 +553,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -566,7 +579,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -615,7 +630,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.bb.cc.(gg -- hh)[0]", "id": "aa.bb.cc.(gg -- hh)[0]",
@ -662,7 +678,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.bb.(ii -> cc.dd)[0]", "id": "aa.bb.(ii -> cc.dd)[0]",
@ -757,7 +774,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(ll <-> bb)[0]", "id": "aa.(ll <-> bb)[0]",
@ -804,7 +822,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(mm -> bb.cc)[0]", "id": "aa.(mm -> bb.cc)[0]",
@ -863,7 +882,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(mm -> ll)[0]", "id": "aa.(mm -> ll)[0]",
@ -910,7 +930,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(mm <-> bb)[0]", "id": "aa.(mm <-> bb)[0]",
@ -957,7 +978,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(ll <-> bb.cc.gg)[0]", "id": "aa.(ll <-> bb.cc.gg)[0]",
@ -1052,7 +1074,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(mm <- bb.ii)[0]", "id": "aa.(mm <- bb.ii)[0]",
@ -1099,7 +1122,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(bb.cc <- ll)[0]", "id": "aa.(bb.cc <- ll)[0]",
@ -1146,7 +1170,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(bb.ii <-> ll)[0]", "id": "aa.(bb.ii <-> ll)[0]",
@ -1205,7 +1230,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 892, "width": 892,
"height": 1707, "height": 1707,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "aa.bb", "id": "aa.bb",
@ -48,7 +49,6 @@
}, },
"width": 685, "width": 685,
"height": 1174, "height": 1174,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "aa.bb.cc", "id": "aa.bb.cc",
@ -86,7 +88,6 @@
}, },
"width": 464, "width": 464,
"height": 703, "height": 703,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "aa.bb.cc.dd", "id": "aa.bb.cc.dd",
@ -124,7 +127,6 @@
}, },
"width": 303, "width": 303,
"height": 276, "height": 276,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 4
}, },
{ {
"id": "aa.bb.cc.dd.ee", "id": "aa.bb.cc.dd.ee",
@ -162,7 +166,6 @@
}, },
"width": 16, "width": 16,
"height": 24, "height": 24,
"level": 5,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -188,7 +191,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 5
}, },
{ {
"id": "aa.bb.cc.dd.ff", "id": "aa.bb.cc.dd.ff",
@ -199,7 +204,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 5,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -226,7 +230,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 5
}, },
{ {
"id": "aa.bb.cc.gg", "id": "aa.bb.cc.gg",
@ -237,7 +243,6 @@
}, },
"width": 17, "width": 17,
"height": 24, "height": 24,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -263,7 +268,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 4
}, },
{ {
"id": "aa.bb.cc.hh", "id": "aa.bb.cc.hh",
@ -274,7 +281,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -301,7 +307,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
}, },
{ {
"id": "aa.bb.ii", "id": "aa.bb.ii",
@ -312,7 +320,6 @@
}, },
"width": 265, "width": 265,
"height": 276, "height": 276,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -339,7 +346,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "aa.bb.ii.jj", "id": "aa.bb.ii.jj",
@ -350,7 +359,6 @@
}, },
"width": 115, "width": 115,
"height": 126, "height": 126,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -377,7 +385,9 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
}, },
{ {
"id": "aa.bb.kk", "id": "aa.bb.kk",
@ -388,7 +398,6 @@
}, },
"width": 126, "width": 126,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -415,7 +424,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "aa.ll", "id": "aa.ll",
@ -426,7 +437,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -453,7 +463,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "aa.mm", "id": "aa.mm",
@ -464,7 +476,6 @@
}, },
"width": 131, "width": 131,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -491,7 +502,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "aa.nn", "id": "aa.nn",
@ -502,7 +515,6 @@
}, },
"width": 18, "width": 18,
"height": 24, "height": 24,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -528,7 +540,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 2
}, },
{ {
"id": "aa.oo", "id": "aa.oo",
@ -539,7 +553,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -566,7 +579,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -606,7 +621,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.bb.cc.(gg -- hh)[0]", "id": "aa.bb.cc.(gg -- hh)[0]",
@ -644,7 +660,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.bb.(ii -> cc.dd)[0]", "id": "aa.bb.(ii -> cc.dd)[0]",
@ -690,7 +707,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(ll <-> bb)[0]", "id": "aa.(ll <-> bb)[0]",
@ -736,7 +754,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(mm -> bb.cc)[0]", "id": "aa.(mm -> bb.cc)[0]",
@ -790,7 +809,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(mm -> ll)[0]", "id": "aa.(mm -> ll)[0]",
@ -836,7 +856,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(mm <-> bb)[0]", "id": "aa.(mm <-> bb)[0]",
@ -890,7 +911,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(ll <-> bb.cc.gg)[0]", "id": "aa.(ll <-> bb.cc.gg)[0]",
@ -944,7 +966,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(mm <- bb.ii)[0]", "id": "aa.(mm <- bb.ii)[0]",
@ -990,7 +1013,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(bb.cc <- ll)[0]", "id": "aa.(bb.cc <- ll)[0]",
@ -1044,7 +1068,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "aa.(bb.ii <-> ll)[0]", "id": "aa.(bb.ii <-> ll)[0]",
@ -1106,7 +1131,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 524, "width": 524,
"height": 426, "height": 426,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.b", "id": "a.b",
@ -48,7 +49,6 @@
}, },
"width": 444, "width": 444,
"height": 326, "height": 326,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "a.b.c", "id": "a.b.c",
@ -86,7 +88,6 @@
}, },
"width": 364, "width": 364,
"height": 226, "height": 226,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "a.b.c.d", "id": "a.b.c.d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
} }
], ],
"connections": [ "connections": [
@ -236,7 +240,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "a.(b -> b.c)[0]", "id": "a.(b -> b.c)[0]",
@ -319,7 +324,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "a.(b.c.d -> b)[0]", "id": "a.(b.c.d -> b)[0]",
@ -366,7 +372,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 574, "width": 574,
"height": 601, "height": 601,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.b", "id": "a.b",
@ -48,7 +49,6 @@
}, },
"width": 424, "width": 424,
"height": 451, "height": 451,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "a.b.c", "id": "a.b.c",
@ -86,7 +88,6 @@
}, },
"width": 264, "width": 264,
"height": 276, "height": 276,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "a.b.c.d", "id": "a.b.c.d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
} }
], ],
"connections": [ "connections": [
@ -191,7 +195,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "a.(b -> b.c)[0]", "id": "a.(b -> b.c)[0]",
@ -229,7 +234,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "a.(b.c.d -> b)[0]", "id": "a.(b.c.d -> b)[0]",
@ -275,7 +281,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -162,7 +165,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -209,7 +213,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -256,7 +261,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> a)[0]", "id": "(b -> a)[0]",
@ -303,7 +309,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -153,7 +156,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -191,7 +195,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -229,7 +234,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> a)[0]", "id": "(b -> a)[0]",
@ -267,7 +273,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 339, "width": 339,
"height": 368, "height": 368,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -68,7 +67,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 150, "labelWidth": 150,
"labelHeight": 36 "labelHeight": 36,
"zIndex": 0,
"level": 1
} }
], ],
"connections": [] "connections": []

View file

@ -10,7 +10,6 @@
}, },
"width": 339, "width": 339,
"height": 368, "height": 368,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -68,7 +67,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 150, "labelWidth": 150,
"labelHeight": 36 "labelHeight": 36,
"zIndex": 0,
"level": 1
} }
], ],
"connections": [] "connections": []

View file

@ -10,7 +10,6 @@
}, },
"width": 755, "width": 755,
"height": 166, "height": 166,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 755, "labelWidth": 755,
"labelHeight": 166 "labelHeight": 166,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "x", "id": "x",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "y", "id": "y",
@ -85,7 +87,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hey -> y)[0]", "id": "(hey -> y)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 755, "width": 755,
"height": 166, "height": 166,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 755, "labelWidth": 755,
"labelHeight": 166 "labelHeight": 166,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "x", "id": "x",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "y", "id": "y",
@ -85,7 +87,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hey -> y)[0]", "id": "(hey -> y)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 213, "width": 213,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.b", "id": "a.b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 214, "width": 214,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c.d", "id": "c.d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "f", "id": "f",
@ -162,7 +166,6 @@
}, },
"width": 294, "width": 294,
"height": 326, "height": 326,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f.h", "id": "f.h",
@ -200,7 +205,6 @@
}, },
"width": 214, "width": 214,
"height": 226, "height": 226,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "f.h.g", "id": "f.h.g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
} }
], ],
"connections": [ "connections": [
@ -326,7 +333,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c.d -> f.h.g)[0]", "id": "(c.d -> f.h.g)[0]",
@ -397,7 +405,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 263, "width": 263,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.b", "id": "a.b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 264, "width": 264,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c.d", "id": "c.d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "f", "id": "f",
@ -162,7 +166,6 @@
}, },
"width": 414, "width": 414,
"height": 431, "height": 431,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f.h", "id": "f.h",
@ -200,7 +205,6 @@
}, },
"width": 264, "width": 264,
"height": 276, "height": 276,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "f.h.g", "id": "f.h.g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
} }
], ],
"connections": [ "connections": [
@ -305,7 +312,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c.d -> f.h.g)[0]", "id": "(c.d -> f.h.g)[0]",
@ -343,7 +351,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -48,7 +49,6 @@
}, },
"width": 253, "width": 253,
"height": 878, "height": 878,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g.b", "id": "g.b",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 293, "width": 293,
"height": 326, "height": 326,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d.h", "id": "d.h",
@ -162,7 +166,6 @@
}, },
"width": 213, "width": 213,
"height": 226, "height": 226,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "d.h.c", "id": "d.h.c",
@ -200,7 +205,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "g.e", "id": "g.e",
@ -238,7 +244,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "f", "id": "f",
@ -276,7 +283,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -352,7 +360,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g.b -> d.h.c)[0]", "id": "(g.b -> d.h.c)[0]",
@ -411,7 +420,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> g.e)[0]", "id": "(d -> g.e)[0]",
@ -458,7 +468,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g.e -> f)[0]", "id": "(g.e -> f)[0]",
@ -505,7 +516,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> g)[0]", "id": "(f -> g)[0]",
@ -552,7 +564,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> d.h)[0]", "id": "(g -> d.h)[0]",
@ -599,7 +612,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -48,7 +49,6 @@
}, },
"width": 396, "width": 396,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g.b", "id": "g.b",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 413, "width": 413,
"height": 431, "height": 431,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d.h", "id": "d.h",
@ -162,7 +166,6 @@
}, },
"width": 263, "width": 263,
"height": 276, "height": 276,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "d.h.c", "id": "d.h.c",
@ -200,7 +205,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "g.e", "id": "g.e",
@ -238,7 +244,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "f", "id": "f",
@ -276,7 +283,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -343,7 +351,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g.b -> d.h.c)[0]", "id": "(g.b -> d.h.c)[0]",
@ -381,7 +390,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> g.e)[0]", "id": "(d -> g.e)[0]",
@ -435,7 +445,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g.e -> f)[0]", "id": "(g.e -> f)[0]",
@ -481,7 +492,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> g)[0]", "id": "(f -> g)[0]",
@ -527,7 +539,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> d.h)[0]", "id": "(g -> d.h)[0]",
@ -565,7 +578,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "j", "id": "j",
@ -352,7 +361,6 @@
}, },
"width": 110, "width": 110,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 10, "labelWidth": 10,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "k", "id": "k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "l", "id": "l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "m", "id": "m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "n", "id": "n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "o", "id": "o",
@ -542,7 +556,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "p", "id": "p",
@ -580,7 +595,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "q", "id": "q",
@ -618,7 +634,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -694,7 +711,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -753,7 +771,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> e)[0]", "id": "(d -> e)[0]",
@ -812,7 +831,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> e)[0]", "id": "(f -> e)[0]",
@ -871,7 +891,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> f)[0]", "id": "(b -> f)[0]",
@ -930,7 +951,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> g)[0]", "id": "(b -> g)[0]",
@ -977,7 +999,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> f)[0]", "id": "(g -> f)[0]",
@ -1024,7 +1047,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> h)[0]", "id": "(b -> h)[0]",
@ -1071,7 +1095,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> i)[0]", "id": "(b -> i)[0]",
@ -1178,7 +1203,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> d)[0]", "id": "(b -> d)[0]",
@ -1237,7 +1263,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> c)[0]", "id": "(j -> c)[0]",
@ -1284,7 +1311,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> a)[0]", "id": "(j -> a)[0]",
@ -1343,7 +1371,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> j)[0]", "id": "(b -> j)[0]",
@ -1390,7 +1419,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i -> k)[0]", "id": "(i -> k)[0]",
@ -1437,7 +1467,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> l)[0]", "id": "(d -> l)[0]",
@ -1484,7 +1515,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(l -> e)[0]", "id": "(l -> e)[0]",
@ -1531,7 +1563,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(m -> l)[0]", "id": "(m -> l)[0]",
@ -1578,7 +1611,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(m -> n)[0]", "id": "(m -> n)[0]",
@ -1625,7 +1659,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> i)[0]", "id": "(n -> i)[0]",
@ -1672,7 +1707,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> n)[0]", "id": "(d -> n)[0]",
@ -1719,7 +1755,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> n)[0]", "id": "(f -> n)[0]",
@ -1766,7 +1803,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> o)[0]", "id": "(b -> o)[0]",
@ -1813,7 +1851,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(p -> l)[0]", "id": "(p -> l)[0]",
@ -1860,7 +1899,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> q)[0]", "id": "(e -> q)[0]",
@ -1907,7 +1947,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "j", "id": "j",
@ -352,7 +361,6 @@
}, },
"width": 110, "width": 110,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 10, "labelWidth": 10,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "k", "id": "k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "l", "id": "l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "m", "id": "m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "n", "id": "n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "o", "id": "o",
@ -542,7 +556,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "p", "id": "p",
@ -580,7 +595,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "q", "id": "q",
@ -618,7 +634,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -685,7 +702,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -731,7 +749,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> e)[0]", "id": "(d -> e)[0]",
@ -777,7 +796,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> e)[0]", "id": "(f -> e)[0]",
@ -823,7 +843,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> f)[0]", "id": "(b -> f)[0]",
@ -869,7 +890,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> g)[0]", "id": "(b -> g)[0]",
@ -915,7 +937,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> f)[0]", "id": "(g -> f)[0]",
@ -961,7 +984,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> h)[0]", "id": "(b -> h)[0]",
@ -1007,7 +1031,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> i)[0]", "id": "(b -> i)[0]",
@ -1061,7 +1086,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> d)[0]", "id": "(b -> d)[0]",
@ -1099,7 +1125,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> c)[0]", "id": "(j -> c)[0]",
@ -1137,7 +1164,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> a)[0]", "id": "(j -> a)[0]",
@ -1183,7 +1211,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> j)[0]", "id": "(b -> j)[0]",
@ -1237,7 +1266,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i -> k)[0]", "id": "(i -> k)[0]",
@ -1275,7 +1305,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> l)[0]", "id": "(d -> l)[0]",
@ -1321,7 +1352,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(l -> e)[0]", "id": "(l -> e)[0]",
@ -1367,7 +1399,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(m -> l)[0]", "id": "(m -> l)[0]",
@ -1413,7 +1446,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(m -> n)[0]", "id": "(m -> n)[0]",
@ -1459,7 +1493,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> i)[0]", "id": "(n -> i)[0]",
@ -1497,7 +1532,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> n)[0]", "id": "(d -> n)[0]",
@ -1535,7 +1571,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> n)[0]", "id": "(f -> n)[0]",
@ -1581,7 +1618,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> o)[0]", "id": "(b -> o)[0]",
@ -1627,7 +1665,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(p -> l)[0]", "id": "(p -> l)[0]",
@ -1665,7 +1704,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> q)[0]", "id": "(e -> q)[0]",
@ -1703,7 +1743,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 465, "width": 465,
"height": 904, "height": 904,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "tree", "id": "tree",
@ -86,7 +88,6 @@
}, },
"width": 134, "width": 134,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 34, "labelWidth": 34,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "and", "id": "and",
@ -124,7 +127,6 @@
}, },
"width": 132, "width": 132,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nodes", "id": "nodes",
@ -162,7 +166,6 @@
}, },
"width": 147, "width": 147,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 47, "labelWidth": 47,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "some", "id": "some",
@ -200,7 +205,6 @@
}, },
"width": 143, "width": 143,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 43, "labelWidth": 43,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "more", "id": "more",
@ -238,7 +244,6 @@
}, },
"width": 141, "width": 141,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 41, "labelWidth": 41,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "many", "id": "many",
@ -276,7 +283,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "then", "id": "then",
@ -314,7 +322,6 @@
}, },
"width": 138, "width": 138,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 38, "labelWidth": 38,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "here", "id": "here",
@ -352,7 +361,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "you", "id": "you",
@ -390,7 +400,6 @@
}, },
"width": 132, "width": 132,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "have", "id": "have",
@ -428,7 +439,6 @@
}, },
"width": 138, "width": 138,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 38, "labelWidth": 38,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "hierarchy", "id": "hierarchy",
@ -466,7 +478,6 @@
}, },
"width": 173, "width": 173,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 73, "labelWidth": 73,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "another", "id": "another",
@ -504,7 +517,6 @@
}, },
"width": 163, "width": 163,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "of", "id": "of",
@ -542,7 +556,6 @@
}, },
"width": 120, "width": 120,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nesting", "id": "nesting",
@ -580,7 +595,6 @@
}, },
"width": 158, "width": 158,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 58, "labelWidth": 58,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "trees", "id": "trees",
@ -618,7 +634,6 @@
}, },
"width": 142, "width": 142,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 42, "labelWidth": 42,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "finally.a", "id": "finally.a",
@ -656,7 +673,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "finally.tree", "id": "finally.tree",
@ -694,7 +712,6 @@
}, },
"width": 134, "width": 134,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false, "underline": false,
"labelWidth": 34, "labelWidth": 34,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "finally.inside", "id": "finally.inside",
@ -732,7 +751,6 @@
}, },
"width": 148, "width": 148,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "finally.hierarchy", "id": "finally.hierarchy",
@ -770,7 +790,6 @@
}, },
"width": 173, "width": 173,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false, "underline": false,
"labelWidth": 73, "labelWidth": 73,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "finally.root", "id": "finally.root",
@ -808,7 +829,6 @@
}, },
"width": 135, "width": 135,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -884,7 +906,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> and)[0]", "id": "(a -> and)[0]",
@ -931,7 +954,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> nodes)[0]", "id": "(a -> nodes)[0]",
@ -978,7 +1002,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(and -> some)[0]", "id": "(and -> some)[0]",
@ -1025,7 +1050,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(tree -> more)[0]", "id": "(tree -> more)[0]",
@ -1072,7 +1098,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(tree -> many)[0]", "id": "(tree -> many)[0]",
@ -1119,7 +1146,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(then -> here)[0]", "id": "(then -> here)[0]",
@ -1166,7 +1194,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(here -> you)[0]", "id": "(here -> you)[0]",
@ -1213,7 +1242,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(have -> hierarchy)[0]", "id": "(have -> hierarchy)[0]",
@ -1260,7 +1290,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(then -> hierarchy)[0]", "id": "(then -> hierarchy)[0]",
@ -1307,7 +1338,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(finally -> another)[0]", "id": "(finally -> another)[0]",
@ -1354,7 +1386,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(another -> of)[0]", "id": "(another -> of)[0]",
@ -1401,7 +1434,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(nesting -> trees)[0]", "id": "(nesting -> trees)[0]",
@ -1448,7 +1482,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(finally -> trees)[0]", "id": "(finally -> trees)[0]",
@ -1495,7 +1530,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "finally.(a -> tree)[0]", "id": "finally.(a -> tree)[0]",
@ -1542,7 +1578,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "finally.(inside -> a)[0]", "id": "finally.(inside -> a)[0]",
@ -1589,7 +1626,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "finally.(tree -> hierarchy)[0]", "id": "finally.(tree -> hierarchy)[0]",
@ -1636,7 +1674,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "finally.(a -> root)[0]", "id": "finally.(a -> root)[0]",
@ -1683,7 +1722,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 458, "width": 458,
"height": 714, "height": 714,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "tree", "id": "tree",
@ -86,7 +88,6 @@
}, },
"width": 134, "width": 134,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 34, "labelWidth": 34,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "and", "id": "and",
@ -124,7 +127,6 @@
}, },
"width": 132, "width": 132,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nodes", "id": "nodes",
@ -162,7 +166,6 @@
}, },
"width": 147, "width": 147,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 47, "labelWidth": 47,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "some", "id": "some",
@ -200,7 +205,6 @@
}, },
"width": 143, "width": 143,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 43, "labelWidth": 43,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "more", "id": "more",
@ -238,7 +244,6 @@
}, },
"width": 141, "width": 141,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 41, "labelWidth": 41,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "many", "id": "many",
@ -276,7 +283,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "then", "id": "then",
@ -314,7 +322,6 @@
}, },
"width": 138, "width": 138,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 38, "labelWidth": 38,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "here", "id": "here",
@ -352,7 +361,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "you", "id": "you",
@ -390,7 +400,6 @@
}, },
"width": 132, "width": 132,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "have", "id": "have",
@ -428,7 +439,6 @@
}, },
"width": 138, "width": 138,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 38, "labelWidth": 38,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "hierarchy", "id": "hierarchy",
@ -466,7 +478,6 @@
}, },
"width": 173, "width": 173,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 73, "labelWidth": 73,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "another", "id": "another",
@ -504,7 +517,6 @@
}, },
"width": 163, "width": 163,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "of", "id": "of",
@ -542,7 +556,6 @@
}, },
"width": 120, "width": 120,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nesting", "id": "nesting",
@ -580,7 +595,6 @@
}, },
"width": 158, "width": 158,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 58, "labelWidth": 58,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "trees", "id": "trees",
@ -618,7 +634,6 @@
}, },
"width": 142, "width": 142,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 42, "labelWidth": 42,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "finally.a", "id": "finally.a",
@ -656,7 +673,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "finally.tree", "id": "finally.tree",
@ -694,7 +712,6 @@
}, },
"width": 134, "width": 134,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false, "underline": false,
"labelWidth": 34, "labelWidth": 34,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "finally.inside", "id": "finally.inside",
@ -732,7 +751,6 @@
}, },
"width": 148, "width": 148,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "finally.hierarchy", "id": "finally.hierarchy",
@ -770,7 +790,6 @@
}, },
"width": 173, "width": 173,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false, "underline": false,
"labelWidth": 73, "labelWidth": 73,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "finally.root", "id": "finally.root",
@ -808,7 +829,6 @@
}, },
"width": 135, "width": 135,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -883,7 +905,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> and)[0]", "id": "(a -> and)[0]",
@ -929,7 +952,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> nodes)[0]", "id": "(a -> nodes)[0]",
@ -967,7 +991,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(and -> some)[0]", "id": "(and -> some)[0]",
@ -1005,7 +1030,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(tree -> more)[0]", "id": "(tree -> more)[0]",
@ -1043,7 +1069,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(tree -> many)[0]", "id": "(tree -> many)[0]",
@ -1089,7 +1116,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(then -> here)[0]", "id": "(then -> here)[0]",
@ -1127,7 +1155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(here -> you)[0]", "id": "(here -> you)[0]",
@ -1165,7 +1194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(have -> hierarchy)[0]", "id": "(have -> hierarchy)[0]",
@ -1203,7 +1233,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(then -> hierarchy)[0]", "id": "(then -> hierarchy)[0]",
@ -1249,7 +1280,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(finally -> another)[0]", "id": "(finally -> another)[0]",
@ -1287,7 +1319,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(another -> of)[0]", "id": "(another -> of)[0]",
@ -1325,7 +1358,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(nesting -> trees)[0]", "id": "(nesting -> trees)[0]",
@ -1363,7 +1397,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(finally -> trees)[0]", "id": "(finally -> trees)[0]",
@ -1409,7 +1444,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "finally.(a -> tree)[0]", "id": "finally.(a -> tree)[0]",
@ -1455,7 +1491,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "finally.(inside -> a)[0]", "id": "finally.(inside -> a)[0]",
@ -1493,7 +1530,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "finally.(tree -> hierarchy)[0]", "id": "finally.(tree -> hierarchy)[0]",
@ -1531,7 +1569,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "finally.(a -> root)[0]", "id": "finally.(a -> root)[0]",
@ -1569,7 +1608,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 494, "width": 494,
"height": 1456, "height": 1456,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b.2", "id": "b.2",
@ -48,7 +49,6 @@
}, },
"width": 240, "width": 240,
"height": 1130, "height": 1130,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "a", "id": "a",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -124,7 +127,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -162,7 +166,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -200,7 +205,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b.1", "id": "b.1",
@ -238,7 +244,6 @@
}, },
"width": 112, "width": 112,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "b.3", "id": "b.3",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "b.4", "id": "b.4",
@ -314,7 +322,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "b.5", "id": "b.5",
@ -352,7 +361,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "b.2.a", "id": "b.2.a",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "b.2.b", "id": "b.2.b",
@ -428,7 +439,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "b.2.c", "id": "b.2.c",
@ -466,7 +478,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "b.2.d", "id": "b.2.d",
@ -504,7 +517,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "b.2.e", "id": "b.2.e",
@ -542,7 +556,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
} }
], ],
"connections": [ "connections": [
@ -618,7 +633,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -665,7 +681,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> d)[0]", "id": "(c -> d)[0]",
@ -712,7 +729,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> e)[0]", "id": "(d -> e)[0]",
@ -759,7 +777,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.(1 -> 2)[0]", "id": "b.(1 -> 2)[0]",
@ -806,7 +825,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.(2 -> 3)[0]", "id": "b.(2 -> 3)[0]",
@ -853,7 +873,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.(3 -> 4)[0]", "id": "b.(3 -> 4)[0]",
@ -900,7 +921,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.(4 -> 5)[0]", "id": "b.(4 -> 5)[0]",
@ -947,7 +969,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.2.(a -> b)[0]", "id": "b.2.(a -> b)[0]",
@ -994,7 +1017,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.2.(b -> c)[0]", "id": "b.2.(b -> c)[0]",
@ -1041,7 +1065,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.2.(c -> d)[0]", "id": "b.2.(c -> d)[0]",
@ -1088,7 +1113,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.2.(d -> e)[0]", "id": "b.2.(d -> e)[0]",
@ -1135,7 +1161,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 414, "width": 414,
"height": 1594, "height": 1594,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b.2", "id": "b.2",
@ -48,7 +49,6 @@
}, },
"width": 264, "width": 264,
"height": 860, "height": 860,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "a", "id": "a",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -124,7 +127,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -162,7 +166,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -200,7 +205,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b.1", "id": "b.1",
@ -238,7 +244,6 @@
}, },
"width": 112, "width": 112,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "b.3", "id": "b.3",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "b.4", "id": "b.4",
@ -314,7 +322,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "b.5", "id": "b.5",
@ -352,7 +361,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "b.2.a", "id": "b.2.a",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "b.2.b", "id": "b.2.b",
@ -428,7 +439,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "b.2.c", "id": "b.2.c",
@ -466,7 +478,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "b.2.d", "id": "b.2.d",
@ -504,7 +517,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "b.2.e", "id": "b.2.e",
@ -542,7 +556,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
} }
], ],
"connections": [ "connections": [
@ -609,7 +624,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -647,7 +663,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> d)[0]", "id": "(c -> d)[0]",
@ -685,7 +702,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> e)[0]", "id": "(d -> e)[0]",
@ -723,7 +741,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.(1 -> 2)[0]", "id": "b.(1 -> 2)[0]",
@ -761,7 +780,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.(2 -> 3)[0]", "id": "b.(2 -> 3)[0]",
@ -799,7 +819,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.(3 -> 4)[0]", "id": "b.(3 -> 4)[0]",
@ -837,7 +858,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.(4 -> 5)[0]", "id": "b.(4 -> 5)[0]",
@ -875,7 +897,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.2.(a -> b)[0]", "id": "b.2.(a -> b)[0]",
@ -913,7 +936,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.2.(b -> c)[0]", "id": "b.2.(b -> c)[0]",
@ -951,7 +975,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.2.(c -> d)[0]", "id": "b.2.(c -> d)[0]",
@ -989,7 +1014,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "b.2.(d -> e)[0]", "id": "b.2.(d -> e)[0]",
@ -1027,7 +1053,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "beta", "id": "beta",
@ -48,7 +49,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -124,7 +126,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 145, "width": 145,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "beta", "id": "beta",
@ -48,7 +49,6 @@
}, },
"width": 136, "width": 136,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 36, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -115,7 +117,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 145, "width": 145,
"height": 122, "height": 122,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 22, "labelHeight": 22,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size S", "id": "size S",
@ -48,7 +49,6 @@
}, },
"width": 140, "width": 140,
"height": 123, "height": 123,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 40, "labelWidth": 40,
"labelHeight": 23, "labelHeight": 23,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size M", "id": "size M",
@ -86,7 +88,6 @@
}, },
"width": 147, "width": 147,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 47, "labelWidth": 47,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size L", "id": "size L",
@ -124,7 +127,6 @@
}, },
"width": 153, "width": 153,
"height": 131, "height": 131,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 53,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size XL", "id": "size XL",
@ -162,7 +166,6 @@
}, },
"width": 177, "width": 177,
"height": 136, "height": 136,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size XXL", "id": "size XXL",
@ -200,7 +205,6 @@
}, },
"width": 204, "width": 204,
"height": 141, "height": 141,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 104, "labelWidth": 104,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size XXXL", "id": "size XXXL",
@ -238,7 +244,6 @@
}, },
"width": 237, "width": 237,
"height": 146, "height": 146,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 137, "labelWidth": 137,
"labelHeight": 46, "labelHeight": 46,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 8", "id": "custom 8",
@ -276,7 +283,6 @@
}, },
"width": 137, "width": 137,
"height": 116, "height": 116,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 37, "labelWidth": 37,
"labelHeight": 16, "labelHeight": 16,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 12", "id": "custom 12",
@ -314,7 +322,6 @@
}, },
"width": 160, "width": 160,
"height": 121, "height": 121,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 21, "labelHeight": 21,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 18", "id": "custom 18",
@ -352,7 +361,6 @@
}, },
"width": 186, "width": 186,
"height": 128, "height": 128,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 28, "labelHeight": 28,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 21", "id": "custom 21",
@ -390,7 +400,6 @@
}, },
"width": 200, "width": 200,
"height": 132, "height": 132,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 32, "labelHeight": 32,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 64", "id": "custom 64",
@ -428,7 +439,6 @@
}, },
"width": 393, "width": 393,
"height": 186, "height": 186,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 293, "labelWidth": 293,
"labelHeight": 86, "labelHeight": 86,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -504,7 +516,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(size S -> size M)[0]", "id": "(size S -> size M)[0]",
@ -551,7 +564,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(size XXXL -> custom 64)[0]", "id": "(size XXXL -> custom 64)[0]",
@ -598,7 +612,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 145, "width": 145,
"height": 122, "height": 122,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 22, "labelHeight": 22,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size S", "id": "size S",
@ -48,7 +49,6 @@
}, },
"width": 140, "width": 140,
"height": 123, "height": 123,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 40, "labelWidth": 40,
"labelHeight": 23, "labelHeight": 23,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size M", "id": "size M",
@ -86,7 +88,6 @@
}, },
"width": 147, "width": 147,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 47, "labelWidth": 47,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size L", "id": "size L",
@ -124,7 +127,6 @@
}, },
"width": 153, "width": 153,
"height": 131, "height": 131,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 53,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size XL", "id": "size XL",
@ -162,7 +166,6 @@
}, },
"width": 177, "width": 177,
"height": 136, "height": 136,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size XXL", "id": "size XXL",
@ -200,7 +205,6 @@
}, },
"width": 204, "width": 204,
"height": 141, "height": 141,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 104, "labelWidth": 104,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "size XXXL", "id": "size XXXL",
@ -238,7 +244,6 @@
}, },
"width": 237, "width": 237,
"height": 146, "height": 146,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 137, "labelWidth": 137,
"labelHeight": 46, "labelHeight": 46,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 8", "id": "custom 8",
@ -276,7 +283,6 @@
}, },
"width": 137, "width": 137,
"height": 116, "height": 116,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 37, "labelWidth": 37,
"labelHeight": 16, "labelHeight": 16,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 12", "id": "custom 12",
@ -314,7 +322,6 @@
}, },
"width": 160, "width": 160,
"height": 121, "height": 121,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 21, "labelHeight": 21,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 18", "id": "custom 18",
@ -352,7 +361,6 @@
}, },
"width": 186, "width": 186,
"height": 128, "height": 128,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 28, "labelHeight": 28,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 21", "id": "custom 21",
@ -390,7 +400,6 @@
}, },
"width": 200, "width": 200,
"height": 132, "height": 132,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 32, "labelHeight": 32,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "custom 64", "id": "custom 64",
@ -428,7 +439,6 @@
}, },
"width": 393, "width": 393,
"height": 186, "height": 186,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 293, "labelWidth": 293,
"labelHeight": 86, "labelHeight": 86,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -495,7 +507,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(size S -> size M)[0]", "id": "(size S -> size M)[0]",
@ -533,7 +546,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(size XXXL -> custom 64)[0]", "id": "(size XXXL -> custom 64)[0]",
@ -571,7 +585,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 3051, "width": 3051,
"height": 4848, "height": 4848,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 3051, "labelWidth": 3051,
"labelHeight": 4848 "labelHeight": 4848,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 3051, "width": 3051,
"height": 4848, "height": 4848,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 3051, "labelWidth": 3051,
"labelHeight": 4848 "labelHeight": 4848,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 738, "width": 738,
"height": 134, "height": 134,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 738, "labelWidth": 738,
"labelHeight": 134 "labelHeight": 134,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 738, "width": 738,
"height": 134, "height": 134,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 738, "labelWidth": 738,
"labelHeight": 134 "labelHeight": 134,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 128, "width": 128,
"height": 128, "height": 128,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -48,7 +47,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER" "labelPosition": "OUTSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -59,7 +60,6 @@
}, },
"width": 128, "width": 128,
"height": 128, "height": 128,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -97,7 +97,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER" "labelPosition": "OUTSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -146,7 +148,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 128, "width": 128,
"height": 128, "height": 128,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -48,7 +47,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER" "labelPosition": "OUTSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -59,7 +60,6 @@
}, },
"width": 128, "width": 128,
"height": 128, "height": 128,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -97,7 +97,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER" "labelPosition": "OUTSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -137,7 +139,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "bb", "id": "bb",
@ -48,7 +49,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cc", "id": "cc",
@ -86,7 +88,6 @@
}, },
"width": 121, "width": 121,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 21, "labelWidth": 21,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "dd", "id": "dd",
@ -124,7 +127,6 @@
}, },
"width": 577, "width": 577,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 34, "labelWidth": 34,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "dd.ee", "id": "dd.ee",
@ -162,7 +166,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ll", "id": "ll",
@ -200,7 +205,6 @@
}, },
"width": 545, "width": 545,
"height": 457, "height": 457,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "ll.mm", "id": "ll.mm",
@ -238,7 +244,6 @@
}, },
"width": 131, "width": 131,
"height": 131, "height": 131,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ff", "id": "ff",
@ -276,7 +283,6 @@
}, },
"width": 567, "width": 567,
"height": 457, "height": 457,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "ff.mm", "id": "ff.mm",
@ -314,7 +322,6 @@
}, },
"width": 131, "width": 131,
"height": 131, "height": 131,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ff.gg", "id": "ff.gg",
@ -352,7 +361,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "dd.hh", "id": "dd.hh",
@ -390,7 +400,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ww", "id": "ww",
@ -428,7 +439,6 @@
}, },
"width": 131, "width": 131,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -466,7 +476,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "yy", "id": "yy",
@ -477,7 +489,6 @@
}, },
"width": 323, "width": 323,
"height": 452, "height": 452,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -504,7 +515,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "yy.zz", "id": "yy.zz",
@ -515,7 +528,6 @@
}, },
"width": 120, "width": 120,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -553,7 +565,9 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ad", "id": "ad",
@ -564,7 +578,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -591,7 +604,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nn", "id": "nn",
@ -602,7 +617,6 @@
}, },
"width": 769, "width": 769,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -629,7 +643,9 @@
"underline": false, "underline": false,
"labelWidth": 33, "labelWidth": 33,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "ii", "id": "ii",
@ -640,7 +656,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -667,7 +682,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "jj", "id": "jj",
@ -678,7 +695,6 @@
}, },
"width": 115, "width": 115,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -705,7 +721,9 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "kk", "id": "kk",
@ -716,7 +734,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -743,7 +760,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nn.oo", "id": "nn.oo",
@ -754,7 +773,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -781,7 +799,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ff.pp", "id": "ff.pp",
@ -792,7 +812,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -819,7 +838,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ll.qq", "id": "ll.qq",
@ -830,7 +851,6 @@
}, },
"width": 124, "width": 124,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -857,7 +877,9 @@
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ll.rr", "id": "ll.rr",
@ -868,7 +890,6 @@
}, },
"width": 118, "width": 118,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -895,7 +916,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ss", "id": "ss",
@ -906,7 +929,6 @@
}, },
"width": 218, "width": 218,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -933,7 +955,9 @@
"underline": false, "underline": false,
"labelWidth": 28, "labelWidth": 28,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "ss.tt", "id": "ss.tt",
@ -944,7 +968,6 @@
}, },
"width": 118, "width": 118,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -971,7 +994,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "uu", "id": "uu",
@ -982,7 +1007,6 @@
}, },
"width": 223, "width": 223,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1009,7 +1033,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "uu.vv", "id": "uu.vv",
@ -1020,7 +1046,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1047,7 +1072,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "rm", "id": "rm",
@ -1058,7 +1085,6 @@
}, },
"width": 124, "width": 124,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1085,7 +1111,9 @@
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nn.xx", "id": "nn.xx",
@ -1096,7 +1124,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1123,7 +1150,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "yy.ab", "id": "yy.ab",
@ -1134,7 +1163,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1161,7 +1189,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "nn.ac", "id": "nn.ac",
@ -1172,7 +1202,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1199,7 +1228,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -1248,7 +1279,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(bb -- cc)[0]", "id": "(bb -- cc)[0]",
@ -1295,7 +1327,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(aa -> dd.ee)[0]", "id": "(aa -> dd.ee)[0]",
@ -1390,7 +1423,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(bb -> ff.gg)[0]", "id": "(bb -> ff.gg)[0]",
@ -1653,7 +1687,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(cc -> dd.hh)[0]", "id": "(cc -> dd.hh)[0]",
@ -1700,7 +1735,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(dd.ee -> ii)[0]", "id": "(dd.ee -> ii)[0]",
@ -1747,7 +1783,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ii -- jj)[0]", "id": "(ii -- jj)[0]",
@ -1794,7 +1831,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(jj -> kk)[0]", "id": "(jj -> kk)[0]",
@ -1853,7 +1891,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(kk -> ff.mm)[0]", "id": "(kk -> ff.mm)[0]",
@ -1960,7 +1999,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ff.mm -> ll.mm)[0]", "id": "(ff.mm -> ll.mm)[0]",
@ -2043,7 +2083,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ll.mm -> nn.oo)[0]", "id": "(ll.mm -> nn.oo)[0]",
@ -2174,7 +2215,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "ff.(gg -> pp)[0]", "id": "ff.(gg -> pp)[0]",
@ -2221,7 +2263,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ff.pp -> ll.qq)[0]", "id": "(ff.pp -> ll.qq)[0]",
@ -2280,7 +2323,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "ll.(qq -> rr)[0]", "id": "ll.(qq -> rr)[0]",
@ -2327,7 +2371,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(dd.hh -> ss.tt)[0]", "id": "(dd.hh -> ss.tt)[0]",
@ -2410,7 +2455,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ss.tt -> uu.vv)[0]", "id": "(ss.tt -> uu.vv)[0]",
@ -2469,7 +2515,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(kk -> ww)[0]", "id": "(kk -> ww)[0]",
@ -2516,7 +2563,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(uu.vv -> ww)[0]", "id": "(uu.vv -> ww)[0]",
@ -2563,7 +2611,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ww -> rm)[0]", "id": "(ww -> rm)[0]",
@ -2706,7 +2755,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(rm -> nn.xx)[0]", "id": "(rm -> nn.xx)[0]",
@ -2837,7 +2887,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ll.rr -> yy.zz)[0]", "id": "(ll.rr -> yy.zz)[0]",
@ -2896,7 +2947,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(rm -> yy.zz)[0]", "id": "(rm -> yy.zz)[0]",
@ -2955,7 +3007,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "yy.(zz -> ab)[0]", "id": "yy.(zz -> ab)[0]",
@ -3002,7 +3055,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(yy.ab -> nn.ac)[0]", "id": "(yy.ab -> nn.ac)[0]",
@ -3061,7 +3115,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(nn.ac -> ad)[0]", "id": "(nn.ac -> ad)[0]",
@ -3108,7 +3163,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ww -> ff.gg)[0]", "id": "(ww -> ff.gg)[0]",
@ -3155,7 +3211,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "bb", "id": "bb",
@ -48,7 +49,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "cc", "id": "cc",
@ -86,7 +88,6 @@
}, },
"width": 121, "width": 121,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 21, "labelWidth": 21,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "dd", "id": "dd",
@ -124,7 +127,6 @@
}, },
"width": 415, "width": 415,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 34, "labelWidth": 34,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "dd.ee", "id": "dd.ee",
@ -162,7 +166,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ll", "id": "ll",
@ -200,7 +205,6 @@
}, },
"width": 425, "width": 425,
"height": 427, "height": 427,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "ll.mm", "id": "ll.mm",
@ -238,7 +244,6 @@
}, },
"width": 131, "width": 131,
"height": 131, "height": 131,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ff", "id": "ff",
@ -276,7 +283,6 @@
}, },
"width": 424, "width": 424,
"height": 427, "height": 427,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "ff.mm", "id": "ff.mm",
@ -314,7 +322,6 @@
}, },
"width": 131, "width": 131,
"height": 131, "height": 131,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ff.gg", "id": "ff.gg",
@ -352,7 +361,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "dd.hh", "id": "dd.hh",
@ -390,7 +400,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ww", "id": "ww",
@ -428,7 +439,6 @@
}, },
"width": 131, "width": 131,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -466,7 +476,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "yy", "id": "yy",
@ -477,7 +489,6 @@
}, },
"width": 273, "width": 273,
"height": 422, "height": 422,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -504,7 +515,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "yy.zz", "id": "yy.zz",
@ -515,7 +528,6 @@
}, },
"width": 120, "width": 120,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -553,7 +565,9 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ad", "id": "ad",
@ -564,7 +578,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -591,7 +604,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nn", "id": "nn",
@ -602,7 +617,6 @@
}, },
"width": 557, "width": 557,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -629,7 +643,9 @@
"underline": false, "underline": false,
"labelWidth": 33, "labelWidth": 33,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "ii", "id": "ii",
@ -640,7 +656,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -667,7 +682,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "jj", "id": "jj",
@ -678,7 +695,6 @@
}, },
"width": 115, "width": 115,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -705,7 +721,9 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "kk", "id": "kk",
@ -716,7 +734,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -743,7 +760,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nn.oo", "id": "nn.oo",
@ -754,7 +773,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -781,7 +799,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ff.pp", "id": "ff.pp",
@ -792,7 +812,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -819,7 +838,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ll.qq", "id": "ll.qq",
@ -830,7 +851,6 @@
}, },
"width": 124, "width": 124,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -857,7 +877,9 @@
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ll.rr", "id": "ll.rr",
@ -868,7 +890,6 @@
}, },
"width": 118, "width": 118,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -895,7 +916,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "ss", "id": "ss",
@ -906,7 +929,6 @@
}, },
"width": 268, "width": 268,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -933,7 +955,9 @@
"underline": false, "underline": false,
"labelWidth": 28, "labelWidth": 28,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "ss.tt", "id": "ss.tt",
@ -944,7 +968,6 @@
}, },
"width": 118, "width": 118,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -971,7 +994,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "uu", "id": "uu",
@ -982,7 +1007,6 @@
}, },
"width": 273, "width": 273,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1009,7 +1033,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "uu.vv", "id": "uu.vv",
@ -1020,7 +1046,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1047,7 +1072,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "rm", "id": "rm",
@ -1058,7 +1085,6 @@
}, },
"width": 124, "width": 124,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1085,7 +1111,9 @@
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "nn.xx", "id": "nn.xx",
@ -1096,7 +1124,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1123,7 +1150,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "yy.ab", "id": "yy.ab",
@ -1134,7 +1163,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1161,7 +1189,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "nn.ac", "id": "nn.ac",
@ -1172,7 +1202,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1199,7 +1228,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -1247,7 +1278,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(bb -- cc)[0]", "id": "(bb -- cc)[0]",
@ -1285,7 +1317,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(aa -> dd.ee)[0]", "id": "(aa -> dd.ee)[0]",
@ -1323,7 +1356,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(bb -> ff.gg)[0]", "id": "(bb -> ff.gg)[0]",
@ -1377,7 +1411,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(cc -> dd.hh)[0]", "id": "(cc -> dd.hh)[0]",
@ -1415,7 +1450,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(dd.ee -> ii)[0]", "id": "(dd.ee -> ii)[0]",
@ -1453,7 +1489,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ii -- jj)[0]", "id": "(ii -- jj)[0]",
@ -1491,7 +1528,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(jj -> kk)[0]", "id": "(jj -> kk)[0]",
@ -1529,7 +1567,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(kk -> ff.mm)[0]", "id": "(kk -> ff.mm)[0]",
@ -1567,7 +1606,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ff.mm -> ll.mm)[0]", "id": "(ff.mm -> ll.mm)[0]",
@ -1605,7 +1645,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ll.mm -> nn.oo)[0]", "id": "(ll.mm -> nn.oo)[0]",
@ -1643,7 +1684,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "ff.(gg -> pp)[0]", "id": "ff.(gg -> pp)[0]",
@ -1681,7 +1723,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ff.pp -> ll.qq)[0]", "id": "(ff.pp -> ll.qq)[0]",
@ -1727,7 +1770,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "ll.(qq -> rr)[0]", "id": "ll.(qq -> rr)[0]",
@ -1765,7 +1809,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(dd.hh -> ss.tt)[0]", "id": "(dd.hh -> ss.tt)[0]",
@ -1811,7 +1856,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ss.tt -> uu.vv)[0]", "id": "(ss.tt -> uu.vv)[0]",
@ -1849,7 +1895,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(kk -> ww)[0]", "id": "(kk -> ww)[0]",
@ -1895,7 +1942,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(uu.vv -> ww)[0]", "id": "(uu.vv -> ww)[0]",
@ -1933,7 +1981,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ww -> rm)[0]", "id": "(ww -> rm)[0]",
@ -1971,7 +2020,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(rm -> nn.xx)[0]", "id": "(rm -> nn.xx)[0]",
@ -2025,7 +2075,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ll.rr -> yy.zz)[0]", "id": "(ll.rr -> yy.zz)[0]",
@ -2071,7 +2122,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(rm -> yy.zz)[0]", "id": "(rm -> yy.zz)[0]",
@ -2109,7 +2161,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "yy.(zz -> ab)[0]", "id": "yy.(zz -> ab)[0]",
@ -2147,7 +2200,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(yy.ab -> nn.ac)[0]", "id": "(yy.ab -> nn.ac)[0]",
@ -2193,7 +2247,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(nn.ac -> ad)[0]", "id": "(nn.ac -> ad)[0]",
@ -2231,7 +2286,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(ww -> ff.gg)[0]", "id": "(ww -> ff.gg)[0]",
@ -2277,7 +2333,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 781, "width": 781,
"height": 702, "height": 702,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i.j", "id": "i.j",
@ -352,7 +361,6 @@
}, },
"width": 578, "width": 578,
"height": 226, "height": 226,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "i.j.k", "id": "i.j.k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "i.j.l", "id": "i.j.l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "i.m", "id": "i.m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "i.n", "id": "i.n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "i.o", "id": "i.o",
@ -542,7 +556,6 @@
}, },
"width": 213, "width": 213,
"height": 226, "height": 226,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "i.o.p", "id": "i.o.p",
@ -580,7 +595,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "q", "id": "q",
@ -618,7 +634,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "r", "id": "r",
@ -656,7 +673,6 @@
}, },
"width": 1886, "width": 1886,
"height": 752, "height": 752,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "r.s", "id": "r.s",
@ -694,7 +712,6 @@
}, },
"width": 647, "width": 647,
"height": 652, "height": 652,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.s.t", "id": "r.s.t",
@ -732,7 +751,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.s.u", "id": "r.s.u",
@ -770,7 +790,6 @@
}, },
"width": 214, "width": 214,
"height": 226, "height": 226,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.s.u.v", "id": "r.s.u.v",
@ -808,7 +829,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
}, },
{ {
"id": "r.s.w", "id": "r.s.w",
@ -846,7 +868,6 @@
}, },
"width": 118, "width": 118,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -873,7 +894,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.s.x", "id": "r.s.x",
@ -884,7 +907,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -911,7 +933,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.s.y", "id": "r.s.y",
@ -922,7 +946,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -949,7 +972,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.z", "id": "r.z",
@ -960,7 +985,6 @@
}, },
"width": 112, "width": 112,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -987,7 +1011,9 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.aa", "id": "r.aa",
@ -998,7 +1024,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1025,7 +1050,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.bb", "id": "r.bb",
@ -1036,7 +1063,6 @@
}, },
"width": 405, "width": 405,
"height": 226, "height": 226,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1063,7 +1089,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.bb.cc", "id": "r.bb.cc",
@ -1074,7 +1102,6 @@
}, },
"width": 121, "width": 121,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1101,7 +1128,9 @@
"underline": false, "underline": false,
"labelWidth": 21, "labelWidth": 21,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.bb.dd", "id": "r.bb.dd",
@ -1112,7 +1141,6 @@
}, },
"width": 124, "width": 124,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1139,7 +1167,9 @@
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.ee", "id": "r.ee",
@ -1150,7 +1180,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1177,7 +1206,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.ff", "id": "r.ff",
@ -1188,7 +1219,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1215,7 +1245,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.gg", "id": "r.gg",
@ -1226,7 +1258,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1253,7 +1284,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -1326,7 +1359,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "i.(j.l -> o.p)[0]", "id": "i.(j.l -> o.p)[0]",
@ -1397,7 +1431,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(q -> i.m)[0]", "id": "(q -> i.m)[0]",
@ -1456,7 +1491,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> q)[0]", "id": "(i.m -> q)[0]",
@ -1515,7 +1551,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.n -> q)[0]", "id": "(i.n -> q)[0]",
@ -1574,7 +1611,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> c)[0]", "id": "(i.m -> c)[0]",
@ -1633,7 +1671,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> d)[0]", "id": "(i.m -> d)[0]",
@ -1692,7 +1731,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> g)[0]", "id": "(i.m -> g)[0]",
@ -1751,7 +1791,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> f)[0]", "id": "(i.m -> f)[0]",
@ -1810,7 +1851,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> e)[0]", "id": "(d -> e)[0]",
@ -1857,7 +1899,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.s.(x -> t)[0]", "id": "r.s.(x -> t)[0]",
@ -1928,7 +1971,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.s.(x -> w)[0]", "id": "r.s.(x -> w)[0]",
@ -1999,7 +2043,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.(gg -> s.t)[0]", "id": "r.(gg -> s.t)[0]",
@ -2070,7 +2115,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.(s.u.v -> z)[0]", "id": "r.(s.u.v -> z)[0]",
@ -2141,7 +2187,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.(aa -> s.t)[0]", "id": "r.(aa -> s.t)[0]",
@ -2212,7 +2259,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(r.s.w -> i.m)[0]", "id": "(r.s.w -> i.m)[0]",
@ -2283,7 +2331,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(r.s.t -> g)[0]", "id": "(r.s.t -> g)[0]",
@ -2402,7 +2451,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(r.s.t -> h)[0]", "id": "(r.s.t -> h)[0]",
@ -2473,7 +2523,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.(ee -> ff)[0]", "id": "r.(ee -> ff)[0]",
@ -2544,7 +2595,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 746, "width": 746,
"height": 732, "height": 732,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i.j", "id": "i.j",
@ -352,7 +361,6 @@
}, },
"width": 392, "width": 392,
"height": 276, "height": 276,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "i.j.k", "id": "i.j.k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "i.j.l", "id": "i.j.l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "i.m", "id": "i.m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "i.n", "id": "i.n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "i.o", "id": "i.o",
@ -542,7 +556,6 @@
}, },
"width": 263, "width": 263,
"height": 276, "height": 276,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "i.o.p", "id": "i.o.p",
@ -580,7 +595,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "q", "id": "q",
@ -618,7 +634,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "r", "id": "r",
@ -656,7 +673,6 @@
}, },
"width": 1492, "width": 1492,
"height": 1179, "height": 1179,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "r.s", "id": "r.s",
@ -694,7 +712,6 @@
}, },
"width": 767, "width": 767,
"height": 577, "height": 577,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.s.t", "id": "r.s.t",
@ -732,7 +751,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.s.u", "id": "r.s.u",
@ -770,7 +790,6 @@
}, },
"width": 264, "width": 264,
"height": 276, "height": 276,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.s.u.v", "id": "r.s.u.v",
@ -808,7 +829,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 4,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
}, },
{ {
"id": "r.s.w", "id": "r.s.w",
@ -846,7 +868,6 @@
}, },
"width": 118, "width": 118,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -873,7 +894,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.s.x", "id": "r.s.x",
@ -884,7 +907,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -911,7 +933,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.s.y", "id": "r.s.y",
@ -922,7 +946,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -949,7 +972,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.z", "id": "r.z",
@ -960,7 +985,6 @@
}, },
"width": 112, "width": 112,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -987,7 +1011,9 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.aa", "id": "r.aa",
@ -998,7 +1024,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1025,7 +1050,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.bb", "id": "r.bb",
@ -1036,7 +1063,6 @@
}, },
"width": 415, "width": 415,
"height": 276, "height": 276,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1063,7 +1089,9 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.bb.cc", "id": "r.bb.cc",
@ -1074,7 +1102,6 @@
}, },
"width": 121, "width": 121,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1101,7 +1128,9 @@
"underline": false, "underline": false,
"labelWidth": 21, "labelWidth": 21,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.bb.dd", "id": "r.bb.dd",
@ -1112,7 +1141,6 @@
}, },
"width": 124, "width": 124,
"height": 126, "height": 126,
"level": 3,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1139,7 +1167,9 @@
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}, },
{ {
"id": "r.ee", "id": "r.ee",
@ -1150,7 +1180,6 @@
}, },
"width": 122, "width": 122,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1177,7 +1206,9 @@
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.ff", "id": "r.ff",
@ -1188,7 +1219,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1215,7 +1245,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "r.gg", "id": "r.gg",
@ -1226,7 +1258,6 @@
}, },
"width": 123, "width": 123,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -1253,7 +1284,9 @@
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -1301,7 +1334,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "i.(j.l -> o.p)[0]", "id": "i.(j.l -> o.p)[0]",
@ -1339,7 +1373,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(q -> i.m)[0]", "id": "(q -> i.m)[0]",
@ -1393,7 +1428,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> q)[0]", "id": "(i.m -> q)[0]",
@ -1439,7 +1475,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.n -> q)[0]", "id": "(i.n -> q)[0]",
@ -1477,7 +1514,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> c)[0]", "id": "(i.m -> c)[0]",
@ -1523,7 +1561,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> d)[0]", "id": "(i.m -> d)[0]",
@ -1569,7 +1608,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> g)[0]", "id": "(i.m -> g)[0]",
@ -1615,7 +1655,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i.m -> f)[0]", "id": "(i.m -> f)[0]",
@ -1661,7 +1702,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> e)[0]", "id": "(d -> e)[0]",
@ -1699,7 +1741,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.s.(x -> t)[0]", "id": "r.s.(x -> t)[0]",
@ -1745,7 +1788,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.s.(x -> w)[0]", "id": "r.s.(x -> w)[0]",
@ -1783,7 +1827,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.(gg -> s.t)[0]", "id": "r.(gg -> s.t)[0]",
@ -1821,7 +1866,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.(s.u.v -> z)[0]", "id": "r.(s.u.v -> z)[0]",
@ -1859,7 +1905,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.(aa -> s.t)[0]", "id": "r.(aa -> s.t)[0]",
@ -1905,7 +1952,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(r.s.w -> i.m)[0]", "id": "(r.s.w -> i.m)[0]",
@ -1943,7 +1991,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(r.s.t -> g)[0]", "id": "(r.s.t -> g)[0]",
@ -1989,7 +2038,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(r.s.t -> h)[0]", "id": "(r.s.t -> h)[0]",
@ -2035,7 +2085,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "r.(ee -> ff)[0]", "id": "r.(ee -> ff)[0]",
@ -2073,7 +2124,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 382, "width": 382,
"height": 101, "height": 101,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 382, "labelWidth": 382,
"labelHeight": 101 "labelHeight": 101,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -47,7 +48,6 @@
}, },
"width": 65, "width": 65,
"height": 18, "height": 18,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -73,7 +73,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 18 "labelHeight": 18,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "z", "id": "z",
@ -84,7 +86,6 @@
}, },
"width": 179, "width": 179,
"height": 51, "height": 51,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -110,7 +111,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 179, "labelWidth": 179,
"labelHeight": 51 "labelHeight": 51,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -121,7 +124,6 @@
}, },
"width": 214, "width": 214,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -148,7 +150,9 @@
"underline": false, "underline": false,
"labelWidth": 114, "labelWidth": 114,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "sugar", "id": "sugar",
@ -159,7 +163,6 @@
}, },
"width": 146, "width": 146,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -186,7 +189,9 @@
"underline": false, "underline": false,
"labelWidth": 46, "labelWidth": 46,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "solution", "id": "solution",
@ -197,7 +202,6 @@
}, },
"width": 164, "width": 164,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -224,7 +228,9 @@
"underline": false, "underline": false,
"labelWidth": 64, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -273,7 +279,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(z -> b)[0]", "id": "(z -> b)[0]",
@ -320,7 +327,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> c)[0]", "id": "(a -> c)[0]",
@ -367,7 +375,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -414,7 +423,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(sugar -> c)[0]", "id": "(sugar -> c)[0]",
@ -461,7 +471,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> solution)[0]", "id": "(c -> solution)[0]",
@ -508,7 +519,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 382, "width": 382,
"height": 101, "height": 101,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 382, "labelWidth": 382,
"labelHeight": 101 "labelHeight": 101,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -47,7 +48,6 @@
}, },
"width": 65, "width": 65,
"height": 18, "height": 18,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -73,7 +73,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 18 "labelHeight": 18,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "z", "id": "z",
@ -84,7 +86,6 @@
}, },
"width": 179, "width": 179,
"height": 51, "height": 51,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -110,7 +111,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 179, "labelWidth": 179,
"labelHeight": 51 "labelHeight": 51,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -121,7 +124,6 @@
}, },
"width": 214, "width": 214,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -148,7 +150,9 @@
"underline": false, "underline": false,
"labelWidth": 114, "labelWidth": 114,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "sugar", "id": "sugar",
@ -159,7 +163,6 @@
}, },
"width": 146, "width": 146,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -186,7 +189,9 @@
"underline": false, "underline": false,
"labelWidth": 46, "labelWidth": 46,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "solution", "id": "solution",
@ -197,7 +202,6 @@
}, },
"width": 164, "width": 164,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -224,7 +228,9 @@
"underline": false, "underline": false,
"labelWidth": 64, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -272,7 +278,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(z -> b)[0]", "id": "(z -> b)[0]",
@ -310,7 +317,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> c)[0]", "id": "(a -> c)[0]",
@ -356,7 +364,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -394,7 +403,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(sugar -> c)[0]", "id": "(sugar -> c)[0]",
@ -440,7 +450,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> solution)[0]", "id": "(c -> solution)[0]",
@ -478,7 +489,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 379, "width": 379,
"height": 100, "height": 100,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 379, "labelWidth": 379,
"labelHeight": 100 "labelHeight": 100,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 379, "width": 379,
"height": 100, "height": 100,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 379, "labelWidth": 379,
"labelHeight": 100 "labelHeight": 100,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 245, "width": 245,
"height": 76, "height": 76,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 245, "labelWidth": 245,
"labelHeight": 76 "labelHeight": 76,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 245, "width": 245,
"height": 76, "height": 76,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 245, "labelWidth": 245,
"labelHeight": 76 "labelHeight": 76,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 347, "width": 347,
"height": 512, "height": 512,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 347, "labelWidth": 347,
"labelHeight": 512 "labelHeight": 512,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 347, "width": 347,
"height": 512, "height": 512,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 347, "labelWidth": 347,
"labelHeight": 512 "labelHeight": 512,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 920, "width": 920,
"height": 376, "height": 376,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 920, "labelWidth": 920,
"labelHeight": 376 "labelHeight": 376,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 920, "width": 920,
"height": 376, "height": 376,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 920, "labelWidth": 920,
"labelHeight": 376 "labelHeight": 376,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 266, "width": 266,
"height": 50, "height": 50,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 266, "labelWidth": 266,
"labelHeight": 50 "labelHeight": 50,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 266, "width": 266,
"height": 50, "height": 50,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 266, "labelWidth": 266,
"labelHeight": 50 "labelHeight": 50,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 531, "width": 531,
"height": 186, "height": 186,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 531, "labelWidth": 531,
"labelHeight": 186 "labelHeight": 186,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "x", "id": "x",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "y", "id": "y",
@ -85,7 +87,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hey -> y)[0]", "id": "(hey -> y)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 531, "width": 531,
"height": 186, "height": 186,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 531, "labelWidth": 531,
"labelHeight": 186 "labelHeight": 186,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "x", "id": "x",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "y", "id": "y",
@ -85,7 +87,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(hey -> y)[0]", "id": "(hey -> y)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 559, "width": 559,
"height": 148, "height": 148,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 129, "labelWidth": 129,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "markdown.md", "id": "markdown.md",
@ -48,7 +49,6 @@
}, },
"width": 459, "width": 459,
"height": 48, "height": 48,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 459, "labelWidth": 459,
"labelHeight": 48 "labelHeight": 48,
"zIndex": 0,
"level": 2
} }
], ],
"connections": [] "connections": []

View file

@ -10,7 +10,6 @@
}, },
"width": 609, "width": 609,
"height": 198, "height": 198,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 129, "labelWidth": 129,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "markdown.md", "id": "markdown.md",
@ -48,7 +49,6 @@
}, },
"width": 459, "width": 459,
"height": 48, "height": 48,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 459, "labelWidth": 459,
"labelHeight": 48 "labelHeight": 48,
"zIndex": 0,
"level": 2
} }
], ],
"connections": [] "connections": []

View file

@ -10,7 +10,6 @@
}, },
"width": 559, "width": 559,
"height": 148, "height": 148,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 129, "labelWidth": 129,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "markdown.md", "id": "markdown.md",
@ -48,7 +49,6 @@
}, },
"width": 459, "width": 459,
"height": 48, "height": 48,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 459, "labelWidth": 459,
"labelHeight": 48 "labelHeight": 48,
"zIndex": 0,
"level": 2
} }
], ],
"connections": [] "connections": []

View file

@ -10,7 +10,6 @@
}, },
"width": 609, "width": 609,
"height": 198, "height": 198,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 129, "labelWidth": 129,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "markdown.md", "id": "markdown.md",
@ -48,7 +49,6 @@
}, },
"width": 459, "width": 459,
"height": 48, "height": 48,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 459, "labelWidth": 459,
"labelHeight": 48 "labelHeight": 48,
"zIndex": 0,
"level": 2
} }
], ],
"connections": [] "connections": []

View file

@ -10,7 +10,6 @@
}, },
"width": 196, "width": 196,
"height": 111, "height": 111,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 196, "labelWidth": 196,
"labelHeight": 111 "labelHeight": 111,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 196, "width": 196,
"height": 111, "height": 111,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 196, "labelWidth": 196,
"labelHeight": 111 "labelHeight": 111,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 212, "width": 212,
"height": 151, "height": 151,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 212, "labelWidth": 212,
"labelHeight": 151 "labelHeight": 151,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 212, "width": 212,
"height": 151, "height": 151,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 212, "labelWidth": 212,
"labelHeight": 151 "labelHeight": 151,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 46, "width": 46,
"height": 24, "height": 24,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 46, "labelWidth": 46,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 46, "width": 46,
"height": 24, "height": 24,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 46, "labelWidth": 46,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 202, "width": 202,
"height": 158, "height": 158,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 102, "labelWidth": 102,
"labelHeight": 58, "labelHeight": 58,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [] "connections": []

View file

@ -10,7 +10,6 @@
}, },
"width": 202, "width": 202,
"height": 158, "height": 158,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 102, "labelWidth": 102,
"labelHeight": 58, "labelHeight": 58,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [] "connections": []

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "j", "id": "j",
@ -352,7 +361,6 @@
}, },
"width": 110, "width": 110,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 10, "labelWidth": 10,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "k", "id": "k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "l", "id": "l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "m", "id": "m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "n", "id": "n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "o", "id": "o",
@ -542,7 +556,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "p", "id": "p",
@ -580,7 +595,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "q", "id": "q",
@ -618,7 +634,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "r", "id": "r",
@ -656,7 +673,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "s", "id": "s",
@ -694,7 +712,6 @@
}, },
"width": 112, "width": 112,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "t", "id": "t",
@ -732,7 +751,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "u", "id": "u",
@ -770,7 +790,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "v", "id": "v",
@ -808,7 +829,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "w", "id": "w",
@ -846,7 +868,6 @@
}, },
"width": 118, "width": 118,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -873,7 +894,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -922,7 +945,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> c)[0]", "id": "(a -> c)[0]",
@ -969,7 +993,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> d)[0]", "id": "(a -> d)[0]",
@ -1016,7 +1041,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> e)[0]", "id": "(a -> e)[0]",
@ -1063,7 +1089,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> f)[0]", "id": "(a -> f)[0]",
@ -1110,7 +1137,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> a)[0]", "id": "(g -> a)[0]",
@ -1157,7 +1185,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> h)[0]", "id": "(a -> h)[0]",
@ -1204,7 +1233,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i -> b)[0]", "id": "(i -> b)[0]",
@ -1251,7 +1281,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> b)[0]", "id": "(j -> b)[0]",
@ -1298,7 +1329,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(k -> g)[0]", "id": "(k -> g)[0]",
@ -1345,7 +1377,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(l -> g)[0]", "id": "(l -> g)[0]",
@ -1392,7 +1425,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> m)[0]", "id": "(c -> m)[0]",
@ -1439,7 +1473,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> n)[0]", "id": "(c -> n)[0]",
@ -1486,7 +1521,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> o)[0]", "id": "(d -> o)[0]",
@ -1533,7 +1569,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> p)[0]", "id": "(d -> p)[0]",
@ -1580,7 +1617,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> q)[0]", "id": "(e -> q)[0]",
@ -1627,7 +1665,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> r)[0]", "id": "(e -> r)[0]",
@ -1674,7 +1713,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(p -> s)[0]", "id": "(p -> s)[0]",
@ -1721,7 +1761,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> t)[0]", "id": "(f -> t)[0]",
@ -1768,7 +1809,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> u)[0]", "id": "(f -> u)[0]",
@ -1815,7 +1857,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(v -> h)[0]", "id": "(v -> h)[0]",
@ -1862,7 +1905,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(w -> h)[0]", "id": "(w -> h)[0]",
@ -1909,7 +1953,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "j", "id": "j",
@ -352,7 +361,6 @@
}, },
"width": 110, "width": 110,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 10, "labelWidth": 10,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "k", "id": "k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "l", "id": "l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "m", "id": "m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "n", "id": "n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "o", "id": "o",
@ -542,7 +556,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "p", "id": "p",
@ -580,7 +595,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "q", "id": "q",
@ -618,7 +634,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "r", "id": "r",
@ -656,7 +673,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "s", "id": "s",
@ -694,7 +712,6 @@
}, },
"width": 112, "width": 112,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "t", "id": "t",
@ -732,7 +751,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "u", "id": "u",
@ -770,7 +790,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "v", "id": "v",
@ -808,7 +829,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "w", "id": "w",
@ -846,7 +868,6 @@
}, },
"width": 118, "width": 118,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -873,7 +894,9 @@
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -921,7 +944,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> c)[0]", "id": "(a -> c)[0]",
@ -967,7 +991,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> d)[0]", "id": "(a -> d)[0]",
@ -1013,7 +1038,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> e)[0]", "id": "(a -> e)[0]",
@ -1051,7 +1077,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> f)[0]", "id": "(a -> f)[0]",
@ -1097,7 +1124,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> a)[0]", "id": "(g -> a)[0]",
@ -1135,7 +1163,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> h)[0]", "id": "(a -> h)[0]",
@ -1181,7 +1210,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i -> b)[0]", "id": "(i -> b)[0]",
@ -1219,7 +1249,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> b)[0]", "id": "(j -> b)[0]",
@ -1265,7 +1296,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(k -> g)[0]", "id": "(k -> g)[0]",
@ -1311,7 +1343,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(l -> g)[0]", "id": "(l -> g)[0]",
@ -1349,7 +1382,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> m)[0]", "id": "(c -> m)[0]",
@ -1395,7 +1429,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> n)[0]", "id": "(c -> n)[0]",
@ -1433,7 +1468,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> o)[0]", "id": "(d -> o)[0]",
@ -1479,7 +1515,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> p)[0]", "id": "(d -> p)[0]",
@ -1517,7 +1554,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> q)[0]", "id": "(e -> q)[0]",
@ -1555,7 +1593,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> r)[0]", "id": "(e -> r)[0]",
@ -1601,7 +1640,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(p -> s)[0]", "id": "(p -> s)[0]",
@ -1639,7 +1679,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> t)[0]", "id": "(f -> t)[0]",
@ -1677,7 +1718,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> u)[0]", "id": "(f -> u)[0]",
@ -1723,7 +1765,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(v -> h)[0]", "id": "(v -> h)[0]",
@ -1769,7 +1812,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(w -> h)[0]", "id": "(w -> h)[0]",
@ -1807,7 +1851,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "j", "id": "j",
@ -352,7 +361,6 @@
}, },
"width": 110, "width": 110,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 10, "labelWidth": 10,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "k", "id": "k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "l", "id": "l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "m", "id": "m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "n", "id": "n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "o", "id": "o",
@ -542,7 +556,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "p", "id": "p",
@ -580,7 +595,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "q", "id": "q",
@ -618,7 +634,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "r", "id": "r",
@ -656,7 +673,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "s", "id": "s",
@ -694,7 +712,6 @@
}, },
"width": 112, "width": 112,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "t", "id": "t",
@ -732,7 +751,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "u", "id": "u",
@ -770,7 +790,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -858,7 +879,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> a)[0]", "id": "(c -> a)[0]",
@ -941,7 +963,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> a)[0]", "id": "(d -> a)[0]",
@ -988,7 +1011,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> b)[0]", "id": "(d -> b)[0]",
@ -1071,7 +1095,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> e)[0]", "id": "(d -> e)[0]",
@ -1118,7 +1143,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> f)[0]", "id": "(e -> f)[0]",
@ -1165,7 +1191,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> b)[0]", "id": "(f -> b)[0]",
@ -1212,7 +1239,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> f)[0]", "id": "(c -> f)[0]",
@ -1319,7 +1347,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> c)[0]", "id": "(g -> c)[0]",
@ -1378,7 +1407,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> h)[0]", "id": "(g -> h)[0]",
@ -1425,7 +1455,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(h -> i)[0]", "id": "(h -> i)[0]",
@ -1472,7 +1503,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i -> j)[0]", "id": "(i -> j)[0]",
@ -1519,7 +1551,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> k)[0]", "id": "(j -> k)[0]",
@ -1566,7 +1599,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(k -> e)[0]", "id": "(k -> e)[0]",
@ -1613,7 +1647,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> f)[0]", "id": "(j -> f)[0]",
@ -1696,7 +1731,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(l -> m)[0]", "id": "(l -> m)[0]",
@ -1755,7 +1791,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> l)[0]", "id": "(n -> l)[0]",
@ -1802,7 +1839,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> l)[1]", "id": "(n -> l)[1]",
@ -1849,7 +1887,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> m)[0]", "id": "(n -> m)[0]",
@ -1932,7 +1971,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> o)[0]", "id": "(n -> o)[0]",
@ -1979,7 +2019,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(o -> p)[0]", "id": "(o -> p)[0]",
@ -2026,7 +2067,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(p -> m)[0]", "id": "(p -> m)[0]",
@ -2073,7 +2115,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> p)[0]", "id": "(n -> p)[0]",
@ -2132,7 +2175,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(q -> n)[0]", "id": "(q -> n)[0]",
@ -2239,7 +2283,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(q -> r)[0]", "id": "(q -> r)[0]",
@ -2286,7 +2331,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(r -> s)[0]", "id": "(r -> s)[0]",
@ -2333,7 +2379,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(s -> t)[0]", "id": "(s -> t)[0]",
@ -2380,7 +2427,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(t -> u)[0]", "id": "(t -> u)[0]",
@ -2427,7 +2475,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(u -> o)[0]", "id": "(u -> o)[0]",
@ -2474,7 +2523,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(t -> p)[0]", "id": "(t -> p)[0]",
@ -2557,7 +2607,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> t)[0]", "id": "(c -> t)[0]",
@ -2604,7 +2655,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(s -> a)[0]", "id": "(s -> a)[0]",
@ -2687,7 +2739,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(u -> a)[0]", "id": "(u -> a)[0]",
@ -2734,7 +2787,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "h", "id": "h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "i", "id": "i",
@ -314,7 +322,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "j", "id": "j",
@ -352,7 +361,6 @@
}, },
"width": 110, "width": 110,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false, "underline": false,
"labelWidth": 10, "labelWidth": 10,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "k", "id": "k",
@ -390,7 +400,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "l", "id": "l",
@ -428,7 +439,6 @@
}, },
"width": 109, "width": 109,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "m", "id": "m",
@ -466,7 +478,6 @@
}, },
"width": 117, "width": 117,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "n", "id": "n",
@ -504,7 +517,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "o", "id": "o",
@ -542,7 +556,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "p", "id": "p",
@ -580,7 +595,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "q", "id": "q",
@ -618,7 +634,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "r", "id": "r",
@ -656,7 +673,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "s", "id": "s",
@ -694,7 +712,6 @@
}, },
"width": 112, "width": 112,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "t", "id": "t",
@ -732,7 +751,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "u", "id": "u",
@ -770,7 +790,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -845,7 +866,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> a)[0]", "id": "(c -> a)[0]",
@ -891,7 +913,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> a)[0]", "id": "(d -> a)[0]",
@ -937,7 +960,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> b)[0]", "id": "(d -> b)[0]",
@ -975,7 +999,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> e)[0]", "id": "(d -> e)[0]",
@ -1021,7 +1046,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> f)[0]", "id": "(e -> f)[0]",
@ -1059,7 +1085,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> b)[0]", "id": "(f -> b)[0]",
@ -1105,7 +1132,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> f)[0]", "id": "(c -> f)[0]",
@ -1159,7 +1187,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> c)[0]", "id": "(g -> c)[0]",
@ -1197,7 +1226,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> h)[0]", "id": "(g -> h)[0]",
@ -1243,7 +1273,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(h -> i)[0]", "id": "(h -> i)[0]",
@ -1281,7 +1312,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(i -> j)[0]", "id": "(i -> j)[0]",
@ -1319,7 +1351,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> k)[0]", "id": "(j -> k)[0]",
@ -1357,7 +1390,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(k -> e)[0]", "id": "(k -> e)[0]",
@ -1395,7 +1429,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(j -> f)[0]", "id": "(j -> f)[0]",
@ -1449,7 +1484,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(l -> m)[0]", "id": "(l -> m)[0]",
@ -1495,7 +1531,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> l)[0]", "id": "(n -> l)[0]",
@ -1541,7 +1578,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> l)[1]", "id": "(n -> l)[1]",
@ -1579,7 +1617,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> m)[0]", "id": "(n -> m)[0]",
@ -1625,7 +1664,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> o)[0]", "id": "(n -> o)[0]",
@ -1671,7 +1711,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(o -> p)[0]", "id": "(o -> p)[0]",
@ -1709,7 +1750,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(p -> m)[0]", "id": "(p -> m)[0]",
@ -1755,7 +1797,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(n -> p)[0]", "id": "(n -> p)[0]",
@ -1809,7 +1852,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(q -> n)[0]", "id": "(q -> n)[0]",
@ -1847,7 +1891,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(q -> r)[0]", "id": "(q -> r)[0]",
@ -1893,7 +1938,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(r -> s)[0]", "id": "(r -> s)[0]",
@ -1931,7 +1977,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(s -> t)[0]", "id": "(s -> t)[0]",
@ -1969,7 +2016,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(t -> u)[0]", "id": "(t -> u)[0]",
@ -2007,7 +2055,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(u -> o)[0]", "id": "(u -> o)[0]",
@ -2045,7 +2094,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(t -> p)[0]", "id": "(t -> p)[0]",
@ -2099,7 +2149,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> t)[0]", "id": "(c -> t)[0]",
@ -2145,7 +2196,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(s -> a)[0]", "id": "(s -> a)[0]",
@ -2199,7 +2251,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(u -> a)[0]", "id": "(u -> a)[0]",
@ -2245,7 +2298,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 479, "width": 479,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.b", "id": "a.b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.h", "id": "a.h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -424,7 +432,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> c)[0]", "id": "(d -> c)[0]",
@ -471,7 +480,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> c)[0]", "id": "(e -> c)[0]",
@ -518,7 +528,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> d)[0]", "id": "(f -> d)[0]",
@ -565,7 +576,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> e)[0]", "id": "(a -> e)[0]",
@ -648,7 +660,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> f)[0]", "id": "(g -> f)[0]",
@ -695,7 +708,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a.h -> g)[0]", "id": "(a.h -> g)[0]",
@ -742,7 +756,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 396, "width": 396,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.b", "id": "a.b",
@ -48,7 +49,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "c", "id": "c",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "d", "id": "d",
@ -124,7 +127,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "e", "id": "e",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "f", "id": "f",
@ -200,7 +205,6 @@
}, },
"width": 111, "width": 111,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "g", "id": "g",
@ -238,7 +244,6 @@
}, },
"width": 114, "width": 114,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a.h", "id": "a.h",
@ -276,7 +283,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -359,7 +367,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(d -> c)[0]", "id": "(d -> c)[0]",
@ -397,7 +406,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(e -> c)[0]", "id": "(e -> c)[0]",
@ -443,7 +453,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(f -> d)[0]", "id": "(f -> d)[0]",
@ -481,7 +492,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> e)[0]", "id": "(a -> e)[0]",
@ -519,7 +531,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(g -> f)[0]", "id": "(g -> f)[0]",
@ -557,7 +570,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a.h -> g)[0]", "id": "(a.h -> g)[0]",
@ -603,7 +617,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 506, "width": 506,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "top.start", "id": "top.start",
@ -48,7 +49,6 @@
}, },
"width": 140, "width": 140,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 40, "labelWidth": 40,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "a", "id": "a",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -124,7 +127,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "bottom", "id": "bottom",
@ -200,7 +205,6 @@
}, },
"width": 504, "width": 504,
"height": 226, "height": 226,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 90, "labelWidth": 90,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "bottom.end", "id": "bottom.end",
@ -238,7 +244,6 @@
}, },
"width": 132, "width": 132,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -314,7 +321,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(top.start -> b)[0]", "id": "(top.start -> b)[0]",
@ -361,7 +369,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(top.start -> c)[0]", "id": "(top.start -> c)[0]",
@ -408,7 +417,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> bottom.end)[0]", "id": "(a -> bottom.end)[0]",
@ -455,7 +465,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> bottom.end)[0]", "id": "(b -> bottom.end)[0]",
@ -502,7 +513,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> bottom.end)[0]", "id": "(c -> bottom.end)[0]",
@ -549,7 +561,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 290, "width": 290,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "top.start", "id": "top.start",
@ -48,7 +49,6 @@
}, },
"width": 140, "width": 140,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false, "underline": false,
"labelWidth": 40, "labelWidth": 40,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}, },
{ {
"id": "a", "id": "a",
@ -86,7 +88,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -124,7 +127,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "c", "id": "c",
@ -162,7 +166,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "bottom", "id": "bottom",
@ -200,7 +205,6 @@
}, },
"width": 282, "width": 282,
"height": 276, "height": 276,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false, "underline": false,
"labelWidth": 90, "labelWidth": 90,
"labelHeight": 41, "labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER" "labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "bottom.end", "id": "bottom.end",
@ -238,7 +244,6 @@
}, },
"width": 132, "width": 132,
"height": 126, "height": 126,
"level": 2,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
} }
], ],
"connections": [ "connections": [
@ -313,7 +320,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(top.start -> b)[0]", "id": "(top.start -> b)[0]",
@ -351,7 +359,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(top.start -> c)[0]", "id": "(top.start -> c)[0]",
@ -397,7 +406,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(a -> bottom.end)[0]", "id": "(a -> bottom.end)[0]",
@ -443,7 +453,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(b -> bottom.end)[0]", "id": "(b -> bottom.end)[0]",
@ -489,7 +500,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(c -> bottom.end)[0]", "id": "(c -> bottom.end)[0]",
@ -527,7 +539,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 1857, "width": 1857,
"height": 24, "height": 24,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 1857, "labelWidth": 1857,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 1857, "width": 1857,
"height": 24, "height": 24,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 1857, "labelWidth": 1857,
"labelHeight": 24 "labelHeight": 24,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 602, "width": 602,
"height": 170, "height": 170,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 602, "labelWidth": 602,
"labelHeight": 170 "labelHeight": 170,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -161,7 +164,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 602, "width": 602,
"height": 170, "height": 170,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 602, "labelWidth": 602,
"labelHeight": 170 "labelHeight": 170,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "a", "id": "a",
@ -47,7 +48,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}, },
{ {
"id": "b", "id": "b",
@ -85,7 +87,6 @@
}, },
"width": 113, "width": 113,
"height": 126, "height": 126,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER" "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -152,7 +155,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(md -> b)[0]", "id": "(md -> b)[0]",
@ -190,7 +194,8 @@
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

View file

@ -10,7 +10,6 @@
}, },
"width": 259, "width": 259,
"height": 216, "height": 216,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -67,7 +66,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 61, "labelWidth": 61,
"labelHeight": 36 "labelHeight": 36,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "products", "id": "products",
@ -78,7 +79,6 @@
}, },
"width": 290, "width": 290,
"height": 180, "height": 180,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -129,7 +129,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 99, "labelWidth": 99,
"labelHeight": 36 "labelHeight": 36,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "orders", "id": "orders",
@ -140,7 +142,6 @@
}, },
"width": 215, "width": 215,
"height": 144, "height": 144,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -185,7 +186,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 74, "labelWidth": 74,
"labelHeight": 36 "labelHeight": 36,
"zIndex": 0,
"level": 1
}, },
{ {
"id": "shipments", "id": "shipments",
@ -196,7 +199,6 @@
}, },
"width": 293, "width": 293,
"height": 180, "height": 180,
"level": 1,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -247,7 +249,9 @@
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 116, "labelWidth": 116,
"labelHeight": 36 "labelHeight": 36,
"zIndex": 0,
"level": 1
} }
], ],
"connections": [ "connections": [
@ -296,7 +300,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(products <-> orders)[0]", "id": "(products <-> orders)[0]",
@ -343,7 +348,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
}, },
{ {
"id": "(shipments <-> orders)[0]", "id": "(shipments <-> orders)[0]",
@ -390,7 +396,8 @@
"isCurve": true, "isCurve": true,
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null "icon": null,
"zIndex": 0
} }
] ]
} }

Some files were not shown because too many files have changed in this diff Show more