fix: fix animation and theme (#5718)
* fix(spec): migrate missed states changes * refactor: use fillOpacity, strokeOpacity to replace inherited opacity * refactor: adjust inherited style logic * feat: support badges and ports animation * test: update test case and snapshots
17
packages/g6/__tests__/dataset/element-edges.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"nodes": [
|
||||
{ "id": "node1" },
|
||||
{ "id": "node2" },
|
||||
{ "id": "node3" },
|
||||
{ "id": "node4" },
|
||||
{ "id": "node5" },
|
||||
{ "id": "node6" }
|
||||
],
|
||||
"edges": [
|
||||
{ "id": "line-default", "source": "node1", "target": "node2" },
|
||||
{ "id": "line-active", "source": "node1", "target": "node3", "states": ["active"] },
|
||||
{ "id": "line-selected", "source": "node1", "target": "node4", "states": ["selected"] },
|
||||
{ "id": "line-highlight", "source": "node1", "target": "node5", "states": ["highlight"] },
|
||||
{ "id": "line-inactive", "source": "node1", "target": "node6", "states": ["inactive"] }
|
||||
]
|
||||
}
|
30
packages/g6/__tests__/dataset/element-nodes.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"nodes": [
|
||||
{ "id": "default" },
|
||||
{ "id": "halo", "style": { "halo": true } },
|
||||
{
|
||||
"id": "badges",
|
||||
"style": {
|
||||
"badges": [
|
||||
{ "text": "A", "placement": "right-top" },
|
||||
{ "text": "Important", "placement": "right" },
|
||||
{ "text": "Notice", "placement": "right-bottom" }
|
||||
],
|
||||
"badgeFontSize": 8,
|
||||
"badgePadding": [1, 4]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ports",
|
||||
"style": {
|
||||
"portR": 3,
|
||||
"ports": [{ "placement": "left" }, { "placement": "right" }, { "placement": "top" }, { "placement": "bottom" }]
|
||||
}
|
||||
},
|
||||
{ "id": "active", "states": ["active"] },
|
||||
{ "id": "selected", "states": ["selected"] },
|
||||
{ "id": "highlight", "states": ["highlight"] },
|
||||
{ "id": "inactive", "states": ["inactive"] },
|
||||
{ "id": "disabled", "states": ["disabled"] }
|
||||
]
|
||||
}
|
@ -6,12 +6,12 @@ export const animationElementStateSwitch: TestCase = async (context) => {
|
||||
...context,
|
||||
data: {
|
||||
nodes: [
|
||||
{ id: 'node-1', style: { x: 50, y: 50, states: ['active', 'selected'] } },
|
||||
{ id: 'node-1', states: ['active', 'selected'], style: { x: 50, y: 50 } },
|
||||
{ id: 'node-2', style: { x: 200, y: 50 } },
|
||||
{ id: 'node-3', style: { x: 125, y: 150, states: ['active'] } },
|
||||
{ id: 'node-3', states: ['active'], style: { x: 125, y: 150 } },
|
||||
],
|
||||
edges: [
|
||||
{ source: 'node-1', target: 'node-2', style: { states: ['active'] } },
|
||||
{ source: 'node-1', target: 'node-2', states: ['active'] },
|
||||
{ source: 'node-2', target: 'node-3' },
|
||||
{ source: 'node-3', target: 'node-1' },
|
||||
],
|
||||
@ -60,13 +60,13 @@ export const animationElementStateSwitch: TestCase = async (context) => {
|
||||
const play = () => {
|
||||
graph.updateData({
|
||||
nodes: [
|
||||
{ id: 'node-1', style: { states: [] } },
|
||||
{ id: 'node-2', style: { states: ['active'] } },
|
||||
{ id: 'node-3', style: { states: ['selected'] } },
|
||||
{ id: 'node-1', states: [] },
|
||||
{ id: 'node-2', states: ['active'] },
|
||||
{ id: 'node-3', states: ['selected'] },
|
||||
],
|
||||
edges: [
|
||||
{ source: 'node-1', target: 'node-2', style: { states: [] } },
|
||||
{ source: 'node-2', target: 'node-3', style: { states: ['active'] } },
|
||||
{ source: 'node-1', target: 'node-2', states: [] },
|
||||
{ source: 'node-2', target: 'node-3', states: ['active'] },
|
||||
],
|
||||
});
|
||||
graph.draw();
|
||||
|
@ -1,37 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import data from '@@/dataset/element-edges.json';
|
||||
|
||||
export const elementEdgeCubicHorizontal: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [{ id: 'node1' }, { id: 'node2' }, { id: 'node3' }, { id: 'node4' }, { id: 'node5' }, { id: 'node6' }],
|
||||
edges: [
|
||||
{
|
||||
id: 'line-default',
|
||||
source: 'node1',
|
||||
target: 'node2',
|
||||
},
|
||||
{
|
||||
id: 'line-active',
|
||||
source: 'node1',
|
||||
target: 'node3',
|
||||
},
|
||||
{
|
||||
id: 'line-selected',
|
||||
source: 'node1',
|
||||
target: 'node4',
|
||||
},
|
||||
{
|
||||
id: 'line-highlight',
|
||||
source: 'node1',
|
||||
target: 'node5',
|
||||
},
|
||||
{
|
||||
id: 'line-inactive',
|
||||
source: 'node1',
|
||||
target: 'node6',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -60,12 +30,5 @@ export const elementEdgeCubicHorizontal: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'line-active': 'active',
|
||||
'line-selected': 'selected',
|
||||
'line-highlight': 'highlight',
|
||||
'line-inactive': 'inactive',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,37 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import data from '@@/dataset/element-edges.json';
|
||||
|
||||
export const elementEdgeCubicVertical: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [{ id: 'node1' }, { id: 'node2' }, { id: 'node3' }, { id: 'node4' }, { id: 'node5' }, { id: 'node6' }],
|
||||
edges: [
|
||||
{
|
||||
id: 'line-default',
|
||||
source: 'node1',
|
||||
target: 'node2',
|
||||
},
|
||||
{
|
||||
id: 'line-active',
|
||||
source: 'node1',
|
||||
target: 'node3',
|
||||
},
|
||||
{
|
||||
id: 'line-selected',
|
||||
source: 'node1',
|
||||
target: 'node4',
|
||||
},
|
||||
{
|
||||
id: 'line-highlight',
|
||||
source: 'node1',
|
||||
target: 'node5',
|
||||
},
|
||||
{
|
||||
id: 'line-inactive',
|
||||
source: 'node1',
|
||||
target: 'node6',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -60,12 +30,5 @@ export const elementEdgeCubicVertical: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'line-active': 'active',
|
||||
'line-selected': 'selected',
|
||||
'line-highlight': 'highlight',
|
||||
'line-inactive': 'inactive',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,37 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import data from '@@/dataset/element-edges.json';
|
||||
|
||||
export const elementEdgeCubic: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [{ id: 'node1' }, { id: 'node2' }, { id: 'node3' }, { id: 'node4' }, { id: 'node5' }, { id: 'node6' }],
|
||||
edges: [
|
||||
{
|
||||
id: 'line-default',
|
||||
source: 'node1',
|
||||
target: 'node2',
|
||||
},
|
||||
{
|
||||
id: 'line-active',
|
||||
source: 'node1',
|
||||
target: 'node3',
|
||||
},
|
||||
{
|
||||
id: 'line-selected',
|
||||
source: 'node1',
|
||||
target: 'node4',
|
||||
},
|
||||
{
|
||||
id: 'line-highlight',
|
||||
source: 'node1',
|
||||
target: 'node5',
|
||||
},
|
||||
{
|
||||
id: 'line-inactive',
|
||||
source: 'node1',
|
||||
target: 'node6',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -52,12 +22,5 @@ export const elementEdgeCubic: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'line-active': 'active',
|
||||
'line-selected': 'selected',
|
||||
'line-highlight': 'highlight',
|
||||
'line-inactive': 'inactive',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,37 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import data from '@@/dataset/element-edges.json';
|
||||
|
||||
export const elementEdgeLine: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [{ id: 'node1' }, { id: 'node2' }, { id: 'node3' }, { id: 'node4' }, { id: 'node5' }, { id: 'node6' }],
|
||||
edges: [
|
||||
{
|
||||
id: 'line-default',
|
||||
source: 'node1',
|
||||
target: 'node2',
|
||||
},
|
||||
{
|
||||
id: 'line-active',
|
||||
source: 'node1',
|
||||
target: 'node3',
|
||||
},
|
||||
{
|
||||
id: 'line-selected',
|
||||
source: 'node1',
|
||||
target: 'node4',
|
||||
},
|
||||
{
|
||||
id: 'line-highlight',
|
||||
source: 'node1',
|
||||
target: 'node5',
|
||||
},
|
||||
{
|
||||
id: 'line-inactive',
|
||||
source: 'node1',
|
||||
target: 'node6',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -52,12 +22,5 @@ export const elementEdgeLine: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'line-active': 'active',
|
||||
'line-selected': 'selected',
|
||||
'line-highlight': 'highlight',
|
||||
'line-inactive': 'inactive',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,37 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import data from '@@/dataset/element-edges.json';
|
||||
|
||||
export const elementEdgeQuadratic: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [{ id: 'node1' }, { id: 'node2' }, { id: 'node3' }, { id: 'node4' }, { id: 'node5' }, { id: 'node6' }],
|
||||
edges: [
|
||||
{
|
||||
id: 'line-default',
|
||||
source: 'node1',
|
||||
target: 'node2',
|
||||
},
|
||||
{
|
||||
id: 'line-active',
|
||||
source: 'node1',
|
||||
target: 'node3',
|
||||
},
|
||||
{
|
||||
id: 'line-selected',
|
||||
source: 'node1',
|
||||
target: 'node4',
|
||||
},
|
||||
{
|
||||
id: 'line-highlight',
|
||||
source: 'node1',
|
||||
target: 'node5',
|
||||
},
|
||||
{
|
||||
id: 'line-inactive',
|
||||
source: 'node1',
|
||||
target: 'node6',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -52,12 +22,5 @@ export const elementEdgeQuadratic: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'line-active': 'active',
|
||||
'line-selected': 'selected',
|
||||
'line-highlight': 'highlight',
|
||||
'line-inactive': 'inactive',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
101
packages/g6/__tests__/demos/element-node-badges.ts
Normal file
@ -0,0 +1,101 @@
|
||||
import { Graph } from '@/src';
|
||||
|
||||
export const elementNodeBadges: TestCase = async (context) => {
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data: {
|
||||
nodes: [
|
||||
{
|
||||
id: 'node-1',
|
||||
style: {
|
||||
x: 150,
|
||||
y: 150,
|
||||
size: 100,
|
||||
badges: [
|
||||
{ text: 'left', placement: 'left' },
|
||||
{ text: 'right', placement: 'right' },
|
||||
{ text: 'top', placement: 'top' },
|
||||
{ text: 'bottom', placement: 'bottom' },
|
||||
// { text: 'top-left', placement: 'top-left' },
|
||||
// { text: 'top-right', placement: 'top-right' },
|
||||
// { text: 'bottom-left', placement: 'bottom-left' },
|
||||
// { text: 'bottom-right', placement: 'bottom-right' },
|
||||
],
|
||||
badgeFontSize: 8,
|
||||
badgePadding: [10, 10],
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
});
|
||||
|
||||
await graph.render();
|
||||
|
||||
elementNodeBadges.form = (panel) => {
|
||||
const config = {
|
||||
add: () => {
|
||||
graph.updateNodeData([
|
||||
{
|
||||
id: 'node-1',
|
||||
style: {
|
||||
badges: [
|
||||
{ text: 'left', placement: 'left' },
|
||||
{ text: 'right', placement: 'right' },
|
||||
{ text: 'top', placement: 'top' },
|
||||
{ text: 'bottom', placement: 'bottom' },
|
||||
{ text: 'top-left', placement: 'top-left' },
|
||||
{ text: 'top-right', placement: 'top-right' },
|
||||
{ text: 'bottom-left', placement: 'bottom-left' },
|
||||
{ text: 'bottom-right', placement: 'bottom-right' },
|
||||
],
|
||||
},
|
||||
},
|
||||
]);
|
||||
graph.draw();
|
||||
},
|
||||
update: () => {
|
||||
graph.updateNodeData([
|
||||
{
|
||||
id: 'node-1',
|
||||
style: {
|
||||
badges: [
|
||||
{ text: 'left', placement: 'left', backgroundFill: 'red' },
|
||||
{ text: 'right', placement: 'right' },
|
||||
{ text: 'top', placement: 'top' },
|
||||
{ text: 'bottom', placement: 'bottom' },
|
||||
{ text: 'top-left', placement: 'top-left' },
|
||||
{ text: 'top-right', placement: 'top-right' },
|
||||
{ text: 'bottom-left', placement: 'bottom-left' },
|
||||
{ text: 'bottom-right', placement: 'bottom-right' },
|
||||
],
|
||||
},
|
||||
},
|
||||
]);
|
||||
graph.draw();
|
||||
},
|
||||
remove: () => {
|
||||
graph.updateNodeData([
|
||||
{
|
||||
id: 'node-1',
|
||||
style: {
|
||||
badges: [
|
||||
{ text: 'left', placement: 'left' },
|
||||
{ text: 'right', placement: 'right' },
|
||||
{ text: 'top', placement: 'top' },
|
||||
{ text: 'bottom', placement: 'bottom' },
|
||||
],
|
||||
},
|
||||
},
|
||||
]);
|
||||
graph.draw();
|
||||
},
|
||||
};
|
||||
return [
|
||||
panel.add(config, 'add').name('Add Badge'),
|
||||
panel.add(config, 'update').name('Update Badge'),
|
||||
panel.add(config, 'remove').name('Remove Badge'),
|
||||
];
|
||||
};
|
||||
|
||||
return graph;
|
||||
};
|
@ -1,21 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import { idOf } from '@/src/utils/id';
|
||||
import data from '@@/dataset/element-nodes.json';
|
||||
|
||||
export const elementNodeCircle: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [
|
||||
{ id: 'circle' },
|
||||
{ id: 'circle-halo' },
|
||||
{ id: 'circle-badges' },
|
||||
{ id: 'circle-ports' },
|
||||
{ id: 'circle-active' },
|
||||
{ id: 'circle-selected' },
|
||||
{ id: 'circle-highlight' },
|
||||
{ id: 'circle-inactive' },
|
||||
{ id: 'circle-disabled' },
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -27,22 +13,6 @@ export const elementNodeCircle: TestCase = async (context) => {
|
||||
iconHeight: 20,
|
||||
iconWidth: 20,
|
||||
iconSrc: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg',
|
||||
halo: (d) => idOf(d).toString().includes('halo'),
|
||||
portR: 3,
|
||||
ports: (d) =>
|
||||
idOf(d).toString().includes('ports')
|
||||
? [{ placement: 'left' }, { placement: 'right' }, { placement: 'top' }, { placement: 'bottom' }]
|
||||
: [],
|
||||
badges: (d) =>
|
||||
idOf(d).toString().includes('badges')
|
||||
? [
|
||||
{ text: 'A', placement: 'right-top' },
|
||||
{ text: 'Important', placement: 'right' },
|
||||
{ text: 'Notice', placement: 'right-bottom' },
|
||||
]
|
||||
: [],
|
||||
badgeFontSize: 8,
|
||||
badgePadding: [1, 4],
|
||||
},
|
||||
},
|
||||
layout: {
|
||||
@ -52,13 +22,5 @@ export const elementNodeCircle: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'circle-active': 'active',
|
||||
'circle-selected': 'selected',
|
||||
'circle-highlight': 'highlight',
|
||||
'circle-inactive': 'inactive',
|
||||
'circle-disabled': 'disabled',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,21 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import { idOf } from '@/src/utils/id';
|
||||
import data from '@@/dataset/element-nodes.json';
|
||||
|
||||
export const elementNodeDiamond: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [
|
||||
{ id: 'diamond' },
|
||||
{ id: 'diamond-halo' },
|
||||
{ id: 'diamond-badges' },
|
||||
{ id: 'diamond-ports' },
|
||||
{ id: 'diamond-active' },
|
||||
{ id: 'diamond-selected' },
|
||||
{ id: 'diamond-highlight' },
|
||||
{ id: 'diamond-inactive' },
|
||||
{ id: 'diamond-disabled' },
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -27,22 +13,6 @@ export const elementNodeDiamond: TestCase = async (context) => {
|
||||
iconWidth: 20,
|
||||
iconHeight: 20,
|
||||
iconSrc: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg',
|
||||
halo: (d) => idOf(d).toString().includes('halo'),
|
||||
portR: 3,
|
||||
ports: (d) =>
|
||||
idOf(d).toString().includes('ports')
|
||||
? [{ placement: 'left' }, { placement: 'right' }, { placement: 'top' }, { placement: 'bottom' }]
|
||||
: [],
|
||||
badges: (d) =>
|
||||
idOf(d).toString().includes('badges')
|
||||
? [
|
||||
{ text: 'A', placement: 'right-top' },
|
||||
{ text: 'Important', placement: 'right' },
|
||||
{ text: 'Notice', placement: 'right-bottom' },
|
||||
]
|
||||
: [],
|
||||
badgeFontSize: 8,
|
||||
badgePadding: [1, 4],
|
||||
},
|
||||
},
|
||||
layout: {
|
||||
@ -51,13 +21,5 @@ export const elementNodeDiamond: TestCase = async (context) => {
|
||||
});
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'diamond-active': 'active',
|
||||
'diamond-selected': 'selected',
|
||||
'diamond-highlight': 'highlight',
|
||||
'diamond-inactive': 'inactive',
|
||||
'diamond-disabled': 'disabled',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -5,7 +5,7 @@ export const elementNodeDonut: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [
|
||||
{
|
||||
id: 'donut',
|
||||
id: 'default',
|
||||
style: {
|
||||
innerR: '60%',
|
||||
donuts: [
|
||||
@ -18,25 +18,26 @@ export const elementNodeDonut: TestCase = async (context) => {
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'donut-halo',
|
||||
id: 'halo',
|
||||
style: {
|
||||
donuts: [{ color: 'red' }, { color: 'green' }],
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'donut-badges',
|
||||
id: 'badges',
|
||||
style: {
|
||||
donuts: [1, 2, 3],
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'donut-ports',
|
||||
id: 'ports',
|
||||
style: {
|
||||
donuts: [1, 1, 1],
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'donut-active',
|
||||
id: 'active',
|
||||
states: ['active'],
|
||||
style: {
|
||||
donuts: [
|
||||
{
|
||||
@ -49,13 +50,15 @@ export const elementNodeDonut: TestCase = async (context) => {
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'donut-selected',
|
||||
id: 'selected',
|
||||
states: ['selected'],
|
||||
style: {
|
||||
donuts: [{ value: 1000 }, { value: 20 }],
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'donut-highlight',
|
||||
id: 'highlight',
|
||||
states: ['highlight'],
|
||||
style: {
|
||||
donutLineWidth: 1,
|
||||
donutStroke: '#fff',
|
||||
@ -63,14 +66,16 @@ export const elementNodeDonut: TestCase = async (context) => {
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'donut-inactive',
|
||||
id: 'inactive',
|
||||
states: ['inactive'],
|
||||
style: {
|
||||
innerR: 0,
|
||||
donuts: [{ fill: 'red' }, { fill: 'green' }],
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'donut-disabled',
|
||||
id: 'disabled',
|
||||
states: ['disabled'],
|
||||
style: {
|
||||
innerR: '50%',
|
||||
donuts: [{ color: 'green' }, { color: 'red' }],
|
||||
@ -109,6 +114,7 @@ export const elementNodeDonut: TestCase = async (context) => {
|
||||
badgePadding: [1, 4],
|
||||
},
|
||||
},
|
||||
// TODO fixme when animation is enabled
|
||||
animation: false,
|
||||
layout: {
|
||||
type: 'grid',
|
||||
@ -118,13 +124,5 @@ export const elementNodeDonut: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'donut-active': 'active',
|
||||
'donut-selected': 'selected',
|
||||
'donut-highlight': 'highlight',
|
||||
'donut-inactive': 'inactive',
|
||||
'donut-disabled': 'disabled',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,21 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import { idOf } from '@/src/utils/id';
|
||||
import data from '@@/dataset/element-nodes.json';
|
||||
|
||||
export const elementNodeEllipse: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [
|
||||
{ id: 'ellipse' },
|
||||
{ id: 'ellipse-halo' },
|
||||
{ id: 'ellipse-badges' },
|
||||
{ id: 'ellipse-ports' },
|
||||
{ id: 'ellipse-active' },
|
||||
{ id: 'ellipse-selected' },
|
||||
{ id: 'ellipse-highlight' },
|
||||
{ id: 'ellipse-inactive' },
|
||||
{ id: 'ellipse-disabled' },
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -27,22 +13,6 @@ export const elementNodeEllipse: TestCase = async (context) => {
|
||||
iconHeight: 20,
|
||||
iconWidth: 20,
|
||||
iconSrc: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg',
|
||||
halo: (d) => idOf(d).toString().includes('halo'),
|
||||
portR: 3,
|
||||
ports: (d) =>
|
||||
idOf(d).toString().includes('ports')
|
||||
? [{ placement: 'left' }, { placement: 'right' }, { placement: 'top' }, { placement: 'bottom' }]
|
||||
: [],
|
||||
badges: (d) =>
|
||||
idOf(d).toString().includes('badges')
|
||||
? [
|
||||
{ text: 'A', placement: 'right-top' },
|
||||
{ text: 'Important', placement: 'right' },
|
||||
{ text: 'Notice', placement: 'right-bottom' },
|
||||
]
|
||||
: [],
|
||||
badgeFontSize: 8,
|
||||
badgePadding: [1, 4],
|
||||
},
|
||||
},
|
||||
layout: {
|
||||
@ -52,13 +22,5 @@ export const elementNodeEllipse: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'ellipse-active': 'active',
|
||||
'ellipse-selected': 'selected',
|
||||
'ellipse-highlight': 'highlight',
|
||||
'ellipse-inactive': 'inactive',
|
||||
'ellipse-disabled': 'disabled',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,21 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import { idOf } from '@/src/utils/id';
|
||||
import data from '@@/dataset/element-nodes.json';
|
||||
|
||||
export const elementNodeHexagon: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [
|
||||
{ id: 'hexagon' },
|
||||
{ id: 'hexagon-halo' },
|
||||
{ id: 'hexagon-badges' },
|
||||
{ id: 'hexagon-ports' },
|
||||
{ id: 'hexagon-active' },
|
||||
{ id: 'hexagon-selected' },
|
||||
{ id: 'hexagon-highlight' },
|
||||
{ id: 'hexagon-inactive' },
|
||||
{ id: 'hexagon-disabled' },
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -25,22 +11,6 @@ export const elementNodeHexagon: TestCase = async (context) => {
|
||||
size: 40,
|
||||
labelText: (d) => d.id!,
|
||||
iconSrc: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg',
|
||||
halo: (d) => idOf(d).toString().includes('halo'),
|
||||
portR: 3,
|
||||
ports: (d) =>
|
||||
idOf(d).toString().includes('ports')
|
||||
? [{ placement: 'left' }, { placement: 'right' }, { placement: 'top' }, { placement: 'bottom' }]
|
||||
: [],
|
||||
badges: (d) =>
|
||||
idOf(d).toString().includes('badges')
|
||||
? [
|
||||
{ text: 'A', placement: 'right-top' },
|
||||
{ text: 'Important', placement: 'right' },
|
||||
{ text: 'Notice', placement: 'right-bottom' },
|
||||
]
|
||||
: [],
|
||||
badgeFontSize: 8,
|
||||
badgePadding: [1, 4],
|
||||
},
|
||||
},
|
||||
layout: {
|
||||
@ -50,11 +20,5 @@ export const elementNodeHexagon: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState('hexagon-active', 'active');
|
||||
graph.setElementState('hexagon-selected', 'selected');
|
||||
graph.setElementState('hexagon-highlight', 'highlight');
|
||||
graph.setElementState('hexagon-inactive', 'inactive');
|
||||
graph.setElementState('hexagon-disabled', 'disabled');
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,21 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import { idOf } from '@/src/utils/id';
|
||||
import data from '@@/dataset/element-nodes.json';
|
||||
|
||||
export const elementNodeImage: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [
|
||||
{ id: 'image' },
|
||||
{ id: 'image-halo' },
|
||||
{ id: 'image-badges' },
|
||||
{ id: 'image-ports' },
|
||||
{ id: 'image-active' },
|
||||
{ id: 'image-selected' },
|
||||
{ id: 'image-highlight' },
|
||||
{ id: 'image-inactive' },
|
||||
{ id: 'image-disabled' },
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -25,27 +11,14 @@ export const elementNodeImage: TestCase = async (context) => {
|
||||
size: 40,
|
||||
labelText: (d) => d.id!,
|
||||
src: 'https://gw.alipayobjects.com/mdn/rms_6ae20b/afts/img/A*N4ZMS7gHsUIAAAAAAAAAAABkARQnAQ',
|
||||
halo: (d) => idOf(d).toString().includes('halo'),
|
||||
haloStroke: '#227eff',
|
||||
portR: 3,
|
||||
ports: (d) =>
|
||||
idOf(d).toString().includes('ports')
|
||||
? [{ placement: 'left' }, { placement: 'right' }, { placement: 'top' }, { placement: 'bottom' }]
|
||||
: [],
|
||||
badges: (d) =>
|
||||
idOf(d).toString().includes('badges')
|
||||
? [
|
||||
{ text: 'A', placement: 'right-top' },
|
||||
{ text: 'Important', placement: 'right' },
|
||||
{ text: 'Notice', placement: 'right-bottom' },
|
||||
]
|
||||
: [],
|
||||
badgeFontSize: 8,
|
||||
badgePadding: [1, 4],
|
||||
},
|
||||
state: {
|
||||
inactive: {
|
||||
fillOpacity: 0.5,
|
||||
},
|
||||
disabled: {
|
||||
opacity: 0.2,
|
||||
fillOpacity: 0.2,
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -56,13 +29,5 @@ export const elementNodeImage: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'image-active': 'active',
|
||||
'image-selected': 'selected',
|
||||
'image-highlight': 'highlight',
|
||||
'image-inactive': 'inactive',
|
||||
'image-disabled': 'disabled',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,21 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import { idOf } from '@/src/utils/id';
|
||||
import data from '@@/dataset/element-nodes.json';
|
||||
|
||||
export const elementNodeRect: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [
|
||||
{ id: 'rect' },
|
||||
{ id: 'rect-halo' },
|
||||
{ id: 'rect-badges' },
|
||||
{ id: 'rect-ports' },
|
||||
{ id: 'rect-active' },
|
||||
{ id: 'rect-selected' },
|
||||
{ id: 'rect-highlight' },
|
||||
{ id: 'rect-inactive' },
|
||||
{ id: 'rect-disabled' },
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -28,22 +14,6 @@ export const elementNodeRect: TestCase = async (context) => {
|
||||
iconWidth: 20,
|
||||
iconHeight: 20,
|
||||
iconSrc: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg',
|
||||
halo: (d) => idOf(d).toString().includes('halo'),
|
||||
portR: 3,
|
||||
ports: (d) =>
|
||||
idOf(d).toString().includes('ports')
|
||||
? [{ placement: 'left' }, { placement: 'right' }, { placement: 'top' }, { placement: 'bottom' }]
|
||||
: [],
|
||||
badges: (d) =>
|
||||
idOf(d).toString().includes('badges')
|
||||
? [
|
||||
{ text: 'A', placement: 'right-top' },
|
||||
{ text: 'Important', placement: 'right' },
|
||||
{ text: 'Notice', placement: 'right-bottom' },
|
||||
]
|
||||
: [],
|
||||
badgeFontSize: 8,
|
||||
badgePadding: [1, 4],
|
||||
},
|
||||
},
|
||||
layout: {
|
||||
@ -53,13 +23,5 @@ export const elementNodeRect: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'rect-active': 'active',
|
||||
'rect-selected': 'selected',
|
||||
'rect-highlight': 'highlight',
|
||||
'rect-inactive': 'inactive',
|
||||
'rect-disabled': 'disabled',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,21 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import { idOf } from '@/src/utils/id';
|
||||
import data from '@@/dataset/element-nodes.json';
|
||||
|
||||
export const elementNodeStar: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [
|
||||
{ id: 'star' },
|
||||
{ id: 'star-halo' },
|
||||
{ id: 'star-badges' },
|
||||
{ id: 'star-ports' },
|
||||
{ id: 'star-active' },
|
||||
{ id: 'star-selected' },
|
||||
{ id: 'star-highlight' },
|
||||
{ id: 'star-inactive' },
|
||||
{ id: 'star-disabled' },
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -25,22 +11,6 @@ export const elementNodeStar: TestCase = async (context) => {
|
||||
size: 40,
|
||||
labelText: (d) => d.id!,
|
||||
iconSrc: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg',
|
||||
halo: (d) => idOf(d).toString().includes('halo'),
|
||||
portR: 3,
|
||||
ports: (d) =>
|
||||
idOf(d).toString().includes('ports')
|
||||
? [{ placement: 'left' }, { placement: 'right' }, { placement: 'top' }, { placement: 'bottom' }]
|
||||
: [],
|
||||
badges: (d) =>
|
||||
idOf(d).toString().includes('badges')
|
||||
? [
|
||||
{ text: 'A', placement: 'right-top' },
|
||||
{ text: 'Important', placement: 'right' },
|
||||
{ text: 'Notice', placement: 'right-bottom' },
|
||||
]
|
||||
: [],
|
||||
badgeFontSize: 8,
|
||||
badgePadding: [1, 4],
|
||||
},
|
||||
},
|
||||
layout: {
|
||||
@ -50,13 +20,5 @@ export const elementNodeStar: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'star-active': 'active',
|
||||
'star-selected': 'selected',
|
||||
'star-highlight': 'highlight',
|
||||
'star-inactive': 'inactive',
|
||||
'star-disabled': 'disabled',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -1,20 +1,7 @@
|
||||
import { Graph } from '@/src';
|
||||
import { idOf } from '@/src/utils/id';
|
||||
import data from '@@/dataset/element-nodes.json';
|
||||
|
||||
export const elementNodeTriangle: TestCase = async (context) => {
|
||||
const data = {
|
||||
nodes: [
|
||||
{ id: 'triangle' },
|
||||
{ id: 'triangle-halo' },
|
||||
{ id: 'triangle-badges' },
|
||||
{ id: 'triangle-ports', data: { direction: 'left' } },
|
||||
{ id: 'triangle-active' },
|
||||
{ id: 'triangle-selected' },
|
||||
{ id: 'triangle-highlight' },
|
||||
{ id: 'triangle-inactive' },
|
||||
],
|
||||
};
|
||||
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
@ -22,25 +9,10 @@ export const elementNodeTriangle: TestCase = async (context) => {
|
||||
type: 'triangle', // 👈🏻 Node shape type.
|
||||
style: {
|
||||
size: 40,
|
||||
direction: (d: any) => d.data?.direction,
|
||||
direction: (d: any) => (d.id === 'ports' ? 'left' : undefined),
|
||||
labelText: (d) => d.id!,
|
||||
iconSrc: 'https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg',
|
||||
halo: (d) => idOf(d).toString().includes('halo'),
|
||||
portR: 3,
|
||||
ports: (d) =>
|
||||
idOf(d).toString().includes('ports')
|
||||
? [{ placement: 'left' }, { placement: 'top' }, { placement: 'bottom' }]
|
||||
: [],
|
||||
badges: (d) =>
|
||||
idOf(d).toString().includes('badges')
|
||||
? [
|
||||
{ text: 'A', placement: 'right-top' },
|
||||
{ text: 'Important', placement: 'right' },
|
||||
{ text: 'Notice', placement: 'right-bottom' },
|
||||
]
|
||||
: [],
|
||||
badgeFontSize: 8,
|
||||
badgePadding: [1, 4],
|
||||
ports: (d) => (d.id === 'ports' ? [{ placement: 'left' }, { placement: 'top' }, { placement: 'bottom' }] : []),
|
||||
},
|
||||
},
|
||||
layout: {
|
||||
@ -50,12 +22,5 @@ export const elementNodeTriangle: TestCase = async (context) => {
|
||||
|
||||
await graph.render();
|
||||
|
||||
graph.setElementState({
|
||||
'triangle-active': 'active',
|
||||
'triangle-selected': 'selected',
|
||||
'triangle-highlight': 'highlight',
|
||||
'triangle-inactive': 'inactive',
|
||||
});
|
||||
|
||||
return graph;
|
||||
};
|
||||
|
@ -5,12 +5,12 @@ export const elementState: TestCase = async (context) => {
|
||||
...context,
|
||||
data: {
|
||||
nodes: [
|
||||
{ id: 'node-1', style: { x: 50, y: 50, states: ['active', 'selected'] } },
|
||||
{ id: 'node-1', states: ['active', 'selected'], style: { x: 50, y: 50 } },
|
||||
{ id: 'node-2', style: { x: 200, y: 50 } },
|
||||
{ id: 'node-3', style: { x: 125, y: 150, states: ['active'] } },
|
||||
{ id: 'node-3', states: ['active'], style: { x: 125, y: 150 } },
|
||||
],
|
||||
edges: [
|
||||
{ id: 'edge-1', source: 'node-1', target: 'node-2', style: { states: ['active'] } },
|
||||
{ id: 'edge-1', source: 'node-1', target: 'node-2', states: ['active'] },
|
||||
{ id: 'edge-2', source: 'node-2', target: 'node-3' },
|
||||
{ id: 'edge-3', source: 'node-3', target: 'node-1' },
|
||||
],
|
||||
|
@ -34,6 +34,7 @@ export * from './element-edge-port';
|
||||
export * from './element-edge-quadratic';
|
||||
export * from './element-label-background';
|
||||
export * from './element-label-oversized';
|
||||
export * from './element-node-badges';
|
||||
export * from './element-node-circle';
|
||||
export * from './element-node-diamond';
|
||||
export * from './element-node-donut';
|
||||
|
@ -14,8 +14,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
@ -14,8 +14,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="2" stroke="rgba(255,192,203,1)"/>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
@ -14,8 +14,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(217,185,205,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(217,185,205,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="1.6270672695016453" stroke="rgba(217,185,205,1)"/>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,251.059998,263.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="156.67582487416496" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="156.67582487416496" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="4" stroke="rgba(153,173,209,1)" r="156.67582487416496"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,249.535004,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-154.30879827475812,-154.30879827475812)" cx="154.30879827475812" cy="154.30879827475812" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="154.30879827475812" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-154.30879827475812,-154.30879827475812)" cx="154.30879827475812" cy="154.30879827475812" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="154.30879827475812" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-154.30879827475812,-154.30879827475812)" cx="154.30879827475812" cy="154.30879827475812" stroke-dasharray="0,0" stroke-width="4" stroke="rgba(153,173,209,1)" r="154.30879827475812"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,251.059998,263.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="156.67582487416496" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="156.67582487416496" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="4" stroke="rgba(153,173,209,1)" r="156.67582487416496"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,251.059998,263.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="156.67582487416496" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="156.67582487416496" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="4" stroke="rgba(153,173,209,1)" r="156.67582487416496"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,250.979996,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="153.09563155100147" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="153.09563155100147" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="1" stroke="rgba(153,173,209,1)" r="153.09563155100147"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,250.979996,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="153.09563155100147" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="153.09563155100147" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="1" stroke="rgba(153,173,209,1)" r="153.09563155100147"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,250.979996,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="153.09563155100147" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="153.09563155100147" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="1" stroke="rgba(153,173,209,1)" r="153.09563155100147"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,250.979996,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="153.09563155100147" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="153.09563155100147" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="1" stroke="rgba(153,173,209,1)" r="153.09563155100147"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 9.0 KiB |
@ -7,421 +7,421 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,365.524200,298.502899)">
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,392.051056,271.307404)">
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,400.507874,263.912445)">
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,403.328308,276.133698)">
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,350.867798,241.794266)">
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,298.298676,305.515259)">
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.917114,252.520004)">
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.764313,244.469086)">
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,270.737335,258.503815)">
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,274.797943,230.181900)">
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.204514,254.095291)">
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,238.087234,234.505280)">
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,240.364716,207.018738)">
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.866821,276.307831)">
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,190.536011,248.639175)">
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,263.544189,287.865906)">
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,314.602539,227.124191)">
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,224.691742,239.583878)">
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.769775,212.654083)">
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,235.524231,237.610489)">
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.694412,245.153595)">
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,215.463638,214.351868)">
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.697922,207.328568)">
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.343948,195.606216)">
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.680588,193.802521)">
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.274948,198.302048)">
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,176.097534,202.782532)">
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.336472,190.936752)">
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.099045,208.318863)">
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.379883,232.646774)">
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,189.724564,249.878540)">
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,163.347382,251.128357)">
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,174.493744,253.430618)">
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131.675735,197.261536)">
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,148.314407,232.775162)">
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,155.305023,224.208908)">
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,162.454102,215.117645)">
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,147.299225,246.866562)">
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,135.322952,227.695282)">
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,127.811218,199.837967)">
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,112.449059,166.496597)">
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,100.137886,178.363419)">
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,130.708145,198.173569)">
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,133.280060,194.953278)">
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,124.796898,200.446716)">
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,129.217148,233.845734)">
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@ -436,167 +436,167 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,339.094788,315.543945)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,370.968445,288.851654)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,362.906281,318.573822)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,390.833374,261.381805)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,394.190338,288.745087)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,431.701477,272.072021)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,364.478424,257.281433)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,318.348206,321.429230)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,302.295441,260.872406)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,266.383606,249.501328)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,254.339722,283.957214)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,304.881592,224.778290)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,344.266449,234.282791)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,290.466095,299.298279)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,355.900360,303.345215)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,247.790298,252.839096)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,216.018387,234.606628)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,215.189865,204.355621)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,174.723480,192.877380)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.141846,198.491043)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,229.251373,229.822601)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,181.786972,243.796219)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,124.348000,190.456802)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.322205,273.324493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.547409,271.011017)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,171.814499,279.656586)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,108.001213,157.540222)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,138.816025,229.647766)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,91.191887,173.894730)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,147.265244,218.262314)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.864365,206.825790)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,137.782242,257.992889)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,125.874176,224.421051)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 47 KiB |
@ -7,8 +7,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
@ -7,8 +7,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -18,8 +18,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -29,8 +29,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -40,8 +40,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -51,8 +51,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -62,8 +62,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -73,8 +73,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -84,8 +84,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -95,8 +95,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -106,8 +106,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -117,8 +117,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -128,8 +128,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -139,8 +139,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -150,8 +150,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
@ -7,8 +7,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -18,414 +18,414 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,365.524200,298.502899)">
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,392.051056,271.307404)">
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,400.507874,263.912445)">
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,403.328308,276.133698)">
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,350.867798,241.794266)">
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,298.298676,305.515259)">
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.917114,252.520004)">
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.764313,244.469086)">
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,270.737335,258.503815)">
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,274.797943,230.181900)">
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.204514,254.095291)">
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,238.087234,234.505280)">
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,240.364716,207.018738)">
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.866821,276.307831)">
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,190.536011,248.639175)">
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,263.544189,287.865906)">
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,314.602539,227.124191)">
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,224.691742,239.583878)">
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.769775,212.654083)">
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,235.524231,237.610489)">
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.694412,245.153595)">
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,215.463638,214.351868)">
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.697922,207.328568)">
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.343948,195.606216)">
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.680588,193.802521)">
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.274948,198.302048)">
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,176.097534,202.782532)">
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.336472,190.936752)">
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.099045,208.318863)">
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.379883,232.646774)">
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,189.724564,249.878540)">
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,163.347382,251.128357)">
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,174.493744,253.430618)">
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131.675735,197.261536)">
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,148.314407,232.775162)">
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,155.305023,224.208908)">
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,162.454102,215.117645)">
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,147.299225,246.866562)">
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,135.322952,227.695282)">
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,127.811218,199.837967)">
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,112.449059,166.496597)">
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,100.137886,178.363419)">
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,130.708145,198.173569)">
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,133.280060,194.953278)">
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,124.796898,200.446716)">
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,129.217148,233.845734)">
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@ -448,162 +448,162 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,370.968445,288.851654)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,362.906281,318.573822)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,390.833374,261.381805)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,394.190338,288.745087)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,431.701477,272.072021)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,364.478424,257.281433)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,318.348206,321.429230)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,302.295441,260.872406)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,266.383606,249.501328)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,254.339722,283.957214)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,304.881592,224.778290)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,344.266449,234.282791)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,290.466095,299.298279)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,355.900360,303.345215)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,247.790298,252.839096)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,216.018387,234.606628)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,215.189865,204.355621)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,174.723480,192.877380)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.141846,198.491043)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,229.251373,229.822601)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,181.786972,243.796219)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,124.348000,190.456802)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.322205,273.324493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.547409,271.011017)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,171.814499,279.656586)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,108.001213,157.540222)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,138.816025,229.647766)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,91.191887,173.894730)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,147.265244,218.262314)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.864365,206.825790)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,137.782242,257.992889)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,125.874176,224.421051)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 47 KiB |
@ -7,8 +7,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -18,8 +18,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -29,8 +29,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -40,8 +40,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -51,8 +51,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -62,8 +62,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -73,8 +73,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -84,8 +84,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -95,8 +95,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -106,8 +106,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -117,8 +117,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -128,8 +128,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -139,8 +139,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -150,8 +150,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -161,323 +161,323 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,365.524200,298.502899)">
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,392.051056,271.307404)">
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,400.507874,263.912445)">
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,403.328308,276.133698)">
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,350.867798,241.794266)">
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,298.298676,305.515259)">
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.917114,252.520004)">
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.764313,244.469086)">
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,270.737335,258.503815)">
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,274.797943,230.181900)">
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.204514,254.095291)">
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,238.087234,234.505280)">
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,240.364716,207.018738)">
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.866821,276.307831)">
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,190.536011,248.639175)">
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,263.544189,287.865906)">
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,314.602539,227.124191)">
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,224.691742,239.583878)">
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.769775,212.654083)">
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,235.524231,237.610489)">
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.694412,245.153595)">
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,215.463638,214.351868)">
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.697922,207.328568)">
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.343948,195.606216)">
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.680588,193.802521)">
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.274948,198.302048)">
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,176.097534,202.782532)">
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.336472,190.936752)">
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.099045,208.318863)">
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.379883,232.646774)">
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,189.724564,249.878540)">
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,163.347382,251.128357)">
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,174.493744,253.430618)">
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131.675735,197.261536)">
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,148.314407,232.775162)">
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,155.305023,224.208908)">
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,162.454102,215.117645)">
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,147.299225,246.866562)">
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,135.322952,227.695282)">
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,127.811218,199.837967)">
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,112.449059,166.496597)">
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,100.137886,178.363419)">
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,130.708145,198.173569)">
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,133.280060,194.953278)">
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,124.796898,200.446716)">
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,129.217148,233.845734)">
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@ -532,7 +532,7 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,431.701477,272.072021)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,364.478424,257.281433)">
|
||||
@ -577,7 +577,7 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,304.881592,224.778290)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,344.266449,234.282791)">
|
||||
@ -614,87 +614,87 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,216.018387,234.606628)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,215.189865,204.355621)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,174.723480,192.877380)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.141846,198.491043)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,229.251373,229.822601)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,181.786972,243.796219)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,124.348000,190.456802)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.322205,273.324493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.547409,271.011017)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,171.814499,279.656586)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,108.001213,157.540222)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,138.816025,229.647766)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,91.191887,173.894730)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,147.265244,218.262314)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.864365,206.825790)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,137.782242,257.992889)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,125.874176,224.421051)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 55 KiB |
@ -7,8 +7,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -18,8 +18,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -29,8 +29,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -40,8 +40,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -51,8 +51,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -62,8 +62,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -73,8 +73,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -84,8 +84,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -95,8 +95,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -106,8 +106,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -117,8 +117,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -128,8 +128,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -139,8 +139,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -150,8 +150,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -161,323 +161,323 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,365.524200,298.502899)">
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,392.051056,271.307404)">
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,400.507874,263.912445)">
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,403.328308,276.133698)">
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,350.867798,241.794266)">
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,298.298676,305.515259)">
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.917114,252.520004)">
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.764313,244.469086)">
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,270.737335,258.503815)">
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,274.797943,230.181900)">
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.204514,254.095291)">
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,238.087234,234.505280)">
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,240.364716,207.018738)">
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.866821,276.307831)">
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,190.536011,248.639175)">
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,263.544189,287.865906)">
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,314.602539,227.124191)">
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,224.691742,239.583878)">
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.769775,212.654083)">
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,235.524231,237.610489)">
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.694412,245.153595)">
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,215.463638,214.351868)">
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.697922,207.328568)">
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.343948,195.606216)">
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.680588,193.802521)">
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.274948,198.302048)">
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,176.097534,202.782532)">
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.336472,190.936752)">
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.099045,208.318863)">
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.379883,232.646774)">
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,189.724564,249.878540)">
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,163.347382,251.128357)">
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,174.493744,253.430618)">
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131.675735,197.261536)">
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,148.314407,232.775162)">
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,155.305023,224.208908)">
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,162.454102,215.117645)">
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,147.299225,246.866562)">
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,135.322952,227.695282)">
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,127.811218,199.837967)">
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,112.449059,166.496597)">
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,100.137886,178.363419)">
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,130.708145,198.173569)">
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,133.280060,194.953278)">
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,124.796898,200.446716)">
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,129.217148,233.845734)">
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@ -532,7 +532,7 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,431.701477,272.072021)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,364.478424,257.281433)">
|
||||
@ -577,7 +577,7 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,304.881592,224.778290)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,344.266449,234.282791)">
|
||||
@ -614,87 +614,87 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,216.018387,234.606628)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,215.189865,204.355621)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,174.723480,192.877380)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.141846,198.491043)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,229.251373,229.822601)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,181.786972,243.796219)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,124.348000,190.456802)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.322205,273.324493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.547409,271.011017)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,171.814499,279.656586)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,108.001213,157.540222)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,138.816025,229.647766)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,91.191887,173.894730)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,147.265244,218.262314)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.864365,206.825790)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,137.782242,257.992889)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,125.874176,224.421051)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 55 KiB |
@ -7,8 +7,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -18,8 +18,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -29,8 +29,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -40,8 +40,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -51,8 +51,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -62,8 +62,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -73,8 +73,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -84,8 +84,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -95,8 +95,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -106,8 +106,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -117,8 +117,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -128,8 +128,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -139,8 +139,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -150,8 +150,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -161,8 +161,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,365.524200,298.502899)">
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,365.524200,298.502899)">
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -172,8 +172,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,392.051056,271.307404)">
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,392.051056,271.307404)">
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -183,8 +183,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,400.507874,263.912445)">
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,400.507874,263.912445)">
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -194,8 +194,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,403.328308,276.133698)">
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,403.328308,276.133698)">
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -205,8 +205,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,350.867798,241.794266)">
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,350.867798,241.794266)">
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -216,8 +216,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,298.298676,305.515259)">
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,298.298676,305.515259)">
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -227,8 +227,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.917114,252.520004)">
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,275.917114,252.520004)">
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -238,8 +238,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.764313,244.469086)">
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,191.764313,244.469086)">
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -249,8 +249,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,270.737335,258.503815)">
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,270.737335,258.503815)">
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -260,8 +260,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,274.797943,230.181900)">
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,274.797943,230.181900)">
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -271,8 +271,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.204514,254.095291)">
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,229.204514,254.095291)">
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -282,8 +282,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,238.087234,234.505280)">
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,238.087234,234.505280)">
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -293,8 +293,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,240.364716,207.018738)">
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,240.364716,207.018738)">
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -304,8 +304,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.866821,276.307831)">
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,229.866821,276.307831)">
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -315,8 +315,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,190.536011,248.639175)">
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,190.536011,248.639175)">
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -326,8 +326,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,263.544189,287.865906)">
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,263.544189,287.865906)">
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -337,8 +337,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,314.602539,227.124191)">
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,314.602539,227.124191)">
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -348,8 +348,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,224.691742,239.583878)">
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,224.691742,239.583878)">
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -359,8 +359,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.769775,212.654083)">
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,220.769775,212.654083)">
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -370,8 +370,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,235.524231,237.610489)">
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,235.524231,237.610489)">
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -381,8 +381,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.694412,245.153595)">
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,191.694412,245.153595)">
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -392,176 +392,176 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,215.463638,214.351868)">
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.697922,207.328568)">
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.343948,195.606216)">
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.680588,193.802521)">
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.274948,198.302048)">
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,176.097534,202.782532)">
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.336472,190.936752)">
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.099045,208.318863)">
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.379883,232.646774)">
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,189.724564,249.878540)">
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,163.347382,251.128357)">
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,174.493744,253.430618)">
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131.675735,197.261536)">
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,148.314407,232.775162)">
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,155.305023,224.208908)">
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,162.454102,215.117645)">
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,147.299225,246.866562)">
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,135.322952,227.695282)">
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,127.811218,199.837967)">
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,112.449059,166.496597)">
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,100.137886,178.363419)">
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,130.708145,198.173569)">
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,133.280060,194.953278)">
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,124.796898,200.446716)">
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,129.217148,233.845734)">
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@ -720,7 +720,7 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,174.723480,192.877380)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.141846,198.491043)">
|
||||
@ -749,7 +749,7 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,124.348000,190.456802)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.322205,273.324493)">
|
||||
@ -762,47 +762,47 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.547409,271.011017)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,171.814499,279.656586)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,108.001213,157.540222)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,138.816025,229.647766)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,91.191887,173.894730)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,147.265244,218.262314)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.864365,206.825790)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,137.782242,257.992889)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,125.874176,224.421051)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 65 KiB |
@ -7,421 +7,421 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.650574,289.942566)">
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.00321550206877,15.90388214885752" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.993835,282.311096)">
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.190353815967796,4.474533855201457" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,336.699585,287.852966)">
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.71671887923935,23.112969505847786" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,339.758057,264.352844)">
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,12.921196093319395 L 41.526868901056446,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,340.122498,281.562012)">
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 44.154939919865,5.866114034126099" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,338.516907,262.848175)">
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,11.830131726803188 L 17.65421616856645,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,321.115784,289.854462)">
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 6.3262158750483195,0 L 0,21.965384425875868" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,310.510834,266.573944)">
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 11.483396823186581,7.969570875354975 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.392914,253.840942)">
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 45.80735666833618,22.06450648350517 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,264.327759,280.733765)">
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 55.89376960398647,0 L 0,2.7347681893552362" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,333.134216,243.845566)">
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,26.836726064647138 L 8.20760131523707,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,299.483429,284.567993)">
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.708852779092126,0 L 0,10.40732718941831" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,337.645630,286.931274)">
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.818686706065023,9.727751432773744" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,257.279449,255.994415)">
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 63.440997494581325,21.095320195162202 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,365.524200,298.502899)">
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.826346225657403,0 L 0,10.419675667939487" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,392.051056,271.307404)">
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.9215958067132988,7.512110472917925" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,400.507874,263.912445)">
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 21.519112111523555,5.628936528653185" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,403.328308,276.133698)">
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,8.549706796017631 L 19.23516976318365,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,350.867798,241.794266)">
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.009296937766749,7.97568322435751 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,298.298676,305.515259)">
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 12.216959521789704,9.697003773613574 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,275.917114,252.520004)">
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 16.844837026006303,5.333728156884831 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.764313,244.469086)">
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 64.64195949100306,4.35938623932384 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,270.737335,258.503815)">
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 15.375023637698519,31.791950690606654" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,274.797943,230.181900)">
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,13.915826193946316 L 21.669314500815176,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.204514,254.095291)">
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.296781455401856,0 L 0,14.635223828555041" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,238.087234,234.505280)">
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 19.460507431196902,10.313357691789577 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,240.364716,207.018738)">
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 20.79601442303587,33.954892489402994 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,229.866821,276.307831)">
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.928276522894635,4.66607242593102 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,190.536011,248.639175)">
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 55.05466742083314,30.47507173454332 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,263.544189,287.865906)">
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 17.717436347690864,7.523709362258614" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,314.602539,227.124191)">
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 19.942966641270687,4.812711453172426" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,224.691742,239.583878)">
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 14.425208440378356,8.277976767341045 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.769775,212.654083)">
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.440605033326506,31.886540317190054 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,235.524231,237.610489)">
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.993212715827326,7.440709088780466 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.694412,245.153595)">
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 46.188432023457835,6.328110133264943 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,215.463638,214.351868)">
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0.28096233153735284,10.258504017510404 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,220.697922,207.328568)">
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,18.440523845337168 L 9.764388309402989,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.343948,195.606216)">
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 21.225443109670323,6.020571180647153 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,184.680588,193.802521)">
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 40.50413912040608,3.763368538258362" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.274948,198.302048)">
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 32.04775827481251,0 L 0,20.69433636365636" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,176.097534,202.782532)">
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 4.31539519584237,31.108539034860257" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,134.336472,190.936752)">
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 30.39852946174568,1.4606711595475872 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.099045,208.318863)">
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 2.1951235798696302,0 L 0,11.675912804199129" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,191.379883,232.646774)">
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 28.27856900839157,0 L 0,8.325268999998968" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,189.724564,249.878540)">
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 22.660041712192026,17.3636407128146" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,163.347382,251.128357)">
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 11.639606193466022,0 L 0,12.550515680279403" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,174.493744,253.430618)">
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 4.613979112085474,0 L 0,16.59156972068513" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131.675735,197.261536)">
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 42.78351330034957,39.72995228100092 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,148.314407,232.775162)">
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 23.974173895803233,7.893646483960822 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,155.305023,224.208908)">
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 18.44217957024682,13.640709255528293 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,162.454102,215.117645)">
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 13.743146573936542,20.38671190055601 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,147.299225,246.866562)">
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 24.970759614863823,0 L 0,8.0559895579907" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,135.322952,227.695282)">
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 37.015242248122775,12.826697687946762 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,127.811218,199.837967)">
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 7.541590285558968,20.428647809395272" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,112.449059,166.496597)">
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 7.451090499860754,15.003830754884575 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,100.137886,178.363419)">
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 15.264120101470496,7.6247016697710706 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,130.708145,198.173569)">
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 10.19695223786482,12.371970773691658" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,133.280060,194.953278)">
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 14.65223764646828,7.3760490255832" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,124.796898,200.446716)">
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0.6283865331095058,13.984409487193318" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,129.217148,233.845734)">
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 5.222123956140592,14.722483437280914 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@ -436,167 +436,167 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,339.094788,315.543945)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,370.968445,288.851654)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,362.906281,318.573822)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,390.833374,261.381805)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,394.190338,288.745087)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,431.701477,272.072021)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,364.478424,257.281433)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,318.348206,321.429230)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,302.295441,260.872406)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,266.383606,249.501328)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,254.339722,283.957214)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,304.881592,224.778290)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,344.266449,234.282791)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,290.466095,299.298279)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,355.900360,303.345215)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,247.790298,252.839096)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,216.018387,234.606628)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,215.189865,204.355621)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,174.723480,192.877380)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.141846,198.491043)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,229.251373,229.822601)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,181.786972,243.796219)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,124.348000,190.456802)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.322205,273.324493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.547409,271.011017)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,171.814499,279.656586)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,108.001213,157.540222)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,138.816025,229.647766)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,91.191887,173.894730)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,147.265244,218.262314)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,156.864365,206.825790)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,137.782242,257.992889)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,125.874176,224.421051)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" r="10" fill-opacity="0.25" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 47 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,251.059998,263.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="156.67582487416496" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="156.67582487416496" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-156.67582487416496,-156.67582487416496)" cx="156.67582487416496" cy="156.67582487416496" stroke-dasharray="0,0" stroke-width="4" stroke="rgba(153,173,209,1)" r="156.67582487416496"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,249.535004,263.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-155.40014551151486,-155.40014551151486)" cx="155.40014551151486" cy="155.40014551151486" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="155.40014551151486" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-155.40014551151486,-155.40014551151486)" cx="155.40014551151486" cy="155.40014551151486" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="155.40014551151486" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-155.40014551151486,-155.40014551151486)" cx="155.40014551151486" cy="155.40014551151486" stroke-dasharray="0,0" stroke-width="4" stroke="rgba(153,173,209,1)" r="155.40014551151486"/>
|
||||
@ -37,8 +37,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,249.535004,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-154.30879827475812,-154.30879827475812)" cx="154.30879827475812" cy="154.30879827475812" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="154.30879827475812" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-154.30879827475812,-154.30879827475812)" cx="154.30879827475812" cy="154.30879827475812" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="154.30879827475812" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-154.30879827475812,-154.30879827475812)" cx="154.30879827475812" cy="154.30879827475812" stroke-dasharray="0,0" stroke-width="4" stroke="rgba(153,173,209,1)" r="154.30879827475812"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,250.979996,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="153.09563155100147" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="153.09563155100147" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="1" stroke="rgba(153,173,209,1)" r="153.09563155100147"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,250.979996,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="153.09563155100147" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="153.09563155100147" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="1" stroke="rgba(153,173,209,1)" r="153.09563155100147"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,250.979996,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="153.09563155100147" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="153.09563155100147" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="1" stroke="rgba(153,173,209,1)" r="153.09563155100147"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,250.979996,261.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke="rgba(153,173,209,1)" r="153.09563155100147" stroke-opacity="0.25" pointer-events="none"/>
|
||||
<circle fill="none" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="12" stroke-opacity="0.25" stroke="rgba(153,173,209,1)" r="153.09563155100147" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(253,253,253,1)" transform="translate(-153.09563155100147,-153.09563155100147)" cx="153.09563155100147" cy="153.09563155100147" stroke-dasharray="0,0" stroke-width="1" stroke="rgba(153,173,209,1)" r="153.09563155100147"/>
|
||||
@ -16,8 +16,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,205.366562)">
|
||||
<path fill="none" d="M 0,39.266873708001015 L 78.53374741600203,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -27,8 +27,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,205.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708001015" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -38,8 +38,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,260.733124,255.366562)">
|
||||
<path fill="none" d="M 78.53374741600203,0 L 0,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -49,8 +49,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,160.733124,255.366562)">
|
||||
<path fill="none" d="M 0,0 L 78.53374741600203,39.266873708000986" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
|
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 9.0 KiB |
@ -28,8 +28,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,62,164)">
|
||||
<path fill="none" d="M 0,114 C 150 114,150 0,300 0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,114 C 150 114,150 0,300 0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,114 C 150 114,150 0,300 0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,62,164)">
|
||||
<path fill="none" d="M 0,114 C 150 114,150 0,300 0 L 295,6.123233995736766e-16" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -51,14 +51,14 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,62,278)">
|
||||
<path fill="none" d="M 0,0 C 150 0,150 0,300 0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 150 0,150 0,300 0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 150 0,150 0,300 0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,62,278)">
|
||||
<path fill="none" d="M 0,0 C 150 0,150 0,300 0 L 295,6.123233995736766e-16" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(-1,0,-0,-1,295,0)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -76,10 +76,10 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,62,278)">
|
||||
<path fill="none" d="M 0,0 C 150 0,150 114,300 114 L 295,114" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(-1,0,-0,-1,295,114)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -99,16 +99,16 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,62,278)">
|
||||
<path fill="none" d="M 0,0 C 150 0,150 228,300 228 L 295,228" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 150 0,150 228,300 228 L 295,228" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25"/>
|
||||
<g transform="matrix(-1,0,-0,-1,295,228)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.559860,0.828587,-0.828587,0.559860,214.239441,395.314362)">
|
||||
<g transform="matrix(1,0,0,1,-35.639999,-11.500000)">
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.75" stroke-width="0" width="72.28" height="23"/>
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.1875" stroke-width="0" width="72.28" height="23"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@ -28,8 +28,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,149,62)">
|
||||
<path fill="none" d="M 99,0 C 99 150,0 150,0 300" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 99,0 C 99 150,0 150,0 300" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 99,0 C 99 150,0 150,0 300" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,149,62)">
|
||||
<path fill="none" d="M 99,0 C 99 150,0 150,0 300 L 3.061616997868383e-16,295" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -51,14 +51,14 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,248,62)">
|
||||
<path fill="none" d="M 0,0 C 0 150,0 150,0 300" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 0 150,0 150,0 300" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 0 150,0 150,0 300" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,248,62)">
|
||||
<path fill="none" d="M 0,0 C 0 150,0 150,0 300 L 3.061616997868383e-16,295" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(0,-1,1,0,0,295)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -76,10 +76,10 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,248,62)">
|
||||
<path fill="none" d="M 0,0 C 0 150,99 150,99 300 L 99,295" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(0,-1,1,0,99,295)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -99,16 +99,16 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,248,62)">
|
||||
<path fill="none" d="M 0,0 C 0 150,198 150,198 300 L 198,295" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 0 150,198 150,198 300 L 198,295" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25"/>
|
||||
<g transform="matrix(0,-1,1,0,198,295)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.789248,0.614075,-0.614075,0.789248,350.156982,214.456299)">
|
||||
<g transform="matrix(1,0,0,1,-35.639999,-11.500000)">
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.75" stroke-width="0" width="72.28" height="23"/>
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.1875" stroke-width="0" width="72.28" height="23"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@ -28,8 +28,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,258.157410,97.450142)">
|
||||
<path fill="none" d="M 0,143.74890148423788 C 51.95054126871935 58.278778546538916,81.2870507782252 85.47012293769896,133.23759204694454 0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,143.74890148423788 C 51.95054126871935 58.278778546538916,81.2870507782252 85.47012293769896,133.23759204694454 0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,143.74890148423788 C 51.95054126871935 58.278778546538916,81.2870507782252 85.47012293769896,133.23759204694454 0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,258.157410,97.450142)">
|
||||
<path fill="none" d="M 0,143.74890148423788 C 51.95054126871935 58.278778546538916,81.2870507782252 85.47012293769896,133.23759204694454 0 L 130.6405844178927,4.272651562513218" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -51,14 +51,14 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,224.156891,261.914978)">
|
||||
<path fill="none" d="M 24.417068974828936,0 C 32.629320959388394 99.682294070012,-7.087230239160419 94.92881524992123,1.1250217453990388 194.61110931993323" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 24.417068974828936,0 C 32.629320959388394 99.682294070012,-7.087230239160419 94.92881524992123,1.1250217453990388 194.61110931993323" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 24.417068974828936,0 C 32.629320959388394 99.682294070012,-7.087230239160419 94.92881524992123,1.1250217453990388 194.61110931993323" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,224.156891,261.914978)">
|
||||
<path fill="none" d="M 24.417068974828936,0 C 32.629320959388394 99.682294070012,-7.087230239160419 94.92881524992123,1.1250217453990388 194.61110931993323 L 0.7144912611688587,189.62799134806886" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(-0.082106,-0.996624,0.996624,-0.082106,0.714491,189.627991)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -76,10 +76,10 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,148.609940,68.384872)">
|
||||
<path fill="none" d="M 95.54063356843727,171.1373340380797 C 30.307323461459504 95.31771129062206,65.23331010697777 75.81962274745761,0 0 L 3.261013377485656,3.790223179690029" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(0.652203,0.758045,-0.758045,0.652203,3.261013,3.790223)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -99,16 +99,16 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.891144,255.038147)">
|
||||
<path fill="none" d="M 0,0 C 97.34128043913643 22.99291118600928,80.54747294115907 59.29674059450116,177.8887533802955 82.28965178051044 L 173.02266219766477,81.14023601486096" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 97.34128043913643 22.99291118600928,80.54747294115907 59.29674059450116,177.8887533802955 82.28965178051044 L 173.02266219766477,81.14023601486096" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 C 0 0,0 0,0 0" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25"/>
|
||||
<g transform="matrix(-0.973218,-0.229883,0.229883,-0.973218,173.022659,81.140236)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.811402,0.584489,-0.584489,0.811402,353.081116,298.520935)">
|
||||
<g transform="matrix(1,0,0,1,-35.639999,-11.500000)">
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.75" stroke-width="0" width="72.28" height="23"/>
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.1875" stroke-width="0" width="72.28" height="23"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@ -28,8 +28,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,258.157410,97.450142)">
|
||||
<path fill="none" d="M 0,143.74890148423788 L 133.23759204694454,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,143.74890148423788 L 133.23759204694454,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,143.74890148423788 L 133.23759204694454,0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,258.157410,97.450142)">
|
||||
<path fill="none" d="M 0,143.74890148423788 L 129.83867399804953,3.6670636886882346" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -51,14 +51,14 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,225.281906,261.914978)">
|
||||
<path fill="none" d="M 23.292047229429897,0 L 0,194.61110931993323" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 23.292047229429897,0 L 0,194.61110931993323" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 23.292047229429897,0 L 0,194.61110931993323" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,225.281906,261.914978)">
|
||||
<path fill="none" d="M 23.292047229429897,0 L 0.5941848525113449,189.64654042011463" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(0.118837,-0.992914,0.992914,0.118837,0.594185,189.646545)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -76,10 +76,10 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,148.609940,68.384872)">
|
||||
<path fill="none" d="M 95.54063356843727,171.1373340380797 L 2.437261067895559,4.3657483306897795" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(0.487452,0.873150,-0.873150,0.487452,2.437261,4.365748)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -99,16 +99,16 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.891144,255.038147)">
|
||||
<path fill="none" d="M 0,0 L 173.35077470423403,80.19042584326327" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 173.35077470423403,80.19042584326327" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 0,0" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25"/>
|
||||
<g transform="matrix(-0.907596,-0.419845,0.419845,-0.907596,173.350769,80.190422)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.907601,0.419834,-0.419834,0.907601,353.465912,297.862305)">
|
||||
<g transform="matrix(1,0,0,1,-35.639999,-11.500000)">
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.75" stroke-width="0" width="72.28" height="23"/>
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.1875" stroke-width="0" width="72.28" height="23"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@ -28,8 +28,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,258.157410,97.450142)">
|
||||
<path fill="none" d="M 0,143.74890148423788 Q 44.61641389134286 51.48094244874889,133.23759204694454 0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,143.74890148423788 Q 44.61641389134286 51.48094244874889,133.23759204694454 0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,143.74890148423788 Q 44.61641389134286 51.48094244874889,133.23759204694454 0" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 Q 0 0,0 0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,258.157410,97.450142)">
|
||||
<path fill="none" d="M 0,143.74890148423788 Q 44.61641389134286 51.48094244874889,133.23759204694454 0 L 128.91414490536226,2.5115343545219626" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
@ -51,14 +51,14 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,225.281906,261.914978)">
|
||||
<path fill="none" d="M 23.292047229429897,0 Q 41.43343701362656 100.8706637750347,0 194.61110931993323" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 23.292047229429897,0 Q 41.43343701362656 100.8706637750347,0 194.61110931993323" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 23.292047229429897,0 Q 41.43343701362656 100.8706637750347,0 194.61110931993323" stroke-width="12" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 Q 0 0,0 0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,225.281906,261.914978)">
|
||||
<path fill="none" d="M 23.292047229429897,0 Q 41.43343701362656 100.8706637750347,0 194.61110931993323 L 2.0213596457476473,190.03791512084842" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 Q 0 0,0 0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 Q 0 0,0 0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(0.404272,-0.914639,0.914639,0.404272,2.021360,190.037918)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -76,10 +76,10 @@
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,148.609940,68.384872)">
|
||||
<path fill="none" d="M 95.54063356843727,171.1373340380797 Q 21.575826800079966 100.19223342641318,0 0 L 1.0525920757211575,4.887949459858298" stroke-width="2" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 Q 0 0,0 0" stroke-width="2" stroke="transparent"/>
|
||||
<path fill="none" d="M 0,0 Q 0 0,0 0" stroke-width="4" stroke="transparent"/>
|
||||
<g transform="matrix(0.210518,0.977590,-0.977590,0.210518,1.052592,4.887949)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
@ -99,16 +99,16 @@
|
||||
<g fill="none" marker-start="false" marker-end="true" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="true" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,260.891144,255.038147)">
|
||||
<path fill="none" d="M 0,0 Q 101.53973231363074 13.916953833886282,177.8887533802955 82.28965178051044 L 174.164011820603,78.95404084493964" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 Q 0 0,0 0" stroke-width="3" stroke="transparent" opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 Q 101.53973231363074 13.916953833886282,177.8887533802955 82.28965178051044 L 174.164011820603,78.95404084493964" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 Q 0 0,0 0" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25"/>
|
||||
<g transform="matrix(-0.744948,-0.667122,0.667122,-0.744948,174.164017,78.954041)">
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="1" stroke="rgba(153,173,209,1)" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" stroke-width="3" stroke="transparent" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="rgba(153,173,209,1)" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="1" stroke="rgba(153,173,209,1)" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
<path fill="transparent" d="M 0,4 L 8,0 L 8,8 Z" transform="translate(-4,-4)" fill-opacity="0.25" stroke-width="3" stroke="transparent" stroke-opacity="0.25" width="8" height="8" stroke-dasharray="0,0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.894323,0.447422,-0.447422,0.894323,359.710510,284.358734)">
|
||||
<g transform="matrix(1,0,0,1,-35.639999,-11.500000)">
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.75" stroke-width="0" width="72.28" height="23"/>
|
||||
<path fill="rgba(255,255,255,1)" d="M 0,0 l 72.28,0 l 0,23 l-72.28 0 z" opacity="0.1875" stroke-width="0" width="72.28" height="23"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@ -12,7 +12,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
circle
|
||||
default
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -32,7 +32,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
circle-halo
|
||||
halo
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -49,7 +49,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
circle-badges
|
||||
badges
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -102,7 +102,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
circle-ports
|
||||
ports
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -134,7 +134,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
circle-active
|
||||
active
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -154,7 +154,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="13.5px" font-size="14" text-anchor="middle" font-weight="700">
|
||||
circle-selected
|
||||
selected
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -166,12 +166,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,83.333336,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-20,-20)" cx="20" cy="20" stroke-width="3" stroke="rgba(0,0,0,1)" r="20" stroke-opacity="0.85"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-20,-20)" cx="20" cy="20" stroke-width="3" stroke="rgba(0,0,0,1)" stroke-opacity="0.85" r="20"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
circle-highlight
|
||||
highlight
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -183,12 +183,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,250,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-20,-20)" cx="20" cy="20" stroke-width="0" stroke="rgba(0,0,0,1)" r="20" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-20,-20)" cx="20" cy="20" fill-opacity="0.25" stroke-width="0" stroke="rgba(0,0,0,1)" stroke-opacity="0.25" r="20"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
circle-inactive
|
||||
inactive
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
circle-disabled
|
||||
disabled
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
@ -12,7 +12,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
diamond
|
||||
default
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -32,7 +32,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
diamond-halo
|
||||
halo
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -49,7 +49,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
diamond-badges
|
||||
badges
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -102,7 +102,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
diamond-ports
|
||||
ports
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -134,7 +134,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
diamond-active
|
||||
active
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -154,7 +154,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="13.5px" font-size="14" text-anchor="middle" font-weight="700">
|
||||
diamond-selected
|
||||
selected
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -171,7 +171,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
diamond-highlight
|
||||
highlight
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -183,18 +183,18 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,250,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,-20,-20)">
|
||||
<polygon fill="rgba(23,131,255,1)" points="20,0 40,20 20,40 0,20" stroke-width="0" stroke="rgba(0,0,0,1)" opacity="0.25"/>
|
||||
<polygon fill="rgba(23,131,255,1)" points="20,0 40,20 20,40 0,20" fill-opacity="0.25" stroke-width="0" stroke="rgba(0,0,0,1)" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
diamond-inactive
|
||||
inactive
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" width="20" height="20" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<image fill="rgba(255,255,255,1)" preserveAspectRatio="none" x="0" y="0" href="https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg" transform="translate(-10,-10)" font-size="16" width="20" height="20" opacity="0.25"/>
|
||||
<image fill="rgba(255,255,255,1)" preserveAspectRatio="none" x="0" y="0" href="https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg" transform="translate(-10,-10)" font-size="16" opacity="0.25" width="20" height="20"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
diamond-disabled
|
||||
disabled
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
@ -12,7 +12,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
donut
|
||||
default
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -35,7 +35,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
donut-halo
|
||||
halo
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -58,7 +58,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
donut-badges
|
||||
badges
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -120,7 +120,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
donut-ports
|
||||
ports
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -161,7 +161,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
donut-active
|
||||
active
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -187,7 +187,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="13.5px" font-size="14" text-anchor="middle" font-weight="700">
|
||||
donut-selected
|
||||
selected
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -205,12 +205,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,83.333336,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-20,-20)" cx="20" cy="20" stroke-width="3" stroke="rgba(0,0,0,1)" r="20" stroke-opacity="0.85"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-20,-20)" cx="20" cy="20" stroke-width="3" stroke="rgba(0,0,0,1)" stroke-opacity="0.85" r="20"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
donut-highlight
|
||||
highlight
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -231,12 +231,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,250,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-20,-20)" cx="20" cy="20" stroke-width="0" stroke="rgba(0,0,0,1)" r="20" opacity="0.25"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-20,-20)" cx="20" cy="20" fill-opacity="0.25" stroke-width="0" stroke="rgba(0,0,0,1)" stroke-opacity="0.25" r="20"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
donut-inactive
|
||||
inactive
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -259,7 +259,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
donut-disabled
|
||||
disabled
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
@ -12,7 +12,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,17.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
ellipse
|
||||
default
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -32,7 +32,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,17.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
ellipse-halo
|
||||
halo
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -49,7 +49,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,17.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
ellipse-badges
|
||||
badges
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -102,7 +102,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,17.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
ellipse-ports
|
||||
ports
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -134,7 +134,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,17.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
ellipse-active
|
||||
active
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -154,7 +154,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,17.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="13.5px" font-size="14" text-anchor="middle" font-weight="700">
|
||||
ellipse-selected
|
||||
selected
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -166,12 +166,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,83.333336,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<ellipse fill="rgba(23,131,255,1)" transform="translate(-22.5,-17.5)" cx="22.5" cy="17.5" stroke-width="3" stroke="rgba(0,0,0,1)" rx="22.5" ry="17.5" stroke-opacity="0.85"/>
|
||||
<ellipse fill="rgba(23,131,255,1)" transform="translate(-22.5,-17.5)" cx="22.5" cy="17.5" stroke-width="3" stroke="rgba(0,0,0,1)" stroke-opacity="0.85" rx="22.5" ry="17.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,17.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
ellipse-highlight
|
||||
highlight
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -183,12 +183,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,250,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<ellipse fill="rgba(23,131,255,1)" transform="translate(-22.5,-17.5)" cx="22.5" cy="17.5" stroke-width="0" stroke="rgba(0,0,0,1)" rx="22.5" ry="17.5" opacity="0.25"/>
|
||||
<ellipse fill="rgba(23,131,255,1)" transform="translate(-22.5,-17.5)" cx="22.5" cy="17.5" fill-opacity="0.25" stroke-width="0" stroke="rgba(0,0,0,1)" stroke-opacity="0.25" rx="22.5" ry="17.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,17.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
ellipse-inactive
|
||||
inactive
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,17.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
ellipse-disabled
|
||||
disabled
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
@ -12,7 +12,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,-0.000001,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
hexagon
|
||||
default
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -32,7 +32,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,-0.000001,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
hexagon-halo
|
||||
halo
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -49,7 +49,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,-0.000001,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
hexagon-badges
|
||||
badges
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -102,7 +102,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,-0.000001,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
hexagon-ports
|
||||
ports
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -134,7 +134,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,-0.000001,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
hexagon-active
|
||||
active
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -154,7 +154,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,-0.000001,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="13.5px" font-size="14" text-anchor="middle" font-weight="700">
|
||||
hexagon-selected
|
||||
selected
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -171,7 +171,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,-0.000001,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
hexagon-highlight
|
||||
highlight
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -183,12 +183,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,250,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,-17.320509,-20)">
|
||||
<polygon fill="rgba(23,131,255,1)" points="17.32050807568877,40 34.64101615137754,30 34.64101615137754,10 17.32050807568877,0 0,10 0,30" stroke-width="0" stroke="rgba(0,0,0,1)" opacity="0.25"/>
|
||||
<polygon fill="rgba(23,131,255,1)" points="17.32050807568877,40 34.64101615137754,30 34.64101615137754,10 17.32050807568877,0 0,10 0,30" fill-opacity="0.25" stroke-width="0" stroke="rgba(0,0,0,1)" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-0.000001,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
hexagon-inactive
|
||||
inactive
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,-0.000001,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
hexagon-disabled
|
||||
disabled
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@ -12,7 +12,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
image
|
||||
default
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -27,7 +27,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
image-halo
|
||||
halo
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -39,7 +39,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
image-badges
|
||||
badges
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -87,7 +87,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
image-ports
|
||||
ports
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -114,7 +114,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
image-active
|
||||
active
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -129,43 +129,43 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="13.5px" font-size="14" text-anchor="middle" font-weight="700">
|
||||
image-selected
|
||||
selected
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,83.333336,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<image fill="rgba(23,131,255,1)" preserveAspectRatio="none" x="0" y="0" href="https://gw.alipayobjects.com/mdn/rms_6ae20b/afts/img/A*N4ZMS7gHsUIAAAAAAAAAAABkARQnAQ" transform="translate(-20,-20)" stroke-width="3" stroke="rgba(0,0,0,1)" width="40" height="40" stroke-opacity="0.85"/>
|
||||
<image fill="rgba(23,131,255,1)" preserveAspectRatio="none" x="0" y="0" href="https://gw.alipayobjects.com/mdn/rms_6ae20b/afts/img/A*N4ZMS7gHsUIAAAAAAAAAAABkARQnAQ" transform="translate(-20,-20)" stroke-width="3" stroke="rgba(0,0,0,1)" stroke-opacity="0.85" width="40" height="40"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
image-highlight
|
||||
highlight
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,250,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<image fill="rgba(23,131,255,1)" preserveAspectRatio="none" x="0" y="0" href="https://gw.alipayobjects.com/mdn/rms_6ae20b/afts/img/A*N4ZMS7gHsUIAAAAAAAAAAABkARQnAQ" transform="translate(-20,-20)" stroke-width="0" stroke="rgba(0,0,0,1)" width="40" height="40" opacity="0.25"/>
|
||||
<image fill="rgba(23,131,255,1)" preserveAspectRatio="none" x="0" y="0" href="https://gw.alipayobjects.com/mdn/rms_6ae20b/afts/img/A*N4ZMS7gHsUIAAAAAAAAAAABkARQnAQ" transform="translate(-20,-20)" opacity="0.5" stroke-width="0" stroke="rgba(0,0,0,1)" stroke-opacity="0.25" width="40" height="40"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
image-inactive
|
||||
inactive
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,416.666656,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<image fill="rgba(240,240,240,1)" preserveAspectRatio="none" x="0" y="0" href="https://gw.alipayobjects.com/mdn/rms_6ae20b/afts/img/A*N4ZMS7gHsUIAAAAAAAAAAABkARQnAQ" transform="translate(-20,-20)" stroke-width="0" stroke="rgba(0,0,0,1)" width="40" height="40" opacity="0.2"/>
|
||||
<image fill="rgba(240,240,240,1)" preserveAspectRatio="none" x="0" y="0" href="https://gw.alipayobjects.com/mdn/rms_6ae20b/afts/img/A*N4ZMS7gHsUIAAAAAAAAAAABkARQnAQ" transform="translate(-20,-20)" opacity="0.2" stroke-width="0" stroke="rgba(0,0,0,1)" width="40" height="40"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
image-disabled
|
||||
disabled
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@ -12,7 +12,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
rect
|
||||
default
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -32,7 +32,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
rect-halo
|
||||
halo
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -49,7 +49,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
rect-badges
|
||||
badges
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -102,7 +102,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
rect-ports
|
||||
ports
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -134,7 +134,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
rect-active
|
||||
active
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -154,7 +154,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="13.5px" font-size="14" text-anchor="middle" font-weight="700">
|
||||
rect-selected
|
||||
selected
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -166,12 +166,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,83.333336,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<path fill="rgba(23,131,255,1)" d="M 4,0 l 32,0 a 4,4,0,0,1,4,4 l 0,32 a 4,4,0,0,1,-4,4 l -32,0 a 4,4,0,0,1,-4,-4 l 0,-32 a 4,4,0,0,1,4,-4 z" transform="translate(-20,-20)" stroke-width="3" stroke="rgba(0,0,0,1)" width="40" height="40" stroke-opacity="0.85"/>
|
||||
<path fill="rgba(23,131,255,1)" d="M 4,0 l 32,0 a 4,4,0,0,1,4,4 l 0,32 a 4,4,0,0,1,-4,4 l -32,0 a 4,4,0,0,1,-4,-4 l 0,-32 a 4,4,0,0,1,4,-4 z" transform="translate(-20,-20)" stroke-width="3" stroke="rgba(0,0,0,1)" stroke-opacity="0.85" width="40" height="40"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
rect-highlight
|
||||
highlight
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -183,12 +183,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,250,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<path fill="rgba(23,131,255,1)" d="M 4,0 l 32,0 a 4,4,0,0,1,4,4 l 0,32 a 4,4,0,0,1,-4,4 l -32,0 a 4,4,0,0,1,-4,-4 l 0,-32 a 4,4,0,0,1,4,-4 z" transform="translate(-20,-20)" stroke-width="0" stroke="rgba(0,0,0,1)" width="40" height="40" opacity="0.25"/>
|
||||
<path fill="rgba(23,131,255,1)" d="M 4,0 l 32,0 a 4,4,0,0,1,4,4 l 0,32 a 4,4,0,0,1,-4,4 l -32,0 a 4,4,0,0,1,-4,-4 l 0,-32 a 4,4,0,0,1,4,-4 z" transform="translate(-20,-20)" fill-opacity="0.25" stroke-width="0" stroke="rgba(0,0,0,1)" stroke-opacity="0.25" width="40" height="40"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
rect-inactive
|
||||
inactive
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
rect-disabled
|
||||
disabled
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@ -12,7 +12,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0.000001,16.180340)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
star
|
||||
default
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -32,7 +32,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0.000001,16.180340)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
star-halo
|
||||
halo
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -49,7 +49,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0.000001,16.180340)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
star-badges
|
||||
badges
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -102,7 +102,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0.000001,16.180340)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
star-ports
|
||||
ports
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -134,7 +134,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0.000001,16.180340)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
star-active
|
||||
active
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -154,7 +154,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0.000001,16.180340)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="13.5px" font-size="14" text-anchor="middle" font-weight="700">
|
||||
star-selected
|
||||
selected
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -171,7 +171,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0.000001,16.180340)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
star-highlight
|
||||
highlight
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -183,12 +183,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,250,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,-19.021130,-20)">
|
||||
<polygon fill="rgba(23,131,255,1)" points="19.02113032590307,0 23.429519718096618,13.932372542187894 38.04226065180614,13.819660112501051 26.15405419811672,22.317627457812105 30.776835371752533,36.180339887498945 19.02113032590307,27.5 7.265425280053606,36.180339887498945 11.888206453689417,22.317627457812105 0,13.819660112501051 14.61274093370952,13.932372542187894" stroke-width="0" stroke="rgba(0,0,0,1)" opacity="0.25"/>
|
||||
<polygon fill="rgba(23,131,255,1)" points="19.02113032590307,0 23.429519718096618,13.932372542187894 38.04226065180614,13.819660112501051 26.15405419811672,22.317627457812105 30.776835371752533,36.180339887498945 19.02113032590307,27.5 7.265425280053606,36.180339887498945 11.888206453689417,22.317627457812105 0,13.819660112501051 14.61274093370952,13.932372542187894" fill-opacity="0.25" stroke-width="0" stroke="rgba(0,0,0,1)" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0.000001,16.180340)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
star-inactive
|
||||
inactive
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0.000001,16.180340)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
star-disabled
|
||||
disabled
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@ -12,7 +12,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
triangle
|
||||
default
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -32,7 +32,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
triangle-halo
|
||||
halo
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -49,7 +49,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
triangle-badges
|
||||
badges
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -102,7 +102,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
triangle-ports
|
||||
ports
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -131,7 +131,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
triangle-active
|
||||
active
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -151,7 +151,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="13.5px" font-size="14" text-anchor="middle" font-weight="700">
|
||||
triangle-selected
|
||||
selected
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -168,7 +168,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
triangle-highlight
|
||||
highlight
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -180,12 +180,12 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,250,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,-20,-20)">
|
||||
<polygon fill="rgba(23,131,255,1)" points="0,40 40,40 20,0" stroke-width="0" stroke="rgba(0,0,0,1)" opacity="0.25"/>
|
||||
<polygon fill="rgba(23,131,255,1)" points="0,40 40,40 20,0" fill-opacity="0.25" stroke-width="0" stroke="rgba(0,0,0,1)" stroke-opacity="0.25"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
triangle-inactive
|
||||
inactive
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
@ -195,6 +195,23 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,416.666656,416.666656)">
|
||||
<g transform="matrix(1,0,0,1,-20,-20)">
|
||||
<polygon fill="rgba(240,240,240,1)" points="0,40 40,40 20,0" stroke-width="0" stroke="rgba(0,0,0,1)"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,20)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400" opacity="0.25">
|
||||
disabled
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" width="19.777087639996633" height="19.777087639996633" transform="matrix(1,0,0,1,0,6.666667)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<image fill="rgba(255,255,255,1)" preserveAspectRatio="none" x="0" y="0" href="https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg" transform="translate(-9.888543819998317,-9.888543819998317)" width="19.777087639996633" height="19.777087639996633" font-size="16"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 14 KiB |
@ -7,8 +7,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="4"/>
|
||||
<g transform="matrix(1,0,0,1,60,50)">
|
||||
<path fill="none" d="M 0,0 L 130,0" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 130,0" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 0,0 L 130,0" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 0,0 L 130,0" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,60,50)">
|
||||
<path fill="none" d="M 0,0 L 130,0" stroke-width="2" stroke="rgba(255,192,203,1)"/>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
@ -14,8 +14,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="2" stroke="rgba(255,192,203,1)"/>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
@ -14,8 +14,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="2" stroke="rgba(255,192,203,1)"/>
|
||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
@ -14,8 +14,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="12" stroke="rgba(255,192,203,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="2" stroke="rgba(255,192,203,1)"/>
|
||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,-42.500000,61.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 396.94256565517696,19.08880219654006 A 26.5 26.5 0 0 0 359.95402126198394 2.6475289543980125 L 14.954021261983947,169.647528954398 A 26.5 26.5 0 0 0 17.18292814665839 218.30810698299388 L 459.1829281466584,384.3081069829939 A 26.5 26.5 0 0 0 493.94256565517696 352.08880219654003 L 396.94256565517696,19.08880219654006" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 396.94256565517696,19.08880219654006 A 26.5 26.5 0 0 0 359.95402126198394 2.6475289543980125 L 14.954021261983947,169.647528954398 A 26.5 26.5 0 0 0 17.18292814665839 218.30810698299388 L 459.1829281466584,384.3081069829939 A 26.5 26.5 0 0 0 493.94256565517696 352.08880219654003 L 396.94256565517696,19.08880219654006" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.936155,0.351588,-0.351588,0.936155,234.051193,377.217896)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,173.500000,41.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 200.14450199870674,33.49544536374006 A 46.5 46.5 0 0 0 113.22288066330708 27.13778988361541 L 4.22288066330708,265.1377898836154 A 46.5 46.5 0 0 0 27.026794473737425 326.72610882536935 L 233.02679447373743,421.72610882536935 A 46.5 46.5 0 0 0 297.14450199870674 366.4954453637401 L 200.14450199870674,33.49544536374006" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 200.14450199870674,33.49544536374006 A 46.5 46.5 0 0 0 113.22288066330708 27.13778988361541 L 4.22288066330708,265.1377898836154 A 46.5 46.5 0 0 0 27.026794473737425 326.72610882536935 L 233.02679447373743,421.72610882536935 A 46.5 46.5 0 0 0 297.14450199870674 366.4954453637401 L 200.14450199870674,33.49544536374006" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,341.962921,433.451508)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,158.411469,-44.898296)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 0,393.70228773763694 L 340.7675263611478,550.8523605740886 L 180.3090309386656,0 Z" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 0,393.70228773763694 L 340.7675263611478,550.8523605740886 L 180.3090309386656,0 Z" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,361.365417,442.399261)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,174.186279,40.596821)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 158.2057861053747,1.0270640611749329 C 111.54663627766487 -17.987149599510907,-18.452441484405398 232.44796511903536,2.206892790890379 301.54920172343043 C 22.866227066186156 370.6504383278255,256.1619762047353 465.7215066312547,282.16179175714933 415.63448368754547 C 308.16160730956346 365.5474607438362,204.86493593308452 20.041277721860773,158.2057861053747 1.0270640611749329 C 111.54663627766487 -17.987149599510907,-18.452441484405398 232.44796511903536,2.206892790890379 301.54920172343043" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 158.2057861053747,1.0270640611749329 C 111.54663627766487 -17.987149599510907,-18.452441484405398 232.44796511903536,2.206892790890379 301.54920172343043 C 22.866227066186156 370.6504383278255,256.1619762047353 465.7215066312547,282.16179175714933 415.63448368754547 C 308.16160730956346 365.5474607438362,204.86493593308452 20.041277721860773,158.2057861053747 1.0270640611749329 C 111.54663627766487 -17.987149599510907,-18.452441484405398 232.44796511903536,2.206892790890379 301.54920172343043" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.926058,0.377381,-0.377381,0.926058,323.292725,462.691803)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,173.500000,41.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 200.14450199870674,33.49544536374006 A 46.5 46.5 0 0 0 113.22288066330708 27.13778988361541 L 4.22288066330708,265.1377898836154 A 46.5 46.5 0 0 0 27.026794473737425 326.72610882536935 L 233.02679447373743,421.72610882536935 A 46.5 46.5 0 0 0 297.14450199870674 366.4954453637401 L 200.14450199870674,33.49544536374006" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 200.14450199870674,33.49544536374006 A 46.5 46.5 0 0 0 113.22288066330708 27.13778988361541 L 4.22288066330708,265.1377898836154 A 46.5 46.5 0 0 0 27.026794473737425 326.72610882536935 L 233.02679447373743,421.72610882536935 A 46.5 46.5 0 0 0 297.14450199870674 366.4954453637401 L 200.14450199870674,33.49544536374006" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,341.962921,433.451508)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,323,464.571075)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.416392,-0.909185,0.909185,0.416392,206.328568,268.193542)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,-23)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.279668,0.960097,-0.960097,0.279668,419.744781,269.013947)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,-23)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.997336,0.072948,-0.072948,0.997336,320.791138,74.628540)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,-23)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,163.500000,31.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 219.74547017047166,40.69876694734016 A 56.5 56.5 0 0 0 114.13102704251287 32.9738737295543 L 5.131027042512898,270.97387372955427 A 56.5 56.5 0 0 0 32.8390083390573 345.8069924437284 L 238.83900833905733,440.8069924437284 A 56.5 56.5 0 0 0 316.74547017047166 373.6987669473402 L 219.74547017047166,40.69876694734016" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 219.74547017047166,40.69876694734016 A 56.5 56.5 0 0 0 114.13102704251287 32.9738737295543 L 5.131027042512898,270.97387372955427 A 56.5 56.5 0 0 0 32.8390083390573 345.8069924437284 L 238.83900833905733,440.8069924437284 A 56.5 56.5 0 0 0 316.74547017047166 373.6987669473402 L 219.74547017047166,40.69876694734016" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,341.578003,444.286133)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,-52.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 414.6852657158987,51.69829396232339 A 36.5 36.5 0 0 0 365.5970481532986 3.6465964843595273 L 20.597048153298623,170.64659648435952 A 36.5 36.5 0 0 0 25.98463033648769 238.45249634632245 L 261.98463033648767,309.45249634632245 A 36.5 36.5 0 0 0 305.6852657158987 289.69829396232336 L 414.6852657158987,51.69829396232339" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 414.6852657158987,51.69829396232339 A 36.5 36.5 0 0 0 365.5970481532986 3.6465964843595273 L 20.597048153298623,170.64659648435952 A 36.5 36.5 0 0 0 25.98463033648769 238.45249634632245 L 261.98463033648767,309.45249634632245 A 36.5 36.5 0 0 0 305.6852657158987 289.69829396232336 L 414.6852657158987,51.69829396232339" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.957603,0.288092,-0.288092,0.957603,163.275253,347.050507)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,208.500000,513.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 25.53949010732103,52.98258712335462 L 218.539490107321,59.98258712335462 A 26.5 26.5 0 0 0 220.4605067939205 7.017412764255255 L 27.460506793920473,0.017412764255254842 A 26.5 26.5 0 0 0 25.53949010732103 52.98258712335462" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 25.53949010732103,52.98258712335462 L 218.539490107321,59.98258712335462 A 26.5 26.5 0 0 0 220.4605067939205 7.017412764255255 L 27.460506793920473,0.017412764255254842 A 26.5 26.5 0 0 0 25.53949010732103 52.98258712335462" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.999343,0.036246,-0.036246,0.999343,331.882263,570.031311)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -5,7 +5,7 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,276.217987,445.782013)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 12.926180936190121,49.25964490107327 L 138.20818181029335,123.9776440269701 A 26.5 26.5 0 0 0 165.35581894885047 78.45835363494791 L 40.07381807474724,3.740354509051201 A 26.5 26.5 0 0 0 12.926180936190121 49.25964490107327" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<path fill="rgba(173,216,230,1)" d="M 12.926180936190121,49.25964490107327 L 138.20818181029335,123.9776440269701 A 26.5 26.5 0 0 0 165.35581894885047 78.45835363494791 L 40.07381807474724,3.740354509051201 A 26.5 26.5 0 0 0 12.926180936190121 49.25964490107327" fill-opacity="0.2" stroke="rgba(0,0,255,1)" stroke-opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.858855,0.512220,-0.512220,0.858855,382.988892,551.010498)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -20,8 +20,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="6"/>
|
||||
<g transform="matrix(1,0,0,1,130.366562,110.733124)">
|
||||
<path fill="none" d="M 14.266873708001015,0 L 0,28.53374741600203" stroke-width="12" stroke="rgba(255,0,0,1)" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 14.266873708001015,0 L 0,28.53374741600203" stroke-width="14" stroke="transparent" stroke-dasharray="0,0" pointer-events="none" stroke-opacity="0.25"/>
|
||||
<path fill="none" d="M 14.266873708001015,0 L 0,28.53374741600203" stroke-width="12" stroke="rgba(255,0,0,1)" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
<path fill="none" d="M 14.266873708001015,0 L 0,28.53374741600203" stroke-width="14" stroke="transparent" stroke-opacity="0.25" stroke-dasharray="0,0" pointer-events="none"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,130.366562,110.733124)">
|
||||
<path fill="none" d="M 14.266873708001015,0 L 0,28.53374741600203" stroke-width="4" stroke="rgba(255,0,0,1)"/>
|
||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@ -14,8 +14,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="1" opacity="0.5" stroke="rgba(153,173,209,1)" visibility="hidden"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="3" opacity="0.5" stroke="transparent" visibility="hidden"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.5" visibility="hidden"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="3" stroke="transparent" opacity="0.5" visibility="hidden"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
@ -39,7 +39,7 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,125,150)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" opacity="0.5" stroke="rgba(0,0,0,1)" r="10" visibility="hidden"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" opacity="0.5" r="10" visibility="hidden"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@ -14,8 +14,8 @@
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,131,58)">
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="1" opacity="0.5" stroke="rgba(153,173,209,1)" visibility="visible"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="3" opacity="0.5" stroke="transparent" visibility="visible"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="1" stroke="rgba(153,173,209,1)" opacity="0.5" visibility="visible"/>
|
||||
<path fill="none" d="M 63,0 L 0,84" stroke-width="3" stroke="transparent" opacity="0.5" visibility="visible"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
@ -39,7 +39,7 @@
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,125,150)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" opacity="0.5" stroke="rgba(0,0,0,1)" r="10" visibility="visible"/>
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-10,-10)" cx="10" cy="10" stroke-width="0" stroke="rgba(0,0,0,1)" opacity="0.5" r="10" visibility="visible"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@ -4,19 +4,19 @@ import { createDemoGraph } from '@@/utils';
|
||||
describe('animation element state switch', () => {
|
||||
it('animation element state switch', async () => {
|
||||
const graph = await createDemoGraph(animationElementStateSwitch, { animation: true });
|
||||
await expect(graph).toMatchAnimation(__filename, [0, 200, 1000], () => {
|
||||
await expect(graph).toMatchAnimation(__filename, [0, 200, 1000], async () => {
|
||||
graph.updateData({
|
||||
nodes: [
|
||||
{ id: 'node-1', style: { states: [] } },
|
||||
{ id: 'node-2', style: { states: ['active'] } },
|
||||
{ id: 'node-3', style: { states: ['selected'] } },
|
||||
{ id: 'node-1', states: [] },
|
||||
{ id: 'node-2', states: ['active'] },
|
||||
{ id: 'node-3', states: ['selected'] },
|
||||
],
|
||||
edges: [
|
||||
{ source: 'node-1', target: 'node-2', style: { states: [] } },
|
||||
{ source: 'node-2', target: 'node-3', style: { states: ['active'] } },
|
||||
{ source: 'node-1', target: 'node-2', states: [] },
|
||||
{ source: 'node-2', target: 'node-3', states: ['active'] },
|
||||
],
|
||||
});
|
||||
graph.draw();
|
||||
await graph.draw();
|
||||
});
|
||||
graph.destroy();
|
||||
});
|
||||
|
@ -14,7 +14,7 @@ describe('ElementController', () => {
|
||||
nodes: [
|
||||
{ id: 'node-1', style: { x: 100, y: 100, fill: 'red', stroke: 'pink', lineWidth: 1 }, data: { value: 100 } },
|
||||
{ id: 'node-2', style: { x: 150, y: 100 }, data: { value: 150 } },
|
||||
{ id: 'node-3', combo: 'combo-1', style: { x: 125, y: 150, states: ['selected'] }, data: { value: 150 } },
|
||||
{ id: 'node-3', combo: 'combo-1', states: ['selected'], style: { x: 125, y: 150 }, data: { value: 150 } },
|
||||
],
|
||||
edges: [
|
||||
{ id: 'edge-1', source: 'node-1', target: 'node-2', data: { weight: 250 } },
|
||||
@ -22,7 +22,8 @@ describe('ElementController', () => {
|
||||
id: 'edge-2',
|
||||
source: 'node-2',
|
||||
target: 'node-3',
|
||||
style: { lineWidth: 5, states: ['active', 'selected'] },
|
||||
states: ['active', 'selected'],
|
||||
style: { lineWidth: 5 },
|
||||
data: { weight: 300 },
|
||||
},
|
||||
],
|
||||
@ -132,7 +133,6 @@ describe('ElementController', () => {
|
||||
expect(elementController.getElementComputedStyle('node', node3)).toEqual({
|
||||
...LIGHT_THEME.node?.style,
|
||||
...LIGHT_THEME.node?.state?.selected,
|
||||
states: ['selected'],
|
||||
// from state
|
||||
fill: 'purple',
|
||||
// from palette
|
||||
@ -151,7 +151,6 @@ describe('ElementController', () => {
|
||||
...LIGHT_THEME.edge?.state?.selected,
|
||||
lineWidth: 4,
|
||||
stroke: 'red',
|
||||
states: ['active', 'selected'],
|
||||
});
|
||||
|
||||
const comboStyle = elementController.getElementComputedStyle('combo', combo1);
|
||||
|
@ -134,12 +134,12 @@ describe('event', () => {
|
||||
graph.on(GraphEvent.AFTER_ELEMENT_DESTROY, destroy);
|
||||
|
||||
// state change
|
||||
graph.updateNodeData([{ id: 'node-1', style: { states: ['active'] } }]);
|
||||
graph.updateNodeData([{ id: 'node-1', states: ['active'] }]);
|
||||
await graph.draw();
|
||||
|
||||
expect(update).toHaveBeenCalledTimes(2);
|
||||
expect(update.mock.calls[0][0].data.id).toEqual('node-1');
|
||||
expect(update.mock.calls[0][0].data.style.states).toEqual(['active']);
|
||||
expect(update.mock.calls[0][0].data.states).toEqual(['active']);
|
||||
|
||||
// 同时会更新相邻的边 / It will also update the adjacent edge
|
||||
expect(update.mock.calls[1][0].data.id).toEqual('edge-1');
|
||||
@ -148,7 +148,7 @@ describe('event', () => {
|
||||
graph.setElementState('node-1', []);
|
||||
expect(update).toHaveBeenCalledTimes(2);
|
||||
expect(update.mock.calls[0][0].data.id).toEqual('node-1');
|
||||
expect(update.mock.calls[0][0].data.style.states).toEqual([]);
|
||||
expect(update.mock.calls[0][0].data.states).toEqual([]);
|
||||
expect(update.mock.calls[1][0].data.id).toEqual('edge-1');
|
||||
|
||||
graph.destroy();
|
||||
|
@ -218,7 +218,7 @@ describe('Graph', () => {
|
||||
expect(graph.getElementState('node-1')).toEqual(['selected']);
|
||||
expect(graph.getElementState('node-2')).toEqual([]);
|
||||
expect(graph.getElementDataByState('node', 'selected')).toEqual([
|
||||
{ id: 'node-1', data: {}, style: { states: ['selected'] } },
|
||||
{ id: 'node-1', data: {}, style: {}, states: ['selected'] },
|
||||
]);
|
||||
});
|
||||
|
||||
|
@ -3,7 +3,6 @@ import { AnimatableTask } from '@/src/types';
|
||||
import {
|
||||
createAnimationsProxy,
|
||||
executeAnimatableTasks,
|
||||
executeAnimation,
|
||||
getAnimation,
|
||||
inferDefaultValue,
|
||||
preprocessKeyframes,
|
||||
@ -64,65 +63,6 @@ describe('animation', () => {
|
||||
]);
|
||||
});
|
||||
|
||||
it('executeAnimation', () => {
|
||||
class Shape {
|
||||
children: Shape[] = [];
|
||||
|
||||
appendChild(shape: Shape) {
|
||||
this.children.push(shape);
|
||||
return shape;
|
||||
}
|
||||
|
||||
animate(keyframes: Keyframe[], options: any) {
|
||||
this.record.push({ keyframes, options });
|
||||
return { keyframes, options };
|
||||
}
|
||||
|
||||
record: any = [];
|
||||
}
|
||||
const node: any = new Shape();
|
||||
const key = new Shape();
|
||||
const halo = new Shape();
|
||||
const label = new Shape();
|
||||
|
||||
node.appendChild(key);
|
||||
node.appendChild(halo);
|
||||
node.appendChild(label);
|
||||
|
||||
const keyframes = [
|
||||
{ opacity: 0, x: 100 },
|
||||
{ opacity: 1, y: 100 },
|
||||
];
|
||||
|
||||
const options: KeyframeAnimationOptions = { duration: 1000, fill: 'both' };
|
||||
|
||||
executeAnimation(node, keyframes, options);
|
||||
|
||||
expect(node.record).toEqual([{ keyframes, options }]);
|
||||
|
||||
const subKeyframes = [{ opacity: 0 }, { opacity: 1 }];
|
||||
expect(key.record).toEqual([
|
||||
{
|
||||
keyframes: subKeyframes,
|
||||
options,
|
||||
},
|
||||
]);
|
||||
|
||||
expect(halo.record).toEqual([
|
||||
{
|
||||
keyframes: subKeyframes,
|
||||
options,
|
||||
},
|
||||
]);
|
||||
|
||||
expect(label.record).toEqual([
|
||||
{
|
||||
keyframes: subKeyframes,
|
||||
options,
|
||||
},
|
||||
]);
|
||||
});
|
||||
|
||||
it('inferDefaultValue', () => {
|
||||
expect(inferDefaultValue('x')).toBe(0);
|
||||
expect(inferDefaultValue('y')).toBe(0);
|
||||
|
@ -2,7 +2,7 @@ import type { DisplayObject, IAnimation } from '@antv/g';
|
||||
import { isString, upperFirst } from '@antv/util';
|
||||
import { DEFAULT_ELEMENTS_ANIMATION_OPTIONS } from '../constants';
|
||||
import { getExtension } from '../registry';
|
||||
import { createAnimationsProxy, executeAnimation, inferDefaultValue, preprocessKeyframes } from '../utils/animation';
|
||||
import { createAnimationsProxy, inferDefaultValue, preprocessKeyframes } from '../utils/animation';
|
||||
import type { AnimationExecutor } from './types';
|
||||
|
||||
/**
|
||||
@ -34,9 +34,13 @@ export const executor: AnimationExecutor = (element, animation, commonEffectTimi
|
||||
* @param shapeID - <zh/> 图形 ID | <en/> shape ID
|
||||
* @returns <zh/> 图形关键帧样式 | <en/> keyframe style of the shape
|
||||
*/
|
||||
const getKeyframeStyle = (shapeID?: string) => {
|
||||
const getKeyframeStyle = (
|
||||
shapeID?: string,
|
||||
): { shape: DisplayObject; fromStyle: Record<string, any>; toStyle: Record<string, any> } | null => {
|
||||
if (shapeID) {
|
||||
const shape = element.getElementById(shapeID) as DisplayObject;
|
||||
const shape = element.getShape(shapeID);
|
||||
if (!shape) return null;
|
||||
|
||||
const name = `get${upperFirst(shapeID)}Style` as keyof typeof element;
|
||||
|
||||
const styler: (attrs?: Record<string, unknown>) => Record<string, unknown> =
|
||||
@ -54,14 +58,15 @@ export const executor: AnimationExecutor = (element, animation, commonEffectTimi
|
||||
}
|
||||
};
|
||||
|
||||
let keyResult: IAnimation;
|
||||
let mainResult: IAnimation;
|
||||
|
||||
const results = animations
|
||||
const subResults = animations
|
||||
.map(({ fields, shape: shapeID, states: enabledStates, ...individualEffectTiming }) => {
|
||||
if (enabledStates === undefined || enabledStates?.some((state) => states.includes(state))) {
|
||||
const { shape, fromStyle, toStyle } = getKeyframeStyle(shapeID);
|
||||
const keyframeStyle = getKeyframeStyle(shapeID);
|
||||
if (!keyframeStyle) return null;
|
||||
|
||||
if (!shape) return null;
|
||||
const { shape, fromStyle, toStyle } = keyframeStyle;
|
||||
|
||||
const keyframes: Keyframe[] = [{}, {}];
|
||||
|
||||
@ -70,13 +75,13 @@ export const executor: AnimationExecutor = (element, animation, commonEffectTimi
|
||||
Object.assign(keyframes[1], { [attr]: toStyle[attr] ?? inferDefaultValue(attr) });
|
||||
});
|
||||
|
||||
const result = executeAnimation(shape, preprocessKeyframes(keyframes), {
|
||||
const result = shape.animate(preprocessKeyframes(keyframes), {
|
||||
...DEFAULT_ELEMENTS_ANIMATION_OPTIONS,
|
||||
...commonEffectTiming,
|
||||
...individualEffectTiming,
|
||||
});
|
||||
|
||||
if (shapeID === undefined) keyResult = result!;
|
||||
if (shapeID === undefined) mainResult = result!;
|
||||
|
||||
return result;
|
||||
}
|
||||
@ -84,12 +89,12 @@ export const executor: AnimationExecutor = (element, animation, commonEffectTimi
|
||||
})
|
||||
.filter(Boolean) as IAnimation[];
|
||||
|
||||
const mainResult = keyResult! || results?.[0];
|
||||
const result = mainResult! || subResults?.[0];
|
||||
|
||||
if (!mainResult) return null;
|
||||
if (!result) return null;
|
||||
|
||||
return createAnimationsProxy(
|
||||
mainResult,
|
||||
results.filter((result) => result !== mainResult),
|
||||
result,
|
||||
subResults.filter((result) => result !== result),
|
||||
);
|
||||
};
|
||||
|