636 lines
206 KiB
XML
636 lines
206 KiB
XML
|
|
<?xml version='1.0' standalone='no'?>
|
||
|
|
<!--Written in KDevelop (http://www.kdevelop.org/)-->
|
||
|
|
<svg baseProfile='full' contentScriptType='text/ecmascript' contentStyleType='text/css' height='17097.2594px' onload='init()' preserveAspectRatio='xMidYMid meet' version='1.0' width='516.0px' xmlns='http://www.w3.org/2000/svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:slice='http://www.reprap.org/slice' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify'>
|
||
|
|
<metadata>
|
||
|
|
<slice:layers id='sliceData' controlBoxHeight='720' controlBoxWidth='240' decimalPlacesCarried='4' layerThickness='0.4' margin='20' marginTop='60' maxX='50.4412' maxY='22.1077' maxZ='10.0' minX='-50.4272' minY='-150.3492' minZ='-0.0' perimeterWidth='0.72' procedureName='carve' svgMinWidth='516' template='svg_layer' textHeight='22.5' unitScale='3.7' version='0.1' yAxisPointingUpward='true' />
|
||
|
|
</metadata>
|
||
|
|
<script type='text/ecmascript'>
|
||
|
|
<![CDATA[
|
||
|
|
globalMetadata = document.getElementsByTagNameNS('http://www.reprap.org/slice', 'layers')[0];
|
||
|
|
globalSliceMinX = globalMetadata.getAttribute('minX') * 1;
|
||
|
|
globalSliceMaxX = globalMetadata.getAttribute('maxX') * 1;
|
||
|
|
globalSliceMinY = globalMetadata.getAttribute('minY') * 1;
|
||
|
|
globalSliceMaxY = globalMetadata.getAttribute('maxY') * 1;
|
||
|
|
globalSliceMinZ = globalMetadata.getAttribute('minZ') * 1;
|
||
|
|
globalSliceMaxZ = globalMetadata.getAttribute('maxZ') * 1;
|
||
|
|
|
||
|
|
//Control var's
|
||
|
|
globalLayerIndex = 0; //Number of currently viewed layer (zero index)
|
||
|
|
globalLatitude = 60.0;
|
||
|
|
globalLongitude = 45.0;
|
||
|
|
globalControlBoxHeight = globalMetadata.getAttribute('controlBoxHeight') * 1;
|
||
|
|
globalControlBoxWidth = globalMetadata.getAttribute('controlBoxWidth') * 1;
|
||
|
|
globalSliding = false;
|
||
|
|
globalObserving = false
|
||
|
|
|
||
|
|
//Display var's
|
||
|
|
globalMargin = globalMetadata.getAttribute('margin') * 1;
|
||
|
|
globalMarginTop = globalMetadata.getAttribute('marginTop') * 1;
|
||
|
|
globalDimensionX = globalSliceMaxX - globalSliceMinX;
|
||
|
|
globalDimensionY = globalSliceMaxY - globalSliceMinY;
|
||
|
|
globalDimensionZ = globalSliceMaxZ - globalSliceMinZ;
|
||
|
|
magnitudeXYSquared = globalDimensionX * globalDimensionX + globalDimensionY * globalDimensionY;
|
||
|
|
globalDimensionMagnitude = Math.sqrt(magnitudeXYSquared + globalDimensionZ * globalDimensionZ);
|
||
|
|
globalGlobeTravelRadian = 0.0;
|
||
|
|
globalGlobeInnerObserverRadius = 0.0;
|
||
|
|
globalTextHeight = globalMetadata.getAttribute('textHeight') * 1.0;
|
||
|
|
globalUnitScale = globalMetadata.getAttribute('unitScale') * 1.0;
|
||
|
|
globalXOffset = globalControlBoxWidth + globalMargin + globalMargin;
|
||
|
|
globalYOffset = globalMargin + globalMarginTop;
|
||
|
|
globalZoomScale = 1.0; //Default 1:1 may need smaller scale for large objects
|
||
|
|
globalScale = globalUnitScale * globalZoomScale;
|
||
|
|
|
||
|
|
//Globals to be set in init
|
||
|
|
globalLayers = [];
|
||
|
|
globalSlider = 0;
|
||
|
|
globalThumb = 0;
|
||
|
|
globalThumbRadius = 0.0;
|
||
|
|
globalSliderWidthMinusDiameter = 0.0;
|
||
|
|
|
||
|
|
|
||
|
|
function changeScale(newScale) {
|
||
|
|
globalZoomScale = newScale;
|
||
|
|
globalScale = globalUnitScale * globalZoomScale;
|
||
|
|
if (globalZoomScale >=1) { //dont scale line thickness for large display scale
|
||
|
|
document.getElementById('layerData').setAttributeNS(null, 'stroke-width', 2.0 / (globalScale));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function changeScaleIso(newScale) {
|
||
|
|
changeScale(newScale);
|
||
|
|
viewIso();
|
||
|
|
}
|
||
|
|
|
||
|
|
function changeScaleLayer(newScale) {
|
||
|
|
changeScale(newScale);
|
||
|
|
viewLayer();
|
||
|
|
}
|
||
|
|
|
||
|
|
function changeScaleScroll(newScale) {
|
||
|
|
changeScale(newScale);
|
||
|
|
viewScroll();
|
||
|
|
}
|
||
|
|
|
||
|
|
function displayIso(latitude, longitude) {
|
||
|
|
latitude = Math.max(0.0, latitude);
|
||
|
|
latitude = Math.min(89.0, latitude);
|
||
|
|
globalLatitude = Math.round(latitude);
|
||
|
|
globalLongitude = Math.round((longitude + 540.0) % 360.0) - 180.0;
|
||
|
|
latitudeRadians = getRadians(globalLatitude);
|
||
|
|
longitudeWiddershinsRadians = getRadians(90.0 - globalLongitude);
|
||
|
|
unitX = Math.cos(longitudeWiddershinsRadians);
|
||
|
|
unitY = Math.sin(longitudeWiddershinsRadians);
|
||
|
|
latitudeOverLayers = globalDimensionZ / globalLayers.length;
|
||
|
|
globalOneOverUnitScaleString = (1.0 / globalUnitScale).toString();
|
||
|
|
yScale = -1.0 * globalScale * Math.cos(latitudeRadians);
|
||
|
|
scaleRotateCenterString = ' scale(' + globalScale + ', ' + yScale + ')';
|
||
|
|
scaleRotateCenterString += ' rotate(' + (-1.0 * globalLongitude).toString() + ')';
|
||
|
|
centerX = (-0.5 * globalDimensionX - globalSliceMinX).toString();
|
||
|
|
centerY = (-0.5 * globalDimensionY - globalSliceMinY).toString();
|
||
|
|
scaleRotateCenterString += ' translate(' + centerX + ', ' + centerY + ')';
|
||
|
|
x = 0.5 * globalDimensionMagnitude * globalScale + globalXOffset;
|
||
|
|
halfLengthMinusOne = 0.5 * (globalLayers.length - 1);
|
||
|
|
for (var i in globalLayers) {
|
||
|
|
latitudeZSin = Math.sin(latitudeRadians) * (i - halfLengthMinusOne) * latitudeOverLayers
|
||
|
|
y = globalScale * (0.5 * globalDimensionMagnitude - latitudeZSin) + globalYOffset;
|
||
|
|
// y = globalDimensionY * globalScale + globalYOffset - i * unitY * latitudeOverLayers;
|
||
|
|
transformString = ' translate(' + x + ', ' + y + ')';
|
||
|
|
globalLayers[i].setAttributeNS(null, 'transform', transformString + scaleRotateCenterString);
|
||
|
|
}
|
||
|
|
setText('latitudeIso', 'Latitude: ' + globalLatitude.toString() + '°');
|
||
|
|
setText('longitudeIso', 'Longitude: ' + globalLongitude.toString() + '°');
|
||
|
|
globeMoveableRadius = globalGlobeTravelRadian * latitudeRadians + globalGlobeInnerObserverRadius;
|
||
|
|
globalObserver.setAttribute('cx', globalGlobeCenterX + unitX * globeMoveableRadius);
|
||
|
|
globalObserver.setAttribute('cy', globalGlobeCenterY - unitY * globeMoveableRadius);
|
||
|
|
}
|
||
|
|
|
||
|
|
function displayIsoByLatitude(latitude) {
|
||
|
|
displayIso(latitude, globalLongitude);
|
||
|
|
}
|
||
|
|
|
||
|
|
function displayIsoByLongitude(longitude) {
|
||
|
|
displayIso(globalLatitude, longitude);
|
||
|
|
}
|
||
|
|
|
||
|
|
function displayLayer(layerNum) {
|
||
|
|
if (globalLayers.length <= 1) {
|
||
|
|
document.getElementById('maxIndexLayer').setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
document.getElementById('minIndexLayer').setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
globalSlider.setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
globalThumb.setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
}
|
||
|
|
if (layerNum <= 0) {
|
||
|
|
document.getElementById('decreaseLayerIndex').setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
document.getElementById('decreaseLayerIndex').setAttributeNS(null, 'visibility', 'visible');
|
||
|
|
}
|
||
|
|
if (layerNum >= globalLayers.length - 1) {
|
||
|
|
document.getElementById('increaseLayerIndex').setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
document.getElementById('increaseLayerIndex').setAttributeNS(null, 'visibility', 'visible');
|
||
|
|
}
|
||
|
|
if (layerNum < 0 || layerNum >= globalLayers.length) {
|
||
|
|
return
|
||
|
|
}
|
||
|
|
globalLayers[globalLayerIndex].setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
currentLayerElement = globalLayers[layerNum]
|
||
|
|
currentLayerElement.setAttributeNS(null, 'visibility', 'visible');
|
||
|
|
globalLayerIndex = layerNum;
|
||
|
|
setText('currentIndexLayer', 'Layer: ' + globalLayerIndex.toString() + ', ' + currentLayerElement.getAttribute('id'));
|
||
|
|
//Slider
|
||
|
|
if (!globalSliding) {
|
||
|
|
placeThumb(globalSliderWidthMinusDiameter / (globalLayers.length - 1) * globalLayerIndex + globalThumbRadius);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function getDegrees(radians) {
|
||
|
|
return radians / Math.PI * 180.0;
|
||
|
|
}
|
||
|
|
|
||
|
|
function getRadians(degrees) {
|
||
|
|
return degrees / 180.0 * Math.PI;
|
||
|
|
}
|
||
|
|
|
||
|
|
function getScaleTransformString(scale) {
|
||
|
|
scaleTransformString = 'scale(' + scale + ' ' + (scale * - 1)
|
||
|
|
return scaleTransformString + ') translate(' + (globalSliceMinX * - 1) + ' ' + (globalSliceMinY * - 1) + ')';
|
||
|
|
}
|
||
|
|
|
||
|
|
function getWidth() {
|
||
|
|
return (globalDimensionX * globalScale) + globalXOffset
|
||
|
|
}
|
||
|
|
|
||
|
|
function hideElements(elementNames) {
|
||
|
|
for (var elementNameIndex in elementNames) {
|
||
|
|
document.getElementById(elementNames[elementNameIndex]).setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function init() {
|
||
|
|
//Find only layer groups
|
||
|
|
globe = document.getElementById('globe');
|
||
|
|
globalGlobeCenterX = globe.getAttribute('cx') * 1;
|
||
|
|
globalGlobeCenterXWindow = globalGlobeCenterX + globalMargin;
|
||
|
|
globalGlobeCenterY = globe.getAttribute('cy') * 1;
|
||
|
|
globalGlobeCenterYWindow = globalGlobeCenterX + globalMarginTop;
|
||
|
|
globalObserver = document.getElementById('observer');
|
||
|
|
globeRadius = globe.getAttribute('r') * 1.0;
|
||
|
|
observerRadius = globalObserver.getAttribute('r') * 1.0;
|
||
|
|
globalGlobeInnerObserverRadius = document.getElementById('cover').getAttribute('r') * 1.0 + observerRadius;
|
||
|
|
globalGlobeTravelRadian = getDegrees(globeRadius - globalGlobeInnerObserverRadius - observerRadius) / 89.0;
|
||
|
|
globalSlider = document.getElementById('slider');
|
||
|
|
globalSliderX = globalSlider.getAttribute('x') * 1;
|
||
|
|
globalSliderXWindow = globalSliderX + globalMargin
|
||
|
|
globalThumb = document.getElementById('thumb');
|
||
|
|
globalThumbRadius = globalThumb.getAttribute('r') * 1;
|
||
|
|
globalSliderWidthMinusRadius = globalSlider.getAttribute('width') * 1 - globalThumbRadius;
|
||
|
|
globalSliderWidthMinusDiameter = globalSliderWidthMinusRadius - globalThumbRadius;
|
||
|
|
var allGroups = document.getElementsByTagName('g');
|
||
|
|
for (var i = 0; i < allGroups.length; i++) {
|
||
|
|
if (allGroups[i].id.indexOf('z:') == 0) {
|
||
|
|
globalLayers.push(allGroups[i]);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
//Slider
|
||
|
|
layerControlBox = document.getElementById('layerControlBox');
|
||
|
|
layerControlBox.addEventListener('mouseup', sliderUp, false);
|
||
|
|
layerControlBox.addEventListener('mousemove', sliderMove, false);
|
||
|
|
globalSlider.addEventListener('mousedown', sliderDownMove, false);
|
||
|
|
globalThumb.addEventListener('mousedown', sliderDownMove, false);
|
||
|
|
//Observer
|
||
|
|
isoControlBox = document.getElementById('isoControlBox');
|
||
|
|
isoControlBox.addEventListener('mouseup', observerUp, false);
|
||
|
|
isoControlBox.addEventListener('mousemove', observerMove, false);
|
||
|
|
globe.addEventListener('mousedown', observerDownMove, false);
|
||
|
|
globalObserver.addEventListener('mousedown', observerDownMove, false);
|
||
|
|
|
||
|
|
//Control box data
|
||
|
|
setText('maxIndexLayer', globalLayers.length - 1);
|
||
|
|
changeScaleLayer(globalZoomScale);
|
||
|
|
}
|
||
|
|
|
||
|
|
function observerDown(event) {
|
||
|
|
globalObserving = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
function observerDownMove(event) {
|
||
|
|
globalObserving = true;
|
||
|
|
observerMove(event);
|
||
|
|
}
|
||
|
|
|
||
|
|
function observerMove(event) {
|
||
|
|
if (!globalObserving) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
observerX = event.clientX - globalGlobeCenterXWindow + window.pageXOffset;
|
||
|
|
observerY = event.clientY - globalGlobeCenterYWindow + window.pageYOffset;
|
||
|
|
distanceFromCenter = Math.sqrt(observerX * observerX + observerY * observerY);
|
||
|
|
latitudeRadians = (distanceFromCenter - globalGlobeInnerObserverRadius) / globalGlobeTravelRadian;
|
||
|
|
longitudeRadians = Math.atan2(observerX, -observerY);
|
||
|
|
displayIso(getDegrees(latitudeRadians), getDegrees(longitudeRadians));
|
||
|
|
}
|
||
|
|
|
||
|
|
function observerUp(event) {
|
||
|
|
globalObserving = false;
|
||
|
|
}
|
||
|
|
|
||
|
|
function placeThumb(value) {
|
||
|
|
if (globalLayers.length > 1) {
|
||
|
|
globalThumb.setAttribute('cx', globalSliderX + value);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function setScaleText(scaleID) {
|
||
|
|
setText(scaleID, ': ' + globalZoomScale);
|
||
|
|
}
|
||
|
|
|
||
|
|
function setSVG(width, height) {
|
||
|
|
rootSVG = document.getElementsByTagName('svg')[0];
|
||
|
|
svgMinWidth = globalMetadata.getAttribute('svgMinWidth') * 1;
|
||
|
|
height = Math.max(globalControlBoxHeight + globalMargin + globalMarginTop, height);
|
||
|
|
width = Math.max(svgMinWidth, width);
|
||
|
|
rootSVG.setAttributeNS(null, 'width', width + 'px')
|
||
|
|
rootSVG.setAttributeNS(null, 'height', height + 'px')
|
||
|
|
}
|
||
|
|
|
||
|
|
function setText(id, str) {
|
||
|
|
e = document.getElementById(id)
|
||
|
|
if (e != null)
|
||
|
|
e.firstChild.nodeValue = str;
|
||
|
|
}
|
||
|
|
|
||
|
|
function showElements(elementNames) {
|
||
|
|
for (var elementNameIndex in elementNames) {
|
||
|
|
document.getElementById(elementNames[elementNameIndex]).setAttributeNS(null, 'visibility', 'visible');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function sliderDown(event) {
|
||
|
|
globalSliding = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
function sliderDownMove(event) {
|
||
|
|
globalSliding = true;
|
||
|
|
sliderMove(event);
|
||
|
|
}
|
||
|
|
|
||
|
|
function sliderMove(event) {
|
||
|
|
if (!globalSliding) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
value = event.clientX - globalSliderXWindow + window.pageXOffset;
|
||
|
|
if (value >= globalThumbRadius && value <= globalSliderWidthMinusRadius) {
|
||
|
|
placeThumb(value);
|
||
|
|
zoneWidth = globalSliderWidthMinusDiameter / (globalLayers.length);
|
||
|
|
newLayer = Math.round((value - globalThumbRadius - 0.5 * zoneWidth) / zoneWidth)
|
||
|
|
if (newLayer != globalLayerIndex) {
|
||
|
|
displayLayer(newLayer)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function sliderUp(event) {
|
||
|
|
globalSliding = false;
|
||
|
|
}
|
||
|
|
|
||
|
|
function viewIso() {
|
||
|
|
height = (globalDimensionMagnitude * globalScale) + globalYOffset;
|
||
|
|
setSVG((globalDimensionMagnitude * globalScale) + globalXOffset, height);
|
||
|
|
for (var i in globalLayers) {
|
||
|
|
// globalLayers[i].setAttributeNS(null, 'transform', 'translate(' + globalMargin + ' ' + height + ')');
|
||
|
|
globalLayers[i].setAttributeNS(null, 'visibility', 'visible');
|
||
|
|
globalLayers[i].getElementsByTagName('text')[0].setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
pathElements = globalLayers[i].getElementsByTagName('path');
|
||
|
|
for (var pathElementIndex = 0; pathElementIndex < pathElements.length; pathElementIndex++) {
|
||
|
|
pathElements[pathElementIndex].setAttributeNS(null, 'transform', '');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
//show control box
|
||
|
|
hideElements(['decreaseLayerIndex', 'increaseLayerIndex', 'isoViewButton', 'layerControlBox', 'layerViewLabel', 'scrollControlBox', 'scrollViewLabel']);
|
||
|
|
showElements(['isoControlBox', 'isoViewLabel', 'layerViewButton', 'scrollViewButton']);
|
||
|
|
displayIso(globalLatitude, globalLongitude);
|
||
|
|
setScaleText('scaleIso');
|
||
|
|
}
|
||
|
|
|
||
|
|
function viewLayer() {
|
||
|
|
//Set svg size and view port
|
||
|
|
height = (globalDimensionY * globalScale) + globalYOffset;
|
||
|
|
setSVG(getWidth(), height);
|
||
|
|
//move and hide all layers
|
||
|
|
for (var i in globalLayers) {
|
||
|
|
globalLayers[i].setAttributeNS(null, 'transform', 'translate(' + globalXOffset + ' ' + height + ')');
|
||
|
|
globalLayers[i].setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
globalLayers[i].getElementsByTagName('text')[0].setAttributeNS(null, 'visibility', 'hidden');
|
||
|
|
transform = getScaleTransformString(globalScale);
|
||
|
|
pathElements = globalLayers[i].getElementsByTagName('path');
|
||
|
|
for (var pathElementIndex = 0; pathElementIndex < pathElements.length; pathElementIndex++) {
|
||
|
|
pathElements[pathElementIndex].setAttributeNS(null, 'transform', transform);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
//show control box
|
||
|
|
hideElements(['isoControlBox', 'isoViewLabel', 'layerViewButton', 'scrollControlBox', 'scrollViewLabel'])
|
||
|
|
showElements(['isoViewButton', 'layerControlBox', 'layerViewLabel', 'scrollViewButton'])
|
||
|
|
|
||
|
|
//show current layer
|
||
|
|
displayLayer(globalLayerIndex);
|
||
|
|
setScaleText('scaleLayer');
|
||
|
|
}
|
||
|
|
|
||
|
|
function viewScroll() {
|
||
|
|
//Set svg size and view port
|
||
|
|
yDimensionScale = globalDimensionY * globalScale
|
||
|
|
singleHeight = (globalMargin + yDimensionScale + globalTextHeight)
|
||
|
|
height = globalLayers.length * singleHeight + globalMargin + globalMargin + globalYOffset;
|
||
|
|
setSVG(getWidth(), height);
|
||
|
|
|
||
|
|
//move and show all layers
|
||
|
|
for (var i in globalLayers) {
|
||
|
|
x = globalXOffset;
|
||
|
|
y = i * singleHeight + yDimensionScale + globalYOffset;
|
||
|
|
transform = getScaleTransformString(globalScale);
|
||
|
|
globalLayers[i].setAttributeNS(null, 'transform', 'translate(' + x + ', ' + y + ')');
|
||
|
|
pathElements = globalLayers[i].getElementsByTagName('path');
|
||
|
|
for (var pathElementIndex = 0; pathElementIndex < pathElements.length; pathElementIndex++) {
|
||
|
|
pathElements[pathElementIndex].setAttributeNS(null, 'transform', transform);
|
||
|
|
}
|
||
|
|
globalLayers[i].setAttributeNS(null, 'visibility', 'visible');
|
||
|
|
globalLayers[i].getElementsByTagName('text')[0].setAttributeNS(null, 'visibility', 'visible');
|
||
|
|
}
|
||
|
|
|
||
|
|
//show control box
|
||
|
|
hideElements(['isoControlBox', 'isoViewLabel', 'layerControlBox', 'layerViewLabel', 'scrollViewButton'])
|
||
|
|
showElements(['isoViewButton', 'layerViewButton', 'scrollControlBox', 'scrollViewLabel'])
|
||
|
|
setScaleText('scaleScroll');
|
||
|
|
}
|
||
|
|
]]>
|
||
|
|
</script>
|
||
|
|
<title >spur_parabolic.xml - Slice Layers</title>
|
||
|
|
<!--Begin Layer Data -->
|
||
|
|
<g id='layerData' fill='#556B2F' fill-rule='evenodd' font-family='Arial' font-size='15px' font-weight='bold' inkscape:groupmode='layer' inkscape:label='Slice Layers' stroke='#00F' stroke-width='0.54px'>
|
||
|
|
<!--id='sliceElementTemplate' must be there or else the slice template will not be found-->
|
||
|
|
<g id='z:0.2' inkscape:groupmode='layer' inkscape:label='Layer 0, z:0.2' transform='translate(280.0, 718.0904)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate0.2' fill='#000' stroke='none' y='15' >Layer 0, z:0.2</text>
|
||
|
|
<path d='M 3.4265 21.8577 L -3.8455 21.7879 L -4.0864 21.6175 L -4.5059 20.2296 L -4.6776 18.8102 L -4.3018 16.3959 L -4.9471 15.1155 L -8.9868 13.122 L -10.3957 13.3888 L -12.0832 15.1559 L -13.3142 15.8831 L -14.6708 16.3946 L -14.9526 16.307 L -19.4321 10.578 L -19.4491 10.2834 L -18.6255 9.0901 L -18.0761 8.479 L -17.3009 7.837 L -15.501 6.8594 L -14.9022 5.5565 L -15.8624 1.1553 L -16.9494 0.2201 L -18.993 0.0811 L -19.9651 -0.1797 L -21.1528 -0.7359 L -21.9649 -1.2483 L -22.0721 -1.5232 L -20.3859 -8.5974 L -20.1662 -8.7943 L -18.7198 -8.8944 L -17.8994 -8.8459 L -16.9141 -8.6401 L -15.0276 -7.8423 L -13.6357 -8.1866 L -10.7933 -11.6815 L -10.7399 -13.1144 L -11.9054 -14.7987 L -12.3075 -15.7214 L -12.6132 -16.9967 L -12.7189 -17.9511 L -12.5709 -18.2064 L -5.9887 -21.2987 L -5.6977 -21.2497 L -4.7176 -20.1813 L -4.2441 -19.5096 L -3.7907 -18.611 L -3.2382 -16.6387 L -2.1012 -15.765 L 2.4034 -15.7218 L 3.557 -16.5734 L 4.1473 -18.5348 L 4.6179 -19.4245 L 5.4244 -20.4587 L 6.1046 -21.1364 L 6.3965 -21.1798 L 12.9181 -17.9617 L 13.0612 -17.7036 L 12.837 -16.2712 L 12.3758 -14.9179 L 10.9897 -12.9058 L 11.0156 -11.4721 L 13.7903 -7.9233 L 15.1754 -7.5524 L 17.0769 -8.3138 L 18.0659 -8.5006 L 18.8871 -8.5334 L 20.3313 -8.4056 L 20.5472 -8.2044 L 22.0973 -1.0992 L 21.9848 -0.8264 L 20.7251 -0.1086 L 19.9649 0.2036 L 18.9879 0.4457 L 16.9421 0.5455 L 15.8373 1.4596 L 14.7928 5.8416 L 15.3664 7.1558 L 17.1473 8.1677 L 17.91 8.8245 L 18.7387 9.8409 L 19.2481 10.6548 L 19.2254 10.9491 L 14.6368 16.5911 L 14.3534 16.6732 L 13.0068 16.1358 L 12.2887 15.7361 L 11.4903 15.1233 L 10.1367 13.5859 L 8.7333 13.2922 L 4.656 15.2077 L 3.9862 16.4755 L 4.3054 18.4987 L 4.2674 19.5045 L 4.1167 20.3124 L 3.6707 21.6919 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 50.435 -99.216 L 49.7859 -91.8966 L 49.5966 -91.6717 L 47.9537 -91.2946 L 46.1437 -91.0786 L 45.0787 -91.086 L 43.3904 -89.8867 L 42.3265 -86.0906 L 43.1457 -84.1885 L 44.0594 -83.6414 L 45.4936 -82.5162 L 46.7011 -81.3402 L 46.746 -81.0497 L 43.4967 -74.4591 L 43.2389 -74.3178 L 41.5708 -74.5595 L 39.4863 -75.1231 L 38.8145 -75.4036 L 36.807 -74.8952 L 34.4436 -71.7398 L 34.5204 -69.6702 L 35.1748 -68.8299 L 36.1056 -67.2627 L 36.8068 -65.7299 L 36.7437 -65.4428 L 31.333 -60.471 L 31.0416 -60.4323 L 29.1315 -61.5476 L 28.0903 -62.3202 L 27.3082 -63.0431 L 25.2526 -63.2943 L 21.909 -61.2057 L 21.2329 -59.2481 L 21.4558 -58.5551 L 21.7771 -56.9537 L 21.9415 -54.7479 L 21.779 -54.503 L 14.9376 -51.8215 L 14.6519 -51.8907 L 13.0057 -54.0186 L 12.1138 -55.6739 L 10.2877 -56.6506 L 6.4154 -55.9109 L 5.0778 -54.3298 L 4.9953 -53.268 L 4.6274 -51.4827 L 4.1129 -49.8775 L 3.8729 -49.7078 L -3.4752 -49.6788 L -3.7166 -49.8466 L -4.3768 -51.9576 L -4.6258 -53.2299 L -4.7166 -54.2911 L -6.0666 -55.8616 L -9.9447 -56.5707 L -11.763 -55.5795 L -12.0652 -54.9172 L -12.9066 -53.5172 L -14.2711 -51.7764 L -14.5563 -51.7049 L -21.4186 -54.3322 L -21.5831 -54.5759 L -21.5434 -55.6867 L -21.2893 -57.6828 L -20.9101 -59.0816 L -21.6016 -61.0337 L -24.9616 -63.0958 L -27.0152 -62.8284 L -28.0907 -61.857 L -28.8266 -61.3185 L -30.7278 -60.1882 L -31.0196 -60.2245 L -36.4694 -65.1534 L -36.5347 -65.44 L -35.3637 -67.8621 L -34.2795 -69.3983 L -34.2191 -71.4684 L -36.6074 -74.605 L -38.6189 -75.0975 L -40.3882 -74.4612 L -43.0345 -73.9767 L -43.2934 -74.116 L -46.5947 -80.6807 L -46.5521 -80.9716 L -45.7745 -81.7657 L -44.2418 -83.0697 L -43.0193 -83.848 L -42.2152 -85.7564 L -43.3091 -
|
||
|
|
</g>
|
||
|
|
<g id='z:0.6' inkscape:groupmode='layer' inkscape:label='Layer 1, z:0.6' transform='translate(280.0, 1398.6807)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate0.6' fill='#000' stroke='none' y='15' >Layer 1, z:0.6</text>
|
||
|
|
<path d='M 3.0238 21.9172 L -4.2458 21.7136 L -4.4835 21.5388 L -4.8774 20.1434 L -5.0194 18.9996 L -4.9804 18.2057 L -4.6027 16.3141 L -5.2244 15.022 L -9.2268 12.9546 L -10.6404 13.1954 L -12.1816 14.7933 L -13.2094 15.447 L -14.0575 15.8232 L -14.9701 16.122 L -15.2502 16.0292 L -19.6236 10.2187 L -19.6351 9.9239 L -19.0955 9.1296 L -18.4993 8.4187 L -17.9841 7.9218 L -17.339 7.4572 L -15.6246 6.5731 L -15.0021 5.2814 L -15.8811 0.8632 L -16.9507 -0.0918 L -19.1609 -0.3005 L -19.9586 -0.547 L -20.7065 -0.8876 L -21.9384 -1.6522 L -22.0405 -1.929 L -20.2244 -8.971 L -20.0011 -9.1639 L -18.5531 -9.2374 L -17.4064 -9.1213 L -16.641 -8.9067 L -14.8809 -8.1176 L -13.4828 -8.4362 L -10.5766 -11.8782 L -10.4969 -13.3098 L -11.7117 -15.168 L -12.1204 -16.3155 L -12.2984 -17.226 L -12.3866 -18.1822 L -12.2339 -18.4347 L -5.5959 -21.4054 L -5.3058 -21.3511 L -4.6515 -20.6483 L -4.0912 -19.9088 L -3.5077 -18.8395 L -2.9315 -16.6956 L -1.8108 -15.8012 L 2.6923 -15.675 L 3.8614 -16.5053 L 4.4456 -18.3436 L 4.7955 -19.0574 L 5.473 -19.9898 L 6.4925 -21.0207 L 6.7852 -21.0587 L 13.2465 -17.7211 L 13.3848 -17.4604 L 13.1343 -16.0324 L 12.8899 -15.2478 L 12.5423 -14.4887 L 11.2253 -12.7015 L 11.2249 -11.2676 L 13.9339 -7.6683 L 15.3119 -7.272 L 17.1134 -7.9614 L 17.8896 -8.1328 L 18.6035 -8.186 L 19.5308 -8.1569 L 20.4826 -8.0301 L 20.6948 -7.825 L 22.114 -0.6924 L 21.9964 -0.4217 L 21.1656 0.0598 L 20.32 0.4415 L 19.1477 0.7724 L 16.9293 0.8571 L 15.8079 1.7507 L 14.6829 6.1128 L 15.2323 7.4373 L 16.8945 8.416 L 17.5125 8.9159 L 18.2708 9.7839 L 19.0489 11.0073 L 19.0209 11.301 L 14.3292 16.8577 L 14.0443 16.9346 L 12.7078 16.3725 L 11.9972 15.9597 L 11.3345 15.4519 L 9.8851 13.7702 L 8.4873 13.4507 L 4.3755 15.2909 L 3.6824 16.5462 L 3.9708 18.7474 L 3.9079 19.5799 L 3.7423 20.3849 L 3.271 21.756 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 4.2538 -49.7385 L -3.0938 -49.6538 L -3.3365 -49.8198 L -3.8757 -51.4168 L -4.2713 -53.1962 L -4.3702 -54.2566 L -5.732 -55.8168 L -9.6154 -56.4965 L -11.4262 -55.4916 L -11.8794 -54.5278 L -13.1996 -52.5283 L -13.9054 -51.6696 L -14.19 -51.5959 L -21.072 -54.1712 L -21.2383 -54.4136 L -21.1643 -56.0976 L -20.8903 -57.8997 L -20.5995 -58.9243 L -21.3058 -60.8711 L -24.6813 -62.9077 L -26.7329 -62.6247 L -28.1434 -61.3815 L -30.4253 -59.9565 L -30.7173 -59.9906 L -36.2044 -64.878 L -36.2719 -65.1641 L -35.5945 -66.7076 L -34.8967 -67.9656 L -34.0467 -69.1394 L -34.002 -71.2099 L -36.4139 -74.3284 L -38.4292 -74.8056 L -40.1936 -74.1559 L -42.8362 -73.6514 L -43.0961 -73.7887 L -46.4471 -80.3282 L -46.4067 -80.6194 L -45.2175 -81.814 L -44.1124 -82.735 L -42.8958 -83.5225 L -42.1061 -85.437 L -43.2287 -89.2161 L -44.9354 -90.3892 L -46.8154 -90.4207 L -49.4618 -90.9049 L -49.6546 -91.1268 L -50.4169 -98.4353 L -50.274 -98.6922 L -48.7336 -99.3765 L -47.3704 -99.8361 L -45.9515 -100.1309 L -44.5236 -101.6309 L -44.2051 -105.5603 L -45.3728 -107.2707 L -46.0619 -107.5053 L -47.5389 -108.2028 L -49.4072 -109.3867 L -49.5069 -109.6633 L -47.5776 -116.7536 L -47.3515 -116.9416 L -45.1409 -117.0156 L -43.5142 -116.8686 L -42.8012 -116.7216 L -40.9279 -117.6045 L -39.2114 -121.1536 L -39.6824 -123.1703 L -40.2403 -123.638 L -41.3656 -124.8219 L -42.68 -126.6008 L -42.673 -126.8947 L -38.3127 -132.8093 L -38.034 -132.9029 L -36.4346 -132.3708 L -34.7762 -131.6142 L -33.8704 -131.054 L -31.8046 -131.2006 L -28.922 -133.8899 L -28.6327 -135.9406 L -28.9839 -136.5782 L -29.6055 -138.0887 L -30.
|
||
|
|
</g>
|
||
|
|
<g id='z:1.0' inkscape:groupmode='layer' inkscape:label='Layer 2, z:1.0' transform='translate(280.0, 2079.2711)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate1.0' fill='#000' stroke='none' y='15' >Layer 2, z:1.0</text>
|
||
|
|
<path d='M 7.138 -20.9419 L 13.5424 -17.4962 L 13.6764 -17.2332 L 13.5189 -16.286 L 13.1443 -15.0292 L 12.8933 -14.4733 L 11.4372 -12.5112 L 11.4126 -11.0775 L 14.0608 -7.4332 L 15.432 -7.0138 L 17.3591 -7.7078 L 18.3542 -7.8597 L 19.176 -7.8635 L 20.6148 -7.6849 L 20.8235 -7.4763 L 22.1226 -0.3208 L 22.0006 -0.0521 L 20.7164 0.6208 L 19.3546 1.0564 L 16.9126 1.1414 L 15.7764 2.0161 L 14.5783 6.3587 L 15.1053 7.6922 L 16.8495 8.7662 L 17.8381 9.742 L 18.381 10.4944 L 18.8614 11.3258 L 18.8284 11.6191 L 14.044 17.0961 L 13.7579 17.1682 L 12.8694 16.8039 L 11.7275 16.1591 L 11.2414 15.7907 L 9.6525 13.9345 L 8.2602 13.5915 L 4.118 15.3623 L 3.404 16.6058 L 3.6518 18.6391 L 3.5784 19.6429 L 3.3993 20.445 L 2.905 21.808 L 2.6552 21.965 L -4.61 21.6393 L -4.8448 21.4606 L -5.2151 20.0588 L -5.3217 19.2439 L -5.3049 18.2375 L -4.8762 16.2346 L -5.4761 14.9322 L -9.4432 12.7978 L -10.8606 13.0149 L -12.6093 14.7215 L -13.4671 15.2231 L -14.3214 15.5849 L -15.2389 15.8683 L -15.5175 15.7709 L -19.7926 9.8877 L -19.7992 9.5927 L -19.2463 8.8076 L -18.6383 8.1068 L -17.5663 7.2233 L -15.733 6.3098 L -15.0888 5.0287 L -15.8935 0.5963 L -16.9469 -0.3765 L -19.3715 -0.6797 L -20.6888 -1.2353 L -21.9076 -2.0205 L -22.0052 -2.299 L -20.071 -9.3096 L -19.8444 -9.4987 L -18.3954 -9.5479 L -16.9795 -9.3494 L -14.7425 -8.3665 L -13.3393 -8.6615 L -10.3756 -12.0542 L -10.2718 -13.4844 L -11.3773 -15.2088 L -11.7468 -16.145 L -12.0074 -17.4303 L -12.0795 -18.3879 L -11.9225 -18.6378 L -5.2355 -21.4966 L -4.9464 -21.4374 L -4.304 -20.7236 L -3.7562 -19.9749 L -3.2769 -19.1044 L -2.6506 -16.7426 L -1.5451 -15.8295 L 2.9553 -15.6277 L 4.1381 -16.4382 L 4.797 -18.3777 L 5.2987 -19.2503 L 6.1411 -20.2554 L 6.8448 -20.9088 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -46.2716 -80.2989 L -45.0906 -81.5016 L -43.6821 -82.6586 L -42.7808 -83.2261 L -42.0044 -85.146 L -43.1531 -88.9173 L -44.8679 -90.0785 L -45.595 -90.0433 L -47.2249 -90.1489 L -49.3977 -90.5629 L -49.5921 -90.7835 L -50.4049 -98.0865 L -50.2638 -98.3444 L -48.7282 -99.0394 L -46.9968 -99.6094 L -45.9513 -99.813 L -44.5338 -101.3228 L -44.2426 -105.2544 L -45.4221 -106.9567 L -47.1686 -107.6531 L -49.4711 -109.0447 L -49.5726 -109.3206 L -47.6924 -116.4241 L -47.4677 -116.6136 L -45.7847 -116.7069 L -43.9643 -116.613 L -42.9159 -116.4252 L -41.0487 -117.321 L -39.3568 -120.8819 L -39.8418 -122.8952 L -41.2188 -124.1756 L -42.8631 -126.3049 L -42.8581 -126.5989 L -38.5388 -132.5435 L -38.2607 -132.639 L -36.6577 -132.1181 L -35.3367 -131.5484 L -34.0844 -130.819 L -32.0197 -130.9798 L -29.1558 -133.6891 L -28.8807 -135.7417 L -29.3832 -136.6807 L -30.1988 -138.9337 L -30.4662 -140.0126 L -30.3553 -140.2849 L -24.1803 -144.2677 L -23.8865 -144.2564 L -22.5799 -143.1915 L -21.5539 -142.1831 L -20.6497 -141.0506 L -18.6663 -140.4547 L -15.017 -141.9464 L -14.019 -143.761 L -14.1741 -145.6349 L -13.9547 -148.3162 L -13.7529 -148.5301 L -6.5561 -150.0133 L -6.2863 -149.8966 L -5.4526 -148.4317 L -4.8601 -147.1207 L -4.426 -145.7381 L -2.7919 -144.4659 L 1.1498 -144.5386 L 2.736 -145.8702 L 2.9011 -146.5792 L 3.4486 -148.1181 L 4.4415 -150.0946 L 4.7069 -150.2211 L 11.9535 -149.0044 L 12.163 -148.7981 L 12.4559 -146.6057 L 12.4708 -144.9724 L 12.3953 -144.2484 L 13.4596 -142.4718 L 17.1614 -141.1157 L 19.1214 -141.7843 L 19.5315 -142.3858 L 20.598 -143.623 L 22.2378 -145.1073 L 22.531 -145.1295 L 28.8488 -141.3771 L 28.9696 -141.1091 L 28.5987 -139.4648 L 28.0102 -137.7396 L
|
||
|
|
</g>
|
||
|
|
<g id='z:1.4' inkscape:groupmode='layer' inkscape:label='Layer 3, z:1.4' transform='translate(280.0, 2759.8615)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate1.4' fill='#000' stroke='none' y='15' >Layer 3, z:1.4</text>
|
||
|
|
<path d='M 2.3211 22.003 L -4.9384 21.5669 L -5.1704 21.3846 L -5.5194 19.9773 L -5.6136 19.1609 L -5.6031 18.3261 L -5.1224 16.1587 L -5.7025 14.8474 L -9.6367 12.6529 L -11.0572 12.8484 L -12.5144 14.2879 L -13.0658 14.6791 L -13.697 15.0167 L -14.5567 15.3655 L -15.4784 15.635 L -15.7555 15.5333 L -19.9407 9.5858 L -19.9428 9.2907 L -19.3781 8.5141 L -18.7594 7.8226 L -18.2285 7.3424 L -17.6741 6.9556 L -15.8272 6.0699 L -15.1635 4.7988 L -15.9008 0.3547 L -16.9393 -0.6341 L -19.1418 -0.9134 L -19.9311 -1.1853 L -20.6678 -1.5497 L -21.8745 -2.3533 L -21.9678 -2.6333 L -19.9273 -9.6136 L -19.6979 -9.7993 L -18.2483 -9.8264 L -17.1058 -9.6737 L -16.6198 -9.5406 L -14.6137 -8.5896 L -13.2062 -8.8633 L -10.1913 -12.2106 L -10.0658 -13.639 L -11.1449 -15.38 L -11.4036 -16.0046 L -11.5923 -16.6952 L -11.7411 -17.6109 L -11.7987 -18.5695 L -11.6379 -18.8169 L -4.9082 -21.5738 L -4.62 -21.5102 L -3.9886 -20.7868 L -3.4521 -20.0298 L -3.1021 -19.4053 L -2.8483 -18.7788 L -2.3959 -16.781 L -1.3043 -15.8512 L 3.1925 -15.5811 L 4.3875 -16.3735 L 5.1499 -18.4586 L 5.5907 -19.1676 L 6.1098 -19.8048 L 7.1618 -20.8024 L 7.4555 -20.8311 L 13.8068 -17.2884 L 13.9368 -17.0235 L 13.6407 -15.6042 L 13.2376 -14.5244 L 12.9996 -14.0802 L 11.6261 -12.336 L 11.5798 -10.9028 L 14.1723 -7.2187 L 15.5369 -6.7784 L 17.4744 -7.4431 L 18.1409 -7.5564 L 18.8561 -7.5867 L 19.782 -7.5279 L 20.7293 -7.3708 L 20.9348 -7.159 L 22.1251 0.0155 L 21.999 0.2823 L 21.1531 0.7369 L 20.2958 1.0915 L 19.6091 1.2938 L 18.9417 1.4018 L 16.8934 1.3983 L 15.744 2.2556 L 14.48 6.5796 L 14.9867 7.921 L 16.8498 9.1282 L 17.2185 9.4718 L 17.9486 10.3636 L 18.6872 11.6112 L 18.6498 11.904 L 13.7827 17.3077 L 13.4954 17.3755 L 12.1776 16.7709 L 11.4806 16.3355 L 10.8345 15.8068 L 9.4396 14.0796 L 8.0527 13.7155 L 3.884 15.4232 L 3.1512 16.6557 L 3.3689 18.8651 L 3.3302 19.3675 L 3.0882 20.4944 L 2.5733 21.8498 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 37.099 -134.1758 L 41.6708 -128.423 L 41.6884 -128.1296 L 41.0892 -127.1934 L 39.5942 -125.321 L 38.8171 -124.5927 L 38.4194 -122.5603 L 40.2633 -119.0757 L 42.1674 -118.2613 L 43.2067 -118.4941 L 45.0214 -118.6665 L 46.7068 -118.6459 L 46.9395 -118.4662 L 49.1244 -111.4505 L 49.0349 -111.1704 L 46.7946 -109.6808 L 45.0797 -108.9097 L 43.9747 -107.1581 L 44.4354 -103.2428 L 45.9167 -101.7955 L 46.9699 -101.6372 L 48.7243 -101.1424 L 50.2885 -100.5143 L 50.4406 -100.2627 L 49.9435 -92.9315 L 49.7589 -92.7027 L 47.606 -92.1953 L 45.9821 -92.0195 L 45.2542 -92.0233 L 43.591 -90.7892 L 42.6062 -86.9719 L 43.4646 -85.0872 L 44.3896 -84.5592 L 45.8467 -83.464 L 47.0784 -82.3133 L 47.1294 -82.0238 L 44.0175 -75.3671 L 43.7627 -75.2205 L 41.5719 -75.525 L 39.9941 -75.9478 L 39.3167 -76.2143 L 37.3201 -75.6643 L 35.0228 -72.4605 L 35.1425 -70.393 L 35.8141 -69.5665 L 36.7773 -68.0189 L 37.5101 -66.501 L 37.453 -66.2126 L 32.1467 -61.1295 L 31.8561 -61.0849 L 29.9232 -62.1603 L 28.6048 -63.1244 L 28.0694 -63.6176 L 26.0089 -63.8261 L 22.7094 -61.6685 L 22.0741 -59.6974 L 22.4932 -58.3101 L 22.7409 -56.893 L 22.8759 -55.2128 L 22.7185 -54.9646 L 15.9343 -52.1417 L 15.6472 -52.205 L 14.2333 -53.906 L 13.3521 -55.2813 L 13.0311 -55.9346 L 11.1851 -56.8733 L 7.3289 -56.0534 L 6.0245 -54.4449 L 5.9141 -52.9999 L 5.7516 -52.1026 L 5.1522 -49.9735 L 4.9157 -49.7988 L -2.4302 -49.6173 L -2.675 -49.7801 L -3.061 -50.8224 L -3.6542 -53.1439 L -3.7671 -54.2029 L -5.1494 -55.745 L -9.0413 -56.3735 L -10.8387 -55.3448 L -11.4636
|
||
|
|
</g>
|
||
|
|
<g id='z:1.8' inkscape:groupmode='layer' inkscape:label='Layer 4, z:1.8' transform='translate(280.0, 3440.4519)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate1.8' fill='#000' stroke='none' y='15' >Layer 4, z:1.8</text>
|
||
|
|
<path d='M 2.0216 22.0326 L -5.2312 21.4979 L -5.4608 21.3124 L -5.7906 19.9005 L -5.8737 19.0829 L -5.8518 18.2483 L -5.3417 16.0876 L -5.9039 14.7685 L -9.8079 12.5207 L -11.231 12.6969 L -12.8435 14.2229 L -13.9001 14.8291 L -14.7644 15.1662 L -15.6897 15.4231 L -15.9654 15.3177 L -20.0693 9.3137 L -20.0675 9.0186 L -19.4922 8.2498 L -18.8642 7.5668 L -17.9157 6.8025 L -15.9083 5.8542 L -15.2275 4.5922 L -15.9043 0.1384 L -16.9292 -0.8644 L -19.1277 -1.1736 L -19.6068 -1.3298 L -20.6449 -1.8306 L -21.8406 -2.6506 L -21.9301 -2.9318 L -19.7948 -9.8838 L -19.5629 -10.0663 L -18.1131 -10.0737 L -16.9728 -9.9055 L -16.218 -9.6562 L -14.4956 -8.7876 L -13.0845 -9.0422 L -10.0243 -12.3482 L -9.8794 -13.7747 L -11.0083 -15.6864 L -11.3643 -16.8514 L -11.5006 -17.7691 L -11.5451 -18.7283 L -11.381 -18.9736 L -4.6144 -21.6387 L -4.3271 -21.5712 L -3.7055 -20.8392 L -3.1794 -20.075 L -2.6453 -18.9802 L -2.1674 -16.8121 L -1.0886 -15.8676 L 3.4041 -15.5363 L 4.6098 -16.3124 L 5.4005 -18.3869 L 5.6593 -18.8193 L 6.3786 -19.7199 L 7.4441 -20.7032 L 7.7382 -20.7279 L 14.0408 -17.0992 L 14.1671 -16.8325 L 13.9824 -15.8901 L 13.434 -14.3431 L 13.19 -13.9021 L 11.7929 -12.1768 L 11.727 -10.7444 L 14.2692 -7.0253 L 15.6278 -6.5665 L 17.7426 -7.2418 L 18.9576 -7.3296 L 19.8827 -7.2583 L 20.8278 -7.0882 L 21.0304 -6.8737 L 22.1229 0.3164 L 21.9932 0.5814 L 21.1413 1.0245 L 20.2792 1.3674 L 19.5898 1.5603 L 18.8015 1.6632 L 16.8729 1.6279 L 15.712 2.4695 L 14.3893 6.7759 L 14.8777 8.1241 L 16.7242 9.3566 L 17.3094 9.9521 L 18.0714 11.0195 L 18.5277 11.8644 L 18.4863 12.1566 L 13.5461 17.4937 L 13.258 17.5575 L 11.9485 16.9351 L 11.2574 16.4903 L 10.6185 15.9528 L 9.2473 14.2068 L 7.8655 13.8238 L 3.674 15.4747 L 2.9244 16.6971 L 3.1121 18.9093 L 3.0113 19.738 L 2.652 20.9993 L 2.2759 21.8829 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 5.1967 -49.8271 L -2.148 -49.6044 L -2.3937 -49.7658 L -2.9629 -51.3524 L -3.3918 -53.1241 L -3.5106 -54.1825 L -4.9015 -55.7169 L -8.7969 -56.3235 L -10.5885 -55.2848 L -11.0236 -54.3126 L -12.306 -52.2887 L -12.9956 -51.4169 L -13.2787 -51.3379 L -20.2079 -53.7835 L -20.3788 -54.0228 L -20.3363 -55.7078 L -20.1669 -57.1364 L -19.8247 -58.5446 L -20.5674 -60.4778 L -23.9806 -62.4507 L -26.0265 -62.1293 L -27.4135 -60.8597 L -29.6682 -59.3922 L -29.9608 -59.4208 L -35.5387 -64.2043 L -35.6115 -64.4892 L -34.9633 -66.0451 L -34.2892 -67.316 L -33.4614 -68.5055 L -33.4556 -70.5765 L -35.9256 -73.6491 L -37.9495 -74.0885 L -38.6112 -73.7851 L -40.1633 -73.2763 L -42.3341 -72.8517 L -42.5966 -72.9841 L -46.0697 -79.4596 L -46.0348 -79.7515 L -44.8682 -80.9682 L -43.4734 -82.1418 L -42.579 -82.7199 L -41.8254 -84.6489 L -43.0187 -88.4064 L -44.7471 -89.5471 L -45.4738 -89.5033 L -47.1049 -89.5895 L -49.2824 -89.9778 L -49.4794 -90.1961 L -50.3788 -97.4889 L -50.2407 -97.7485 L -48.7134 -98.4616 L -46.9889 -99.0521 L -45.946 -99.2681 L -44.5465 -100.7946 L -44.3018 -104.7294 L -45.5015 -106.4175 L -46.5096 -106.761 L -48.6433 -107.8513 L -49.5749 -108.4574 L -49.6797 -108.7321 L -47.8839 -115.8574 L -47.6614 -116.0496 L -45.9797 -116.1628 L -44.1583 -116.0905 L -43.1077 -115.9151 L -41.2513 -116.833 L -39.6018 -120.4137 L -40.1106 -122.4212 L -41.5027 -123.6851 L -43.1721 -125.7949 L -43.1706 -126.0888 L -38.9221 -132.0843 L -38.6452 -132.1831 L -37.0361 -131.6811 L -35.7084 -131.1272 L -34.4476 -130.4127 L -32.3849 -130.598 L -29.5533 -133.341 L -29.3025 -135.3968 L -29.8161 -136.3298 L -30.6584 -
|
||
|
|
</g>
|
||
|
|
<g id='z:2.2' inkscape:groupmode='layer' inkscape:label='Layer 5, z:2.2' transform='translate(280.0, 4121.0422)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate2.2' fill='#000' stroke='none' y='15' >Layer 5, z:2.2</text>
|
||
|
|
<path d='M 18.3392 12.3776 L 13.3352 17.655 L 13.0464 17.7154 L 12.1735 17.3151 L 11.0588 16.6242 L 10.3092 15.9525 L 9.0762 14.3168 L 7.6991 13.9173 L 3.488 15.5178 L 2.7238 16.7311 L 2.8885 18.7728 L 2.7743 19.7729 L 2.5626 20.567 L 2.0131 21.9087 L 1.7571 22.0554 L -5.4889 21.4336 L -5.7162 21.2454 L -5.9474 20.3134 L -6.0788 19.395 L -6.105 18.6796 L -6.0445 18.0063 L -5.5344 16.0225 L -6.0807 14.6967 L -9.9575 12.4022 L -11.3826 12.5613 L -12.8762 13.963 L -13.7293 14.4972 L -14.9454 14.9881 L -15.8737 15.2338 L -16.1481 15.1251 L -20.1798 9.0723 L -20.1743 8.7772 L -19.5898 8.0153 L -18.9537 7.34 L -18.4107 6.8735 L -17.8466 6.5009 L -15.9775 5.6629 L -15.2816 4.4091 L -15.9049 -0.0525 L -16.9177 -1.0675 L -19.3279 -1.4693 L -20.2396 -1.8647 L -21.0365 -2.3399 L -21.8074 -2.9125 L -21.8934 -3.1948 L -19.6749 -10.1207 L -19.4408 -10.3004 L -17.991 -10.2904 L -17.1766 -10.1797 L -16.2098 -9.8997 L -14.3892 -8.961 L -12.9751 -9.1986 L -9.8755 -12.4676 L -9.7134 -13.8924 L -10.7477 -15.6604 L -10.9904 -16.2914 L -11.1613 -16.9866 L -11.2866 -17.9059 L -11.3196 -18.8656 L -11.1526 -19.1089 L -4.3544 -21.6926 L -4.068 -21.6216 L -3.4552 -20.8823 L -2.7506 -19.7762 L -2.3667 -18.8457 L -1.9656 -16.837 L -0.8981 -15.8796 L 3.5903 -15.4944 L 4.8053 -16.256 L 5.5427 -18.167 L 6.0796 -19.0184 L 6.6148 -19.6421 L 7.692 -20.6125 L 7.9864 -20.6336 L 14.245 -16.9295 L 14.3681 -16.6613 L 14.1721 -15.7213 L 13.892 -14.8368 L 13.4732 -13.9356 L 11.9382 -12.0345 L 11.8552 -10.6029 L 14.3525 -6.8536 L 15.7055 -6.3786 L 17.6594 -6.9934 L 18.6598 -7.1046 L 19.9684 -7.0192 L 20.9114 -6.8378 L 21.1115 -6.6208 L 22.1176 0.5818 L 21.9847 0.8453 L 21.1276 1.2782 L 20.2614 1.6106 L 19.5698 1.7953 L 18.8998 1.8862 L 16.8523 1.8303 L 15.6813 2.6579 L 14.307 6.9481 L 14.7792 8.3021 L 16.4781 9.4463 L 16.9706 9.9095 L 17.4262 10.4617 L 17.9379 11.2356 L 18.3841 12.0859 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -13.0381 -51.2728 L -19.9793 -53.6842 L -20.1514 -53.9226 L -20.0735 -56.1331 L -19.9549 -57.0372 L -19.6197 -58.4471 L -20.3719 -60.3766 L -23.7948 -62.3326 L -25.8391 -62.0011 L -26.5922 -61.2481 L -28.5122 -59.8145 L -29.4672 -59.246 L -29.76 -59.2732 L -35.3614 -64.0291 L -35.4357 -64.3136 L -34.5646 -66.3467 L -34.1273 -67.1469 L -33.3054 -68.3405 L -33.3098 -70.4115 L -35.795 -73.4719 L -37.821 -73.9013 L -38.4812 -73.5946 L -40.0308 -73.0781 L -42.1994 -72.6428 L -42.4626 -72.7739 L -45.9677 -79.2322 L -45.9342 -79.5243 L -44.7737 -80.7467 L -43.3847 -81.9272 L -42.4931 -82.5097 L -41.7491 -84.4424 L -42.9609 -88.1939 L -44.695 -89.3262 L -45.4214 -89.2787 L -47.0529 -89.3569 L -49.2323 -89.7344 L -49.4304 -89.9517 L -50.3658 -97.24 L -50.229 -97.5003 L -48.7053 -98.2209 L -46.9837 -98.82 L -45.9418 -99.0411 L -44.5499 -100.5745 L -44.3247 -104.5105 L -45.5327 -106.1926 L -46.5425 -106.5311 L -47.7203 -107.0731 L -49.6162 -108.2124 L -49.7223 -108.4865 L -47.9617 -115.6206 L -47.7402 -115.8139 L -45.5319 -115.9404 L -44.6207 -115.9056 L -43.1859 -115.702 L -41.334 -116.629 L -39.7022 -120.2178 L -40.2209 -122.2228 L -41.0403 -122.9032 L -42.6448 -124.6827 L -43.299 -125.5812 L -43.299 -125.8752 L -39.0802 -131.8916 L -38.8038 -131.9918 L -36.6989 -131.312 L -35.8618 -130.9504 L -34.5974 -130.2422 L -32.5357 -130.4377 L -29.7177 -133.1946 L -29.4771 -135.2516 L -29.9953 -136.182 L -30.5006 -137.376 L -31.1341 -139.4952 L -31.0279 -139.7693 L -24.9206 -143.8554 L -24.6267 -143.849 L -22.9095 -142.4547 L -21.7782 -141.
|
||
|
|
</g>
|
||
|
|
<g id='z:2.6' inkscape:groupmode='layer' inkscape:label='Layer 6, z:2.6' transform='translate(280.0, 4801.6326)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate2.6' fill='#000' stroke='none' y='15' >Layer 6, z:2.6</text>
|
||
|
|
<path d='M 1.5276 22.0726 L -5.7115 21.3755 L -5.9368 21.1849 L -6.1584 20.2506 L -6.2997 18.9467 L -6.2835 18.3371 L -5.7008 15.9641 L -6.2332 14.6327 L -10.086 12.298 L -11.5127 12.4422 L -13.1589 13.9317 L -14.2289 14.5142 L -15.1006 14.8319 L -16.0314 15.0679 L -16.3046 14.9564 L -20.2731 8.862 L -20.2646 8.567 L -19.3411 7.4492 L -18.741 6.8878 L -18.0637 6.3996 L -16.0356 5.4964 L -15.3267 4.25 L -15.9035 -0.2179 L -16.9058 -1.2434 L -18.9298 -1.5582 L -19.5723 -1.7686 L -20.2192 -2.0751 L -21.0111 -2.5586 L -21.776 -3.1391 L -21.8591 -3.4223 L -19.5686 -10.3248 L -19.3327 -10.5021 L -17.883 -10.477 L -17.0699 -10.3578 L -16.106 -10.0678 L -14.2953 -9.1102 L -12.8788 -9.333 L -9.7453 -12.5697 L -9.5685 -13.9927 L -10.5301 -15.6649 L -10.8204 -16.4049 L -11.0508 -17.5343 L -11.1228 -18.9824 L -10.9533 -19.2239 L -4.1286 -21.7368 L -3.8429 -21.6629 L -2.9586 -20.5138 L -2.5448 -19.8038 L -2.2196 -19.0348 L -1.7904 -16.8566 L -0.7329 -15.8881 L 3.7513 -15.4563 L 4.9741 -16.2052 L 5.9256 -18.4558 L 6.8188 -19.5723 L 7.906 -20.5315 L 8.2006 -20.5495 L 14.4204 -16.7805 L 14.5407 -16.5111 L 14.3349 -15.5731 L 14.0456 -14.6916 L 13.752 -14.0387 L 13.3993 -13.4619 L 12.0628 -11.9097 L 11.9648 -10.4791 L 14.4231 -6.704 L 15.7711 -6.2149 L 17.9006 -6.8426 L 18.7327 -6.9102 L 19.5537 -6.872 L 20.9815 -6.62 L 21.1793 -6.4009 L 22.1105 0.8118 L 21.9749 1.0739 L 21.1132 1.4978 L 20.2436 1.8213 L 19.5501 1.9987 L 18.7597 2.084 L 16.8324 2.0055 L 15.6529 2.8209 L 14.234 7.0966 L 14.6921 8.4554 L 16.3791 9.6172 L 17.3165 10.6424 L 17.8202 11.4216 L 18.2575 12.2765 L 18.2095 12.5677 L 13.151 17.7928 L 12.8615 17.8502 L 11.5663 17.1986 L 10.8854 16.7384 L 10.2587 16.1868 L 8.9269 14.4105 L 7.5539 13.9967 L 3.3265 15.5533 L 2.5497 16.7586 L 2.6878 18.9744 L 2.631 19.4751 L 2.3486 20.5926 L 1.7852 21.9285 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 3.6471 -150.3094 L 10.9179 -149.2457 L 11.1316 -149.0438 L 11.4149 -147.3822 L 11.5241 -145.9478 L 11.4598 -144.5 L 12.5613 -142.7462 L 16.2909 -141.4685 L 18.2364 -142.1783 L 19.3526 -143.6915 L 21.2821 -145.5662 L 21.5747 -145.5946 L 27.9702 -141.9762 L 28.0966 -141.7108 L 27.7605 -140.0591 L 27.3441 -138.682 L 26.7612 -137.3552 L 27.1548 -135.322 L 30.1709 -132.7833 L 32.2415 -132.7424 L 32.8323 -133.1676 L 34.2572 -133.9662 L 36.3054 -134.8013 L 36.5885 -134.722 L 41.245 -129.0377 L 41.267 -128.7445 L 40.045 -126.9008 L 38.9816 -125.661 L 38.4484 -125.1654 L 38.0809 -123.1273 L 39.9762 -119.6705 L 41.8922 -118.8844 L 42.5967 -119.0675 L 44.2139 -119.2974 L 46.4254 -119.3362 L 46.6608 -119.16 L 48.9494 -112.1774 L 48.864 -111.8961 L 46.6461 -110.3734 L 44.9428 -109.5769 L 43.8639 -107.8092 L 44.3825 -103.9011 L 45.8851 -102.4759 L 47.3172 -102.2539 L 49.2444 -101.6749 L 50.2755 -101.2597 L 50.4313 -101.0104 L 50.043 -93.6725 L 49.8617 -93.4411 L 47.2435 -92.8224 L 45.3675 -92.695 L 43.7229 -91.4364 L 42.7947 -87.6048 L 43.681 -85.7331 L 45.2907 -84.7613 L 47.3355 -83.013 L 47.3908 -82.7243 L 44.3779 -76.0222 L 44.1253 -75.8718 L 42.4496 -76.0541 L 41.04 -76.3417 L 39.6651 -76.7996 L 37.6769 -76.2201 L 35.4272 -72.9826 L 35.5775 -70.9171 L 36.7275 -69.4295 L 38.0027 -67.0606 L 37.9499 -66.7714 L 32.7194 -61.6102 L 32.4295 -61.5613 L 30.9328 -62.3366 L 29.7223 -63.1139 L 28.6057 -64.0376 L 26.5423 -64.2155 L 23.2751 -62.0093 L 22.6691 -60.0289 L 22.9165 -59.3443 L 23.2946 -57.7553 L 23.5373 -55.5567 L 23.3836 -55.3061 L 16.6419 -52.383 L 16.354 -52.4421 L 15.2384 -53.7057 L 1
|
||
|
|
</g>
|
||
|
|
<g id='z:3.0' inkscape:groupmode='layer' inkscape:label='Layer 7, z:3.0' transform='translate(280.0, 5482.223)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate3.0' fill='#000' stroke='none' y='15' >Layer 7, z:3.0</text>
|
||
|
|
<path d='M 1.3333 22.0853 L -5.8994 21.3245 L -6.1231 21.1319 L -6.3364 20.1957 L -6.4501 19.2749 L -6.4447 18.2811 L -5.841 15.9134 L -6.3618 14.5773 L -10.1939 12.2088 L -11.6218 12.3405 L -13.142 13.7133 L -14.0052 14.231 L -15.2305 14.6985 L -16.1634 14.9263 L -16.4356 14.8124 L -20.3504 8.6833 L -20.3393 8.3884 L -19.7403 7.6378 L -19.0913 6.9748 L -18.5394 6.5188 L -17.9682 6.1571 L -16.0834 5.3551 L -15.3635 4.115 L -15.901 -0.3578 L -16.8942 -1.3921 L -18.9154 -1.7247 L -19.8584 -2.0768 L -20.578 -2.4738 L -21.7476 -3.3306 L -21.8282 -3.6145 L -19.4771 -10.4966 L -19.2396 -10.6718 L -18.2793 -10.6715 L -17.3563 -10.5775 L -16.6557 -10.4303 L -16.0169 -10.2092 L -14.2146 -9.2357 L -12.7962 -9.446 L -9.6344 -12.655 L -9.445 -14.0764 L -10.4451 -15.864 L -10.6756 -16.4996 L -10.8332 -17.1979 L -10.9408 -18.1194 L -10.9554 -19.0796 L -10.7837 -19.3196 L -3.9372 -21.7723 L -3.6521 -21.6959 L -2.778 -20.5391 L -2.3705 -19.8255 L -2.0045 -18.8878 L -1.642 -16.8718 L -0.5931 -15.894 L 3.8872 -15.4227 L 5.1165 -16.1609 L 5.8906 -18.0574 L 6.2437 -18.6338 L 6.6915 -19.1924 L 7.3448 -19.8511 L 8.0864 -20.4612 L 8.3811 -20.4766 L 14.5675 -16.653 L 14.6855 -16.3825 L 14.3261 -14.9779 L 14.0222 -14.2143 L 13.5173 -13.3435 L 12.1672 -11.8031 L 12.0566 -10.3734 L 14.4816 -6.5768 L 15.8252 -6.0759 L 17.7905 -6.6532 L 18.4614 -6.7365 L 19.1773 -6.7347 L 20.0997 -6.6346 L 21.039 -6.4351 L 21.2348 -6.2143 L 22.1026 1.0063 L 21.9646 1.2672 L 20.6423 1.862 L 19.5318 2.1707 L 18.8603 2.2487 L 16.8141 2.1535 L 15.6275 2.9585 L 14.1711 7.2216 L 14.6172 8.5844 L 16.2939 9.761 L 17.2222 10.7944 L 17.7191 11.578 L 18.1488 12.4367 L 18.0983 12.7275 L 12.9939 17.9079 L 12.704 17.9627 L 11.4145 17.2998 L 10.7377 16.8336 L 10.1159 16.2765 L 8.7997 14.4885 L 7.4305 14.0627 L 3.1895 15.582 L 2.4021 16.7804 L 2.5276 18.8249 L 2.4595 19.4976 L 2.1673 20.6125 L 1.5922 21.9435 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 23.5454 -55.3911 L 16.8144 -52.4436 L 16.5262 -52.5016 L 15.0812 -54.1762 L 14.1748 -55.5351 L 13.8417 -56.1824 L 11.9787 -57.0868 L 8.1383 -56.1959 L 6.8638 -54.5636 L 6.823 -53.4993 L 6.5253 -51.701 L 6.0741 -50.0769 L 5.8409 -49.8979 L -1.5004 -49.5809 L -1.7482 -49.7391 L -2.4907 -51.8227 L -2.845 -53.4172 L -2.9217 -54.1411 L -4.3322 -55.6575 L -8.2351 -56.214 L -10.0132 -55.1523 L -10.6139 -53.8335 L -11.363 -52.6053 L -12.3704 -51.2539 L -12.6525 -51.1712 L -19.6126 -53.5276 L -19.7865 -53.7646 L -19.7903 -54.8761 L -19.5489 -57.26 L -19.2906 -58.2933 L -20.058 -60.2168 L -23.4963 -62.1456 L -25.5379 -61.798 L -26.5744 -60.7852 L -27.7166 -59.9105 L -29.1442 -59.0143 L -29.4371 -59.0391 L -35.0759 -63.7507 L -35.1525 -64.0345 L -34.0773 -66.5006 L -33.0541 -68.0782 L -33.0749 -70.149 L -35.5842 -73.1897 L -37.6135 -73.603 L -38.5844 -73.1652 L -40.327 -72.6301 L -41.9819 -72.31 L -42.2461 -72.439 L -45.8021 -78.8694 L -45.7709 -79.1617 L -44.2368 -80.7551 L -42.9674 -81.783 L -42.3536 -82.1743 L -41.6248 -84.1128 L -42.8663 -87.8547 L -44.6093 -88.9731 L -45.6728 -88.9156 L -47.4909 -89.0461 L -49.1497 -89.3455 L -49.3494 -89.5612 L -50.3425 -96.8419 L -50.2078 -97.1032 L -48.2016 -98.0348 L -46.6466 -98.5347 L -45.9329 -98.6779 L -44.5531 -100.2223 L -44.359 -104.1599 L -45.5803 -105.8325 L -46.9489 -106.3089 L -48.241 -106.9415 L -49.6796 -107.8199 L -49.7879 -108.0932 L -48.0838 -115.241 L -47.8638 -115.436 L -45.1769 -115.5728 L -43.3087 -115.3601 L -41.4642 -116.3017 L -39.8608 -119.9033 L -40.3954 -121.904
|
||
|
|
</g>
|
||
|
|
<g id='z:3.4' inkscape:groupmode='layer' inkscape:label='Layer 8, z:3.4' transform='translate(280.0, 6162.8134)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate3.4' fill='#000' stroke='none' y='15' >Layer 8, z:3.4</text>
|
||
|
|
<path d='M 1.1743 22.0943 L -6.0528 21.2815 L -6.2751 21.0874 L -6.4816 20.1496 L -6.6021 18.8436 L -6.5761 18.2343 L -5.9555 15.871 L -6.4666 14.5312 L -10.2815 12.1352 L -11.7103 12.2565 L -13.3802 13.7195 L -13.8114 13.9804 L -14.8686 14.4395 L -16.2705 14.8096 L -16.5419 14.6937 L -20.4124 8.5365 L -20.3992 8.2417 L -19.7948 7.4955 L -18.8489 6.5871 L -18.0121 6.0276 L -16.1216 5.2392 L -15.3928 4.0043 L -15.8981 -0.4723 L -16.8838 -1.5137 L -19.0688 -1.9071 L -20.1835 -2.3984 L -20.9676 -2.8944 L -21.7231 -3.4871 L -21.8017 -3.7716 L -19.4011 -10.6366 L -19.1623 -10.8101 L -17.7132 -10.7618 L -16.3138 -10.4688 L -14.1478 -9.3378 L -12.7279 -9.538 L -9.543 -12.7241 L -9.3434 -14.1441 L -10.3982 -16.0977 L -10.6364 -16.8978 L -10.7689 -17.7089 L -10.8178 -19.158 L -10.6444 -19.3968 L -3.7803 -21.8002 L -3.4958 -21.7217 L -2.9028 -20.9664 L -2.4064 -20.1826 L -1.9867 -19.2818 L -1.5204 -16.8832 L -0.4786 -15.8979 L 3.9981 -15.3944 L 5.2327 -16.1237 L 5.9692 -17.9066 L 6.3777 -18.5885 L 6.8295 -19.1438 L 7.4876 -19.7978 L 8.2336 -20.4025 L 8.5284 -20.4158 L 14.6871 -16.5478 L 14.8031 -16.2764 L 14.4336 -14.8744 L 13.8365 -13.5753 L 12.2519 -11.7152 L 12.131 -10.2864 L 14.5286 -6.4724 L 15.8686 -5.9618 L 17.7216 -6.4977 L 18.5095 -6.6034 L 19.6612 -6.5583 L 21.0849 -6.2835 L 21.2791 -6.0613 L 22.0948 1.1655 L 21.955 1.4254 L 21.0867 1.8354 L 19.8403 2.2435 L 19.2405 2.3537 L 16.7983 2.2745 L 15.6058 3.071 L 14.1188 7.3234 L 14.555 8.6894 L 16.3529 9.9919 L 16.7032 10.3542 L 17.3861 11.2827 L 18.0588 12.5671 L 18.0062 12.8575 L 12.8647 18.0011 L 12.5743 18.0538 L 11.7123 17.6306 L 10.6162 16.9105 L 10.156 16.5103 L 8.6952 14.5516 L 7.3291 14.1158 L 3.0772 15.6046 L 2.2813 16.7973 L 2.3839 19.0151 L 2.3191 19.5148 L 2.0188 20.6277 L 1.4341 21.9544 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 5.9894 -49.9154 L -1.3509 -49.5766 L -1.5992 -49.7341 L -2.0074 -50.768 L -2.5734 -52.699 L -2.7857 -54.1326 L -4.2007 -55.6448 L -8.1052 -56.1898 L -9.8802 -55.1228 L -10.2998 -54.1439 L -11.5501 -52.0999 L -12.2258 -51.2174 L -12.5077 -51.1339 L -19.4747 -53.4696 L -19.6493 -53.7062 L -19.6335 -55.3917 L -19.4867 -56.8228 L -19.1668 -58.2362 L -19.94 -60.1575 L -23.384 -62.0761 L -25.4245 -61.7224 L -26.7913 -60.4311 L -29.0225 -58.928 L -29.3156 -58.952 L -34.9683 -63.6468 L -35.0457 -63.9304 L -34.4221 -65.4964 L -33.7682 -66.7778 L -32.9594 -67.9803 L -32.9863 -70.0511 L -35.5046 -73.0843 L -37.5351 -73.4916 L -38.5047 -73.0509 L -40.2457 -72.5106 L -41.8996 -72.1857 L -42.1642 -72.3139 L -45.7393 -78.7337 L -45.709 -79.0261 L -44.9655 -79.8523 L -42.9132 -81.6556 L -42.3005 -82.0488 L -41.5776 -83.9895 L -42.8301 -87.7276 L -44.5764 -88.8409 L -45.6397 -88.7802 L -47.4583 -88.9053 L -49.1179 -89.1998 L -49.3183 -89.4149 L -50.3329 -96.6927 L -50.199 -96.9544 L -48.1956 -97.8919 L -46.6421 -98.3964 L -45.9288 -98.5417 L -44.5536 -100.0902 L -44.3712 -104.0284 L -45.5974 -105.6973 L -46.6108 -106.0248 L -48.7615 -107.0812 L -49.7026 -107.6726 L -49.8117 -107.9455 L -48.1288 -115.0984 L -47.9094 -115.294 L -46.2296 -115.4338 L -44.7911 -115.4197 L -43.3541 -115.2316 L -41.5124 -116.1787 L -39.9197 -119.7851 L -40.4602 -121.7843 L -41.2869 -122.4558 L -42.9107 -124.2177 L -43.5746 -125.1091 L -43.5778 -125.4031 L -39.4246 -131.4649 L -39.1493 -131.5681 L -37.5325 -131.0917 L -36.1962 -130.5588 L -34.9242 -129.8644 L -32.8647 -130.0822 L -30.0768 -132.8697 L -29.8586 -134.9291 L -30.3869 -135.8539 L -31.0855 -137.5376 L
|
||
|
|
</g>
|
||
|
|
<g id='z:3.8' inkscape:groupmode='layer' inkscape:label='Layer 9, z:3.8' transform='translate(280.0, 6843.4037)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate3.8' fill='#000' stroke='none' y='15' >Layer 9, z:3.8</text>
|
||
|
|
<path d='M -16.624 14.6009 L -20.4599 8.4221 L -20.4451 8.1274 L -19.4977 7.0298 L -18.6214 6.281 L -17.9374 5.876 L -16.1507 5.1488 L -15.415 3.918 L -15.8952 -0.5613 L -16.8751 -1.6082 L -18.8919 -1.9667 L -19.8303 -2.3308 L -20.5448 -2.737 L -21.7033 -3.6088 L -21.7803 -3.8936 L -19.3412 -10.7451 L -19.1015 -10.9173 L -18.1413 -10.9046 L -17.2196 -10.7988 L -16.521 -10.6427 L -15.7778 -10.3604 L -14.0953 -9.4169 L -12.6743 -9.6091 L -9.4717 -12.7774 L -9.2641 -14.1962 L -10.2413 -15.9965 L -10.6122 -17.3352 L -10.7081 -18.2581 L -10.7103 -19.2183 L -10.5356 -19.4562 L -3.6582 -21.8211 L -3.3741 -21.741 L -2.5149 -20.5731 L -2.1165 -19.8543 L -1.8079 -19.0785 L -1.4259 -16.8915 L -0.3896 -15.9004 L 4.0843 -15.3718 L 5.323 -16.0942 L 6.3229 -18.3237 L 7.24 -19.4206 L 8.3477 -20.3561 L 8.6426 -20.3678 L 14.7796 -16.4653 L 14.8941 -16.1933 L 14.6681 -15.26 L 14.3598 -14.3849 L 13.7889 -13.3088 L 12.3173 -11.6465 L 12.1885 -10.2183 L 14.5647 -6.391 L 15.9017 -5.8729 L 18.2683 -6.4812 L 18.8778 -6.504 L 20.1831 -6.3768 L 21.1198 -6.1653 L 21.3127 -5.9421 L 22.088 1.2892 L 21.9467 1.5483 L 20.6169 2.1261 L 19.5025 2.4205 L 18.7105 2.4887 L 16.7853 2.3686 L 15.5884 3.1583 L 14.0776 7.4024 L 14.5062 8.7708 L 16.1677 9.9688 L 16.8551 10.704 L 17.3227 11.3799 L 17.9882 12.6681 L 17.934 12.9582 L 12.7637 18.0729 L 12.4731 18.124 L 11.6134 17.696 L 10.8289 17.2007 L 10.2672 16.7569 L 9.7936 16.2744 L 8.6136 14.6001 L 7.2499 14.1567 L 2.9898 15.6216 L 2.1872 16.8099 L 2.2774 19.0282 L 2.1403 19.8517 L 1.9033 20.6387 L 1.3112 21.9622 L 1.0506 22.1006 L -6.1719 21.2473 L -6.3931 21.0519 L -6.5944 20.113 L -6.6964 19.1908 L -6.649 17.9736 L -6.0443 15.8374 L -6.5479 14.4948 L -10.3494 12.0774 L -11.7788 12.1908 L -13.6471 13.7657 L -14.1863 14.0507 L -15.4175 14.5024 L -16.3532 14.7183 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -43.6363 -125.3025 L -39.4971 -131.3739 L -39.222 -131.4778 L -38.1503 -131.183 L -35.6189 -130.1555 L -34.993 -129.7838 L -32.934 -130.0064 L -30.1525 -132.8003 L -29.9391 -134.8602 L -30.8109 -136.5261 L -31.6519 -139.0816 L -31.5493 -139.3571 L -25.4963 -143.5233 L -25.2024 -143.5208 L -23.8644 -142.4955 L -22.3202 -140.9862 L -21.8709 -140.4135 L -19.8705 -139.8773 L -16.2676 -141.4777 L -15.3244 -143.3214 L -15.5356 -145.1898 L -15.3966 -147.8765 L -15.2014 -148.0964 L -8.0522 -149.7946 L -7.779 -149.6861 L -6.9018 -148.2467 L -6.0071 -146.2815 L -5.7949 -145.5851 L -4.1234 -144.3625 L -0.1856 -144.5533 L 1.3599 -145.9318 L 1.5901 -146.9717 L 2.2042 -148.688 L 2.9381 -150.2054 L 3.1995 -150.3399 L 10.4794 -149.3409 L 10.695 -149.141 L 10.9088 -148.0502 L 11.115 -146.0485 L 11.0636 -144.6002 L 12.1807 -142.8563 L 15.9214 -141.6118 L 17.8606 -142.3389 L 18.4509 -143.2254 L 19.6435 -144.604 L 20.876 -145.7538 L 21.1683 -145.7847 L 27.5958 -142.2234 L 27.7245 -141.9591 L 27.2704 -139.7944 L 26.7403 -138.2493 L 26.428 -137.5918 L 26.8396 -135.5622 L 29.8782 -133.0503 L 31.9491 -133.0279 L 33.5274 -134.0497 L 35.9945 -135.1229 L 36.2782 -135.0461 L 40.9851 -129.4034 L 41.0097 -129.1104 L 39.8042 -127.2559 L 38.7519 -126.0067 L 38.2231 -125.5064 L 37.8737 -123.4652 L 39.7998 -120.0253 L 41.7226 -119.2562 L 42.7561 -119.5137 L 44.5662 -119.729 L 46.2517 -119.7484 L 46.4886 -119.5743 L 48.8392 -112.6123 L 48.7564 -112.3302 L 46.9623 -111.0365 L 45.5298 -110.2518 L 44.8559 -109.9763 L 43.7928 -108.199 L 44.3461 -104.2957 L 45.8614 -102.8839 L 46.918 -102.7507 L 48.6837 -102.2976 L 50.2623 -101.7068
|
||
|
|
</g>
|
||
|
|
<g id='z:4.2' inkscape:groupmode='layer' inkscape:label='Layer 10, z:4.2' transform='translate(280.0, 7523.9941)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate4.2' fill='#000' stroke='none' y='15' >Layer 10, z:4.2</text>
|
||
|
|
<path d='M 0.9621 22.1047 L -6.2568 21.2225 L -6.4772 21.0262 L -6.6748 20.0865 L -6.7731 19.1639 L -6.7208 17.9469 L -6.1076 15.8131 L -6.6058 14.4685 L -10.3976 12.0359 L -11.8275 12.1436 L -13.3706 13.4907 L -14.2424 13.9938 L -15.0066 14.2962 L -16.412 14.6528 L -16.6823 14.5343 L -20.4935 8.3402 L -20.4775 8.0455 L -19.8659 7.3052 L -19.2059 6.6531 L -18.2218 5.9351 L -16.1712 5.0842 L -15.4306 3.8563 L -15.8929 -0.6249 L -16.8686 -1.6757 L -18.8839 -2.0423 L -19.8208 -2.4101 L -20.5337 -2.8191 L -21.6887 -3.6955 L -21.7646 -3.9807 L -19.2981 -10.8224 L -19.0577 -10.9936 L -18.0976 -10.9771 L -17.1763 -10.8676 L -16.0014 -10.5459 L -14.0576 -9.4732 L -12.6358 -9.6597 L -9.4205 -12.8152 L -9.2073 -14.2332 L -10.1772 -16.0374 L -10.4738 -16.9992 L -10.635 -18.3008 L -10.6334 -19.2611 L -10.4577 -19.4982 L -3.5709 -21.8356 L -3.2872 -21.7544 L -2.7014 -20.9934 L -2.2126 -20.2048 L -1.7316 -19.0856 L -1.3583 -16.8971 L -0.326 -15.9018 L 4.1457 -15.3554 L 5.3873 -16.0728 L 6.3961 -18.2983 L 7.3176 -19.3915 L 8.4291 -20.3226 L 8.724 -20.3331 L 14.8453 -16.4061 L 14.9587 -16.1336 L 14.729 -15.2012 L 14.4172 -14.3274 L 13.8421 -13.2535 L 12.3638 -11.5971 L 12.2293 -10.1695 L 14.5901 -6.3327 L 15.9251 -5.8092 L 17.8999 -6.3534 L 18.9037 -6.4285 L 19.7234 -6.3693 L 21.1443 -6.0808 L 21.3364 -5.8568 L 22.0827 1.3775 L 21.9404 1.6361 L 21.0682 2.0378 L 20.1906 2.3389 L 18.9924 2.5588 L 16.7757 2.4357 L 15.5757 3.2207 L 14.0479 7.4587 L 14.471 8.8288 L 16.4163 10.3075 L 17.277 11.4492 L 17.9374 12.7399 L 17.882 13.0298 L 12.6913 18.1238 L 12.4005 18.1738 L 11.5426 17.7423 L 10.76 17.2439 L 9.8411 16.4442 L 8.5552 14.6344 L 7.1933 14.1856 L 2.9273 15.6335 L 2.1199 16.8185 L 2.211 18.8649 L 2.0608 19.8602 L 1.8207 20.6462 L 1.2233 21.9673 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 47.5703 -83.2248 L 44.6283 -76.4913 L 44.3773 -76.3383 L 42.6997 -76.5029 L 40.9149 -76.8734 L 39.9075 -77.219 L 37.9255 -76.6186 L 35.7101 -73.3575 L 35.8822 -71.2937 L 36.3659 -70.7497 L 37.3067 -69.4144 L 38.3478 -67.4629 L 38.2981 -67.1732 L 33.1223 -61.9572 L 32.833 -61.9052 L 31.3282 -62.6647 L 29.7978 -63.6549 L 28.9832 -64.3411 L 26.9181 -64.4972 L 23.6743 -62.2566 L 23.0892 -60.27 L 23.3438 -59.588 L 23.7387 -58.0031 L 24.0046 -55.8072 L 23.8535 -55.555 L 17.143 -52.561 L 16.8544 -52.617 L 15.7256 -53.8688 L 14.6562 -55.345 L 14.1445 -56.2791 L 12.2753 -57.1707 L 8.4412 -56.2532 L 7.178 -54.6121 L 7.1043 -53.1648 L 6.7263 -51.1883 L 6.4193 -50.12 L 6.1873 -49.9394 L -1.1516 -49.5717 L -1.4005 -49.7282 L -2.0009 -51.3032 L -2.4647 -53.0661 L -2.6044 -54.1219 L -4.0253 -55.6285 L -7.932 -56.158 L -9.7027 -55.0841 L -9.9741 -54.4086 L -10.7501 -52.9713 L -12.0329 -51.1694 L -12.3144 -51.0848 L -19.2906 -53.393 L -19.4662 -53.6288 L -19.4571 -55.3144 L -19.2527 -57.1257 L -19.0016 -58.1608 L -19.7824 -60.0789 L -23.2339 -61.984 L -25.273 -61.6222 L -25.7701 -61.0903 L -27.0129 -60.0304 L -28.86 -58.8136 L -29.1531 -58.8364 L -34.8244 -63.5088 L -34.9029 -63.7922 L -34.2855 -65.3606 L -33.4406 -66.9758 L -32.8326 -67.8502 L -32.8677 -69.9209 L -35.398 -72.9442 L -37.4301 -73.3434 L -38.0857 -73.0271 L -39.6274 -72.4876 L -41.7894 -72.0203 L -42.0544 -72.1474 L -45.6549 -78.553 L -45.6257 -78.8456 L -44.4834 -80.0851 L -43.1122 -81.286 L -42.2293 -81.8817 L -41.514 -83.8253 L -42.7813 -87.5584 L -44.532 -88.6648 L -45.2576 -88.6066 L -46.8901 -88.6606 L -49.0749 -89.0057 L -49.2761 -89.2201 L -50.3195 -96.4937 L -50.1866 -96.756 L -48
|
||
|
|
</g>
|
||
|
|
<g id='z:4.6' inkscape:groupmode='layer' inkscape:label='Layer 11, z:4.6' transform='translate(280.0, 8204.5845)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate4.6' fill='#000' stroke='none' y='15' >Layer 11, z:4.6</text>
|
||
|
|
<path d='M 0.9091 22.107 L -6.3078 21.2074 L -6.5277 21.0107 L -6.723 20.0704 L -6.8191 19.1476 L -6.7639 17.9307 L -6.1455 15.7984 L -6.6405 14.4526 L -10.4265 12.011 L -11.8566 12.1152 L -13.403 13.4586 L -14.276 13.9596 L -15.0409 14.2601 L -16.4471 14.6134 L -16.7171 14.4942 L -20.5135 8.291 L -20.4967 7.9964 L -19.8834 7.2575 L -19.2218 6.607 L -18.236 5.8914 L -16.1834 5.0454 L -15.4398 3.8193 L -15.8914 -0.663 L -16.8645 -1.7162 L -18.879 -2.0876 L -19.815 -2.4577 L -20.5269 -2.8684 L -21.6798 -3.7476 L -21.755 -4.033 L -19.2721 -10.8687 L -19.0313 -11.0393 L -18.0712 -11.0205 L -17.1502 -10.9088 L -15.976 -10.5842 L -14.0348 -9.5069 L -12.6126 -9.6901 L -9.3897 -12.8378 L -9.1731 -14.2553 L -10.1387 -16.0617 L -10.4329 -17.0243 L -10.591 -18.3263 L -10.5872 -19.2865 L -10.4109 -19.5232 L -3.5185 -21.8441 L -3.2349 -21.7622 L -2.651 -20.9998 L -2.1641 -20.2101 L -1.6858 -19.0897 L -1.3177 -16.9003 L -0.2878 -15.9026 L 4.1826 -15.3454 L 5.4259 -16.0598 L 6.44 -18.2829 L 7.3641 -19.3739 L 8.4778 -20.3023 L 8.7728 -20.3121 L 14.8847 -16.3704 L 14.9974 -16.0977 L 14.7655 -15.1658 L 14.4516 -14.2927 L 13.8739 -13.2203 L 12.3916 -11.5674 L 12.2537 -10.1401 L 14.6053 -6.2976 L 15.939 -5.771 L 17.9151 -6.3104 L 18.9191 -6.3831 L 19.7386 -6.3219 L 21.1588 -6.0301 L 21.3504 -5.8056 L 22.0793 1.4305 L 21.9364 1.6887 L 21.0632 2.0884 L 20.1849 2.3873 L 18.9862 2.6043 L 16.7698 2.476 L 15.5679 3.258 L 14.0299 7.4924 L 14.4498 8.8635 L 16.3915 10.3469 L 17.2495 11.4906 L 17.9068 12.783 L 17.8507 13.0727 L 12.6478 18.1542 L 12.3568 18.2035 L 11.5 17.77 L 10.7186 17.2697 L 9.8016 16.4678 L 8.52 14.6549 L 7.1592 14.2028 L 2.8897 15.6405 L 2.0795 16.8236 L 2.1657 18.8702 L 2.0132 19.8651 L 1.7712 20.6505 L 1.1706 21.9702 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 6.2368 -49.9456 L -1.1018 -49.5705 L -1.3508 -49.7268 L -1.7641 -50.7586 L -2.3396 -52.6868 L -2.5591 -54.1193 L -3.9815 -55.6245 L -7.8887 -56.1502 L -9.6584 -55.0745 L -10.0731 -54.0935 L -11.3133 -52.0434 L -11.9846 -51.1575 L -12.2661 -51.0726 L -19.2446 -53.3739 L -19.4203 -53.6096 L -19.4129 -55.2952 L -19.2731 -56.727 L -18.9603 -58.142 L -19.7429 -60.0594 L -23.1963 -61.961 L -25.2351 -61.5972 L -26.5954 -60.2992 L -28.8193 -58.7851 L -29.1124 -58.8076 L -34.7883 -63.4744 L -34.8671 -63.7577 L -34.2512 -65.3267 L -33.6037 -66.6114 L -32.8008 -67.8178 L -32.8379 -69.8884 L -35.3712 -72.9092 L -37.4037 -73.3064 L -38.3711 -72.8609 L -40.1094 -72.3121 L -41.7617 -71.979 L -42.0269 -72.1059 L -45.6337 -78.5079 L -45.6048 -78.8005 L -44.8654 -79.6304 L -42.822 -81.4438 L -42.2114 -81.84 L -41.498 -83.7842 L -42.769 -87.5161 L -44.5208 -88.6208 L -45.5838 -88.5548 L -47.4029 -88.671 L -49.064 -88.9572 L -49.2654 -89.1714 L -50.316 -96.444 L -50.1834 -96.7064 L -48.1846 -97.6538 L -46.6336 -98.166 L -45.9211 -98.3148 L -44.5535 -99.8701 L -44.3906 -103.8091 L -45.625 -105.4719 L -46.6401 -105.7945 L -48.7959 -106.8402 L -49.7399 -107.4269 L -49.8504 -107.6993 L -48.2028 -114.8604 L -47.9844 -115.0571 L -46.3053 -115.2052 L -44.8667 -115.1982 L -43.4289 -115.0172 L -41.5919 -115.9734 L -40.017 -119.5876 L -40.5674 -121.5841 L -41.3974 -122.2515 L -43.0299 -124.0054 L -43.6982 -124.8935 L -43.7028 -125.1875 L -39.5796 -131.2698 L -39.3048 -131.3743 L -37.6857 -130.9059 L -36.3468 -130.3796 L -35.0714 -129.6915 L -33.013 -129.9195 L -30.2389 -132.7207 L -30.0309 -134.7812 L -30.5637 -135.7034 L -31.2706 -137.3836 L -31.7548 -138.9981 L -31.6529 -139.2739 L -
|
||
|
|
</g>
|
||
|
|
<g id='z:5.0' inkscape:groupmode='layer' inkscape:label='Layer 12, z:5.0' transform='translate(280.0, 8885.1749)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate5.0' fill='#000' stroke='none' y='15' >Layer 12, z:5.0</text>
|
||
|
|
<path d='M -21.7518 -4.0504 L -19.2634 -10.8841 L -19.0225 -11.0546 L -18.0624 -11.035 L -17.1414 -10.9226 L -15.9676 -10.597 L -14.0272 -9.5182 L -12.6048 -9.7001 L -9.3794 -12.8453 L -9.1617 -14.2626 L -10.1259 -16.0699 L -10.4193 -17.0327 L -10.5764 -18.3347 L -10.5717 -19.295 L -10.3953 -19.5316 L -3.501 -21.8469 L -3.2175 -21.7648 L -2.6342 -21.002 L -2.1479 -20.2118 L -1.6705 -19.0911 L -1.3042 -16.9014 L -0.2751 -15.9028 L 4.1948 -15.342 L 5.4387 -16.0555 L 6.4546 -18.2778 L 7.3796 -19.368 L 8.4941 -20.2955 L 8.789 -20.3051 L 14.8978 -16.3585 L 15.0103 -16.0857 L 14.7776 -15.154 L 14.463 -14.2812 L 13.8844 -13.2092 L 12.4009 -11.5575 L 12.2618 -10.1303 L 14.6103 -6.2859 L 15.9437 -5.7583 L 17.9202 -6.2961 L 18.9242 -6.3679 L 20.2285 -6.2313 L 21.1637 -6.0131 L 21.355 -5.7885 L 22.0782 1.4482 L 21.9351 1.7063 L 21.0616 2.1052 L 20.183 2.4035 L 18.9842 2.6195 L 16.7679 2.4894 L 15.5653 3.2705 L 14.0239 7.5036 L 14.4427 8.875 L 16.0955 10.085 L 16.7777 10.8252 L 17.2403 11.5044 L 17.8966 12.7973 L 17.8403 13.087 L 12.6333 18.1644 L 12.3423 18.2134 L 11.4858 17.7792 L 10.7048 17.2783 L 9.7884 16.4757 L 8.5083 14.6617 L 7.1478 14.2086 L 2.8772 15.6428 L 2.0661 16.8253 L 2.1506 18.8719 L 1.9973 19.8667 L 1.5738 21.1079 L 1.153 21.9711 L 0.8914 22.1077 L -6.3247 21.2024 L -6.5445 21.0054 L -6.7391 20.0651 L -6.8344 19.1422 L -6.7782 17.9253 L -6.1582 15.7935 L -6.6521 14.4473 L -10.4361 12.0026 L -11.8663 12.1057 L -13.4137 13.4479 L -14.2871 13.9482 L -15.0523 14.2481 L -16.4588 14.6002 L -16.7287 14.4808 L -20.5201 8.2746 L -20.5031 7.98 L -19.8892 7.2416 L -19.2271 6.5916 L -18.2407 5.8768 L -16.1874 5.0324 L -15.4429 3.8069 L -15.8908 -0.6757 L -16.8632 -1.7297 L -18.8773 -2.1027 L -19.813 -2.4736 L -20.9289 -3.1626 L -21.6768 -3.7649 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -49.2619 -89.1551 L -50.3148 -96.4274 L -50.1823 -96.6899 L -48.6704 -97.435 L -46.9586 -98.0618 L -45.9205 -98.2997 L -44.5535 -99.8554 L -44.3919 -103.7944 L -45.6268 -105.4569 L -46.9993 -105.9221 L -48.7981 -106.8241 L -49.7424 -107.4105 L -49.853 -107.6829 L -48.2077 -114.8445 L -47.9893 -115.0413 L -46.3103 -115.19 L -44.4878 -115.1561 L -43.4338 -115.0029 L -41.5971 -115.9597 L -40.0235 -119.5744 L -40.5745 -121.5707 L -41.1505 -122.0158 L -42.3221 -123.154 L -43.7064 -124.8791 L -43.7111 -125.1731 L -39.5899 -131.2567 L -39.3152 -131.3614 L -37.6959 -130.8935 L -36.0086 -130.2035 L -35.0812 -129.6799 L -33.0229 -129.9086 L -30.2497 -132.7107 L -30.0423 -134.7713 L -30.7433 -136.0397 L -31.1 -136.8789 L -31.7676 -138.9876 L -31.6658 -139.2634 L -25.6253 -143.4475 L -25.3313 -143.4459 L -23.9903 -142.4246 L -22.6663 -141.1717 L -21.9906 -140.3485 L -19.9887 -139.8182 L -16.3905 -141.4293 L -15.4528 -143.2758 L -15.5786 -143.9928 L -15.6777 -145.6232 L -15.5385 -147.8307 L -15.3439 -148.0511 L -8.1998 -149.7705 L -7.9263 -149.6628 L -7.0448 -148.2261 L -6.2628 -146.5795 L -5.9301 -145.5677 L -4.2549 -144.3501 L -0.3177 -144.5526 L 1.2237 -145.9357 L 1.3654 -146.6497 L 1.862 -148.2058 L 2.7892 -150.2139 L 3.0503 -150.3492 L 10.3331 -149.3718 L 10.5493 -149.1725 L 10.9553 -146.513 L 10.9313 -144.6328 L 12.0535 -142.8923 L 15.798 -141.6588 L 17.735 -142.3917 L 18.558 -143.5845 L 19.9178 -145.0678 L 20.7403 -145.8155 L 21.0325 -145.8473 L 27.4705 -142.305 L 27.6 -142.0411 L 27.2835 -140.3855 L 26.7522 -138.6419 L 26.3164 -137.67 L 26.7341 -135.6416 L 29.7801 -133.1388 L 31.851 -133.1225 L 33.0493 -133.9375 L 34.3274 -134.5979
|
||
|
|
</g>
|
||
|
|
<g id='z:5.4' inkscape:groupmode='layer' inkscape:label='Layer 13, z:5.4' transform='translate(280.0, 9565.7652)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate5.4' fill='#000' stroke='none' y='15' >Layer 13, z:5.4</text>
|
||
|
|
<path d='M 0.9091 22.107 L -6.3078 21.2074 L -6.5277 21.0107 L -6.723 20.0704 L -6.8191 19.1476 L -6.7639 17.9307 L -6.1455 15.7984 L -6.6405 14.4526 L -10.4265 12.011 L -11.8566 12.1152 L -13.403 13.4586 L -14.276 13.9596 L -15.0409 14.2601 L -16.4471 14.6134 L -16.7171 14.4942 L -20.5135 8.291 L -20.4967 7.9964 L -19.8834 7.2575 L -19.2218 6.607 L -18.236 5.8914 L -16.1834 5.0454 L -15.4398 3.8193 L -15.8914 -0.663 L -16.8645 -1.7162 L -18.879 -2.0876 L -19.815 -2.4577 L -20.5269 -2.8684 L -21.6798 -3.7476 L -21.755 -4.033 L -19.2721 -10.8687 L -19.0313 -11.0393 L -18.0712 -11.0205 L -17.1502 -10.9088 L -15.976 -10.5842 L -14.0348 -9.5069 L -12.6126 -9.6901 L -9.3897 -12.8378 L -9.1731 -14.2553 L -10.1387 -16.0617 L -10.4329 -17.0243 L -10.591 -18.3263 L -10.5872 -19.2865 L -10.4109 -19.5232 L -3.5185 -21.8441 L -3.2349 -21.7622 L -2.651 -20.9998 L -2.1641 -20.2101 L -1.6858 -19.0897 L -1.3177 -16.9003 L -0.2878 -15.9026 L 4.1826 -15.3454 L 5.4259 -16.0598 L 6.44 -18.2829 L 7.3641 -19.3739 L 8.4778 -20.3023 L 8.7728 -20.3121 L 14.8847 -16.3704 L 14.9974 -16.0977 L 14.7655 -15.1658 L 14.4516 -14.2927 L 13.8739 -13.2203 L 12.3916 -11.5674 L 12.2537 -10.1401 L 14.6053 -6.2976 L 15.939 -5.771 L 17.9151 -6.3104 L 18.9191 -6.3831 L 19.7386 -6.3219 L 21.1588 -6.0301 L 21.3504 -5.8056 L 22.0793 1.4305 L 21.9364 1.6887 L 21.0632 2.0884 L 20.1849 2.3873 L 18.9862 2.6043 L 16.7698 2.476 L 15.5679 3.258 L 14.0299 7.4924 L 14.4498 8.8635 L 16.3915 10.3469 L 17.2495 11.4906 L 17.9068 12.783 L 17.8507 13.0727 L 12.6478 18.1542 L 12.3568 18.2035 L 11.5 17.77 L 10.7186 17.2697 L 9.8016 16.4678 L 8.52 14.6549 L 7.1592 14.2028 L 2.8897 15.6405 L 2.0795 16.8236 L 2.1657 18.8702 L 2.0132 19.8651 L 1.7712 20.6505 L 1.1706 21.9702 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 46.4368 -119.6968 L 48.8058 -112.741 L 48.7237 -112.4587 L 46.9331 -111.1602 L 45.5026 -110.3717 L 44.8295 -110.0945 L 43.7711 -108.3144 L 44.3347 -104.4125 L 45.8536 -103.0048 L 46.9107 -102.8743 L 48.6775 -102.4259 L 50.2577 -101.8393 L 50.4164 -101.5918 L 50.1127 -94.2499 L 49.9341 -94.0164 L 47.7953 -93.4524 L 46.1766 -93.2339 L 45.4488 -93.2185 L 43.8188 -91.941 L 42.9349 -88.099 L 43.8427 -86.2376 L 45.4635 -85.2845 L 47.5283 -83.5599 L 47.5869 -83.2718 L 44.6515 -76.5354 L 44.4006 -76.3821 L 42.2025 -76.6289 L 40.6142 -77.0099 L 39.93 -77.2585 L 37.9486 -76.6561 L 35.7364 -73.3928 L 35.9106 -71.3292 L 36.6038 -70.5206 L 37.6074 -68.9989 L 38.38 -67.5008 L 38.3305 -67.211 L 33.1599 -61.9899 L 32.8706 -61.9376 L 31.87 -62.4217 L 29.5666 -63.8908 L 29.0184 -64.3698 L 26.9532 -64.5238 L 23.7116 -62.2801 L 23.1285 -60.2929 L 23.6841 -58.4966 L 24.0482 -55.831 L 23.8974 -55.5786 L 17.1899 -52.5779 L 16.9012 -52.6337 L 15.7712 -53.8843 L 14.5259 -55.6485 L 14.1878 -56.2931 L 12.3176 -57.1828 L 8.4844 -56.2616 L 7.2228 -54.6192 L 7.092 -52.7435 L 6.4686 -50.1264 L 6.2368 -49.9456 L -1.1018 -49.5705 L -1.3508 -49.7268 L -1.9527 -51.3012 L -2.4766 -53.3961 L -2.5591 -54.1193 L -3.9815 -55.6245 L -7.8887 -56.1502 L -9.6583 -55.0745 L -10.0731 -54.0935 L -10.988 -52.5169 L -11.9846 -51.1575 L -12.2661 -51.0726 L -19.2446 -53.3739 L -19.4203 -53.6096 L -19.433 -54.721 L -19.2731 -56.727 L -18.9603 -58.142 L -19.7429 -60.0594 L -23.1963 -61.961 L -25.2351 -61.5972 L -25.9762 -60.8323 L -27.3988 -59.6926 L -28.8193 -58.7851 L -29.1124 -58.8076 L -34.7883 -63.4744 L -34.8671 -63.7577 L -34.0282 -65.8043 L -33.2271 -67.2278 L -32.8008 -67.8178 L -32.8379 -69.8884 L
|
||
|
|
</g>
|
||
|
|
<g id='z:5.8' inkscape:groupmode='layer' inkscape:label='Layer 14, z:5.8' transform='translate(280.0, 10246.3556)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate5.8' fill='#000' stroke='none' y='15' >Layer 14, z:5.8</text>
|
||
|
|
<path d='M 0.9621 22.1047 L -6.2569 21.2225 L -6.4772 21.0262 L -6.6748 20.0865 L -6.7731 19.1639 L -6.7208 17.9469 L -6.1076 15.8131 L -6.6058 14.4685 L -10.3976 12.0359 L -11.8275 12.1436 L -13.3706 13.4907 L -14.2424 13.9938 L -15.0066 14.2962 L -16.412 14.6528 L -16.6823 14.5343 L -20.4935 8.3402 L -20.4775 8.0455 L -19.8659 7.3051 L -19.2059 6.6531 L -18.2218 5.9351 L -16.1712 5.0842 L -15.4306 3.8563 L -15.8929 -0.6249 L -16.8686 -1.6757 L -18.8839 -2.0423 L -19.8208 -2.4101 L -20.5337 -2.8191 L -21.6887 -3.6955 L -21.7646 -3.9807 L -19.2981 -10.8224 L -19.0577 -10.9936 L -18.0976 -10.9771 L -17.1763 -10.8676 L -16.0014 -10.5459 L -14.0576 -9.4732 L -12.6358 -9.6597 L -9.4205 -12.8152 L -9.2073 -14.2332 L -10.1772 -16.0374 L -10.4737 -16.9992 L -10.635 -18.3008 L -10.6334 -19.2611 L -10.4577 -19.4982 L -3.5709 -21.8356 L -3.2872 -21.7544 L -2.7014 -20.9934 L -2.2126 -20.2048 L -1.7316 -19.0856 L -1.3583 -16.8971 L -0.326 -15.9018 L 4.1457 -15.3554 L 5.3873 -16.0728 L 6.3961 -18.2983 L 7.3176 -19.3915 L 8.4291 -20.3226 L 8.724 -20.3331 L 14.8453 -16.4061 L 14.9587 -16.1336 L 14.729 -15.2012 L 14.4172 -14.3274 L 13.8421 -13.2535 L 12.3638 -11.5971 L 12.2293 -10.1695 L 14.5901 -6.3327 L 15.9251 -5.8092 L 17.8999 -6.3534 L 18.9037 -6.4285 L 19.7234 -6.3693 L 21.1443 -6.0808 L 21.3364 -5.8568 L 22.0827 1.3775 L 21.9404 1.6361 L 21.0682 2.0378 L 20.1906 2.3389 L 18.9924 2.5588 L 16.7757 2.4357 L 15.5757 3.2207 L 14.0479 7.4587 L 14.471 8.8288 L 16.4163 10.3075 L 17.277 11.4492 L 17.9374 12.74 L 17.882 13.0298 L 12.6913 18.1238 L 12.4005 18.1738 L 11.5426 17.7423 L 10.76 17.2439 L 9.8411 16.4442 L 8.5552 14.6344 L 7.1933 14.1856 L 2.9273 15.6335 L 2.1199 16.8185 L 2.211 18.8649 L 2.0608 19.8602 L 1.8207 20.6462 L 1.2233 21.9673 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 6.1873 -49.9394 L -1.1516 -49.5717 L -1.4005 -49.7282 L -1.8127 -50.7604 L -2.3864 -52.6892 L -2.6044 -54.1219 L -4.0253 -55.6285 L -7.932 -56.158 L -9.7027 -55.0841 L -10.1185 -54.1035 L -11.3607 -52.0546 L -12.0329 -51.1694 L -12.3144 -51.0848 L -19.2906 -53.393 L -19.4662 -53.6288 L -19.4571 -55.3144 L -19.3159 -56.746 L -19.0016 -58.1608 L -19.7824 -60.0789 L -23.2339 -61.984 L -25.273 -61.6222 L -26.6347 -60.3255 L -28.86 -58.8136 L -29.1531 -58.8364 L -34.8244 -63.5088 L -34.9029 -63.7922 L -34.2855 -65.3606 L -33.6367 -66.6446 L -32.8326 -67.8502 L -32.8677 -69.9209 L -35.398 -72.9442 L -37.4301 -73.3434 L -38.3979 -72.8989 L -40.1367 -72.3517 L -41.7894 -72.0202 L -42.0544 -72.1474 L -45.6549 -78.553 L -45.6257 -78.8456 L -44.8855 -79.6747 L -42.8404 -81.4861 L -42.2293 -81.8817 L -41.514 -83.8253 L -42.7813 -87.5584 L -44.532 -88.6648 L -45.595 -88.5999 L -47.4141 -88.7178 L -49.0749 -89.0057 L -49.2761 -89.22 L -50.3195 -96.4937 L -50.1866 -96.756 L -48.1869 -97.7014 L -46.6354 -98.2121 L -45.9227 -98.3602 L -44.5536 -99.9141 L -44.3868 -103.8529 L -45.6196 -105.517 L -46.6343 -105.8405 L -48.7891 -106.8884 L -49.7326 -107.476 L -49.8428 -107.7486 L -48.1881 -114.908 L -47.9695 -115.1045 L -46.2903 -115.251 L -44.8517 -115.2425 L -43.414 -115.0601 L -41.5761 -116.0145 L -39.9976 -119.6271 L -40.546 -121.6242 L -41.3753 -122.2924 L -43.0061 -124.0479 L -43.6736 -124.9367 L -43.6779 -125.2306 L -39.5487 -131.3088 L -39.2738 -131.4131 L -37.6551 -130.9431 L -36.3167 -130.4155 L -35.042 -129.7261 L -32.9834 -129.9521 L -30.2065 -132.7506 L -29.9965 -134.8108 L -30.5284 -135.7335 L -31.2337 -137.4144 L -31.7162 -139.0295 L -31.6141 -1
|
||
|
|
</g>
|
||
|
|
<g id='z:6.2' inkscape:groupmode='layer' inkscape:label='Layer 15, z:6.2' transform='translate(280.0, 10926.946)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate6.2' fill='#000' stroke='none' y='15' >Layer 15, z:6.2</text>
|
||
|
|
<path d='M 8.6426 -20.3678 L 14.7796 -16.4653 L 14.8941 -16.1933 L 14.6681 -15.26 L 14.3598 -14.3849 L 13.9123 -13.4976 L 12.3173 -11.6465 L 12.1885 -10.2183 L 14.5647 -6.391 L 15.9017 -5.8729 L 17.7578 -6.3983 L 18.5462 -6.4996 L 19.262 -6.4887 L 20.1831 -6.3768 L 21.1198 -6.1653 L 21.3127 -5.9421 L 22.088 1.2892 L 21.9467 1.5483 L 20.6169 2.1261 L 19.227 2.4615 L 16.7853 2.3686 L 15.5884 3.1583 L 14.0776 7.4024 L 14.5062 8.7708 L 16.0742 9.8943 L 16.645 10.4476 L 17.3227 11.3799 L 17.9882 12.6681 L 17.934 12.9582 L 12.7637 18.0729 L 12.4731 18.124 L 11.6134 17.696 L 10.5214 16.9698 L 9.7936 16.2744 L 8.6136 14.6001 L 7.2499 14.1567 L 2.9898 15.6216 L 2.1872 16.8099 L 2.2774 19.0282 L 2.0398 20.223 L 1.7258 21.096 L 1.3112 21.9622 L 1.0505 22.1006 L -6.1719 21.2473 L -6.3931 21.0519 L -6.6605 19.6269 L -6.6782 18.1972 L -6.0443 15.8374 L -6.5479 14.4948 L -10.3494 12.0774 L -11.7788 12.1908 L -13.4569 13.6444 L -14.1863 14.0507 L -14.9493 14.3561 L -16.3532 14.7183 L -16.624 14.6009 L -20.4599 8.4221 L -20.4451 8.1274 L -19.8365 7.3845 L -19.1791 6.7299 L -18.3909 6.1246 L -16.1507 5.1488 L -15.415 3.918 L -15.8952 -0.5613 L -16.8751 -1.6082 L -18.7753 -1.9401 L -19.5297 -2.1909 L -20.1698 -2.5114 L -20.9511 -3.0118 L -21.7033 -3.6088 L -21.7803 -3.8936 L -19.3412 -10.7451 L -19.1015 -10.9173 L -17.6527 -10.8609 L -16.255 -10.56 L -14.0953 -9.4169 L -12.6743 -9.6091 L -9.4717 -12.7774 L -9.2641 -14.1962 L -10.1894 -15.8888 L -10.4636 -16.6349 L -10.6696 -17.769 L -10.7103 -19.2183 L -10.5356 -19.4562 L -3.6582 -21.8211 L -3.3741 -21.741 L -2.7854 -20.9824 L -2.1165 -19.8543 L -1.7625 -18.912 L -1.4259 -16.8915 L -0.3896 -15.9004 L 4.0843 -15.3718 L 5.323 -16.0942 L 6.2042 -18.1319 L 6.6851 -18.8144 L 7.24 -19.4206 L 8.3477 -20.3561 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -29.2208 -58.8845 L -34.8844 -63.5663 L -34.9624 -63.8497 L -34.3425 -65.4171 L -33.495 -67.031 L -32.8854 -67.9044 L -32.9171 -69.9751 L -35.4425 -73.0025 L -37.4739 -73.4051 L -38.13 -73.0898 L -39.6727 -72.5529 L -41.8354 -72.0891 L -42.1002 -72.2167 L -45.6901 -78.6283 L -45.6605 -78.9207 L -44.5162 -80.1584 L -43.1429 -81.3571 L -42.259 -81.9513 L -41.5406 -83.8937 L -42.8017 -87.6289 L -44.5506 -88.7382 L -45.9986 -88.6804 L -49.0929 -89.0866 L -49.2938 -89.3012 L -50.3252 -96.5766 L -50.1919 -96.8387 L -47.7417 -97.9497 L -45.9253 -98.4358 L -44.5537 -99.9875 L -44.3804 -103.926 L -45.6104 -105.5922 L -46.3077 -105.8012 L -47.8094 -106.4437 L -49.7202 -107.5579 L -49.8299 -107.8307 L -48.1635 -114.9873 L -47.9445 -115.1835 L -45.2584 -115.3345 L -43.3891 -115.1316 L -41.5496 -116.083 L -39.9652 -119.693 L -40.5103 -121.6909 L -41.085 -122.1377 L -42.9664 -124.1187 L -43.6324 -125.0086 L -43.6363 -125.3025 L -39.4971 -131.3739 L -39.222 -131.4778 L -37.6041 -131.0051 L -35.9189 -130.3101 L -34.993 -129.7838 L -32.934 -130.0064 L -30.1526 -132.8003 L -29.9391 -134.8602 L -30.3136 -135.4844 L -30.9905 -136.9709 L -31.6519 -139.0816 L -31.5493 -139.3571 L -25.4963 -143.5233 L -25.2024 -143.5208 L -23.1156 -141.8227 L -21.8709 -140.4135 L -19.8705 -139.8773 L -16.2676 -141.4777 L -15.3244 -143.3214 L -15.4481 -144.0388 L -15.5423 -145.6694 L -15.3966 -147.8765 L -15.2014 -148.0964 L -8.0522 -149.7946 L -7.779 -149.6861 L -6.9018 -148.2467 L -6.1246 -146.5978 L -5.795 -145.5851 L -4.1234 -144.3625 L -0.1856 -144.5533 L 1.3599 -145.9318 L 1.5037 -146.6454 L 2.4384 -149.2126 L 2.9381 -150.2054 L 3.1995 -150.3399 L 10.4794 -149.3409 L
|
||
|
|
</g>
|
||
|
|
<g id='z:6.6' inkscape:groupmode='layer' inkscape:label='Layer 16, z:6.6' transform='translate(280.0, 11607.5364)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate6.6' fill='#000' stroke='none' y='15' >Layer 16, z:6.6</text>
|
||
|
|
<path d='M 1.1743 22.0943 L -6.0528 21.2815 L -6.2751 21.0874 L -6.4817 20.1496 L -6.6021 18.8436 L -6.5761 18.2343 L -5.9555 15.871 L -6.4666 14.5312 L -10.2816 12.1352 L -11.7104 12.2565 L -13.3803 13.7195 L -13.8114 13.9804 L -14.8686 14.4395 L -16.2705 14.8096 L -16.5419 14.6937 L -20.4124 8.5365 L -20.3992 8.2417 L -19.7948 7.4955 L -18.8489 6.5871 L -18.0121 6.0276 L -16.1216 5.2392 L -15.3928 4.0043 L -15.8981 -0.4723 L -16.8838 -1.5137 L -19.0688 -1.9071 L -20.1835 -2.3984 L -20.9676 -2.8944 L -21.7231 -3.4872 L -21.8017 -3.7716 L -19.4011 -10.6366 L -19.1623 -10.8101 L -17.7132 -10.7618 L -16.3138 -10.4688 L -14.1478 -9.3378 L -12.7279 -9.538 L -9.543 -12.7241 L -9.3434 -14.1441 L -10.3981 -16.0977 L -10.6364 -16.8979 L -10.7689 -17.7089 L -10.8178 -19.158 L -10.6444 -19.3968 L -3.7803 -21.8002 L -3.4958 -21.7217 L -2.9028 -20.9664 L -2.4064 -20.1826 L -1.9867 -19.2818 L -1.5204 -16.8832 L -0.4786 -15.8979 L 3.9981 -15.3944 L 5.2328 -16.1237 L 5.9692 -17.9065 L 6.3778 -18.5885 L 6.8295 -19.1438 L 7.4876 -19.7978 L 8.2336 -20.4025 L 8.5284 -20.4158 L 14.6871 -16.5478 L 14.8031 -16.2764 L 14.4336 -14.8744 L 13.8365 -13.5753 L 12.2519 -11.7152 L 12.1311 -10.2864 L 14.5286 -6.4724 L 15.8686 -5.9618 L 17.7216 -6.4977 L 18.5095 -6.6034 L 19.6612 -6.5583 L 21.0849 -6.2835 L 21.2791 -6.0613 L 22.0948 1.1655 L 21.955 1.4254 L 21.0867 1.8354 L 19.8403 2.2435 L 19.2405 2.3538 L 16.7983 2.2746 L 15.6058 3.071 L 14.1188 7.3234 L 14.555 8.6894 L 16.3529 9.9919 L 16.7032 10.3542 L 17.3861 11.2827 L 18.0588 12.5671 L 18.0062 12.8575 L 12.8647 18.0011 L 12.5743 18.0538 L 11.7123 17.6306 L 10.6162 16.9105 L 10.156 16.5103 L 8.6952 14.5516 L 7.3291 14.1158 L 3.0772 15.6046 L 2.2813 16.7973 L 2.3839 19.0151 L 2.3191 19.5148 L 2.0188 20.6277 L 1.4341 21.9544 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 3.3156 -150.3324 L 10.5932 -149.3166 L 10.8083 -149.1161 L 11.1025 -147.4564 L 11.2273 -145.6379 L 11.1664 -144.5746 L 12.2794 -142.8281 L 16.0173 -141.5749 L 17.9581 -142.2976 L 18.7874 -143.4861 L 20.1551 -144.9622 L 20.9814 -145.7055 L 21.2738 -145.7358 L 27.693 -142.1596 L 27.8212 -141.895 L 27.496 -140.2411 L 26.9554 -138.5003 L 26.5146 -137.5308 L 26.9215 -135.5002 L 29.9543 -132.9814 L 32.0251 -132.9541 L 32.6131 -133.3832 L 34.0327 -134.1912 L 36.0753 -135.0398 L 36.3589 -134.9624 L 41.0528 -129.3088 L 41.0767 -129.0158 L 40.176 -127.5911 L 39.0431 -126.163 L 38.2818 -125.4182 L 37.9277 -123.3778 L 39.8458 -119.9334 L 41.7669 -119.16 L 42.4702 -119.3477 L 44.0858 -119.5883 L 46.2971 -119.6417 L 46.5336 -119.4671 L 48.8682 -112.4997 L 48.7846 -112.2178 L 47.4301 -111.2146 L 45.8578 -110.2923 L 44.8788 -109.8728 L 43.8116 -108.098 L 44.3559 -104.1934 L 45.8679 -102.7782 L 47.3014 -102.5656 L 50.2661 -101.5909 L 50.4236 -101.3426 L 50.0836 -94.0024 L 49.9039 -93.7697 L 47.2898 -93.1338 L 45.4147 -92.994 L 43.7784 -91.7246 L 42.8755 -87.887 L 43.7741 -86.0212 L 44.4204 -85.6861 L 45.7764 -84.7755 L 47.4465 -83.3253 L 47.5036 -83.0369 L 44.535 -76.3151 L 44.2833 -76.1631 L 41.6161 -76.5144 L 39.8171 -77.0615 L 37.8327 -76.4689 L 35.6045 -73.2166 L 35.7684 -71.1521 L 36.25 -70.6062 L 37.7301 -68.3098 L 38.2189 -67.3116 L 38.168 -67.0221 L 32.9717 -61.8266 L 32.6821 -61.7757 L 31.1803 -62.5411 L 29.6539 -63.5375 L 28.842 -64.2268 L 26.7776 -64.3911 L 23.5249 -62.1634 L 22.932 -60.1791 L 23.3807 -58.8011 L 23.6587 -57.3896 L 23.8297 -55.7127 L 23.6776 -55.4611 L 16.9553 -52.4936 L 16.6669 -52.5508 L 14.9325 -54.6074 L 1
|
||
|
|
</g>
|
||
|
|
<g id='z:7.0' inkscape:groupmode='layer' inkscape:label='Layer 17, z:7.0' transform='translate(280.0, 12288.1267)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate7.0' fill='#000' stroke='none' y='15' >Layer 17, z:7.0</text>
|
||
|
|
<path d='M 1.3333 22.0853 L -5.8994 21.3245 L -6.1231 21.1319 L -6.3364 20.1957 L -6.4501 19.2749 L -6.4447 18.2811 L -5.841 15.9134 L -6.3618 14.5773 L -10.1939 12.2088 L -11.6218 12.3405 L -13.142 13.7133 L -14.0052 14.231 L -15.2306 14.6985 L -16.1634 14.9263 L -16.4356 14.8124 L -20.3504 8.6832 L -20.3393 8.3883 L -19.7403 7.6378 L -19.0913 6.9748 L -18.5394 6.5188 L -17.9682 6.1571 L -16.0834 5.3551 L -15.3635 4.115 L -15.901 -0.3578 L -16.8942 -1.3921 L -18.9154 -1.7247 L -19.8584 -2.0768 L -20.578 -2.4738 L -21.7476 -3.3307 L -21.8282 -3.6145 L -19.4771 -10.4966 L -19.2396 -10.6718 L -18.2793 -10.6715 L -17.3563 -10.5775 L -16.6557 -10.4303 L -16.0169 -10.2092 L -14.2146 -9.2357 L -12.7962 -9.446 L -9.6344 -12.655 L -9.445 -14.0764 L -10.4451 -15.864 L -10.6756 -16.4996 L -10.8332 -17.1979 L -10.9408 -18.1194 L -10.9554 -19.0796 L -10.7837 -19.3196 L -3.9372 -21.7723 L -3.6521 -21.6959 L -2.778 -20.5391 L -2.3705 -19.8255 L -2.0045 -18.8878 L -1.642 -16.8718 L -0.5931 -15.894 L 3.8872 -15.4227 L 5.1165 -16.1609 L 5.8906 -18.0574 L 6.2437 -18.6338 L 6.6915 -19.1924 L 7.3448 -19.8511 L 8.0864 -20.4612 L 8.3811 -20.4766 L 14.5675 -16.653 L 14.6855 -16.3825 L 14.3261 -14.9779 L 14.0222 -14.2143 L 13.5173 -13.3435 L 12.1672 -11.8031 L 12.0566 -10.3734 L 14.4816 -6.5768 L 15.8252 -6.0759 L 17.7905 -6.6532 L 18.4614 -6.7365 L 19.1773 -6.7347 L 20.0997 -6.6346 L 21.039 -6.4351 L 21.2348 -6.2143 L 22.1026 1.0064 L 21.9646 1.2672 L 20.6423 1.862 L 19.5318 2.1707 L 18.8603 2.2487 L 16.8141 2.1535 L 15.6275 2.9585 L 14.1711 7.2216 L 14.6172 8.5844 L 16.2939 9.761 L 17.2222 10.7944 L 17.7191 11.578 L 18.1488 12.4367 L 18.0983 12.7275 L 12.9939 17.9079 L 12.704 17.9628 L 11.4145 17.2998 L 10.7377 16.8336 L 10.1159 16.2765 L 8.7997 14.4885 L 7.4305 14.0627 L 3.1895 15.582 L 2.4021 16.7804 L 2.5276 18.825 L 2.4595 19.4976 L 2.1673 20.6125 L 1.5921 21.9435 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 5.8409 -49.8979 L -1.5004 -49.5809 L -1.7482 -49.7391 L -2.4906 -51.8227 L -2.845 -53.4172 L -2.9217 -54.1411 L -4.3322 -55.6575 L -8.2351 -56.214 L -10.0132 -55.1523 L -10.6139 -53.8335 L -11.0751 -53.0468 L -12.3704 -51.2539 L -12.6525 -51.1712 L -19.6126 -53.5276 L -19.7865 -53.7646 L -19.7903 -54.8761 L -19.5488 -57.26 L -19.2906 -58.2933 L -20.058 -60.2168 L -23.4963 -62.1456 L -25.5379 -61.798 L -26.5744 -60.7852 L -27.2887 -60.2183 L -29.1442 -59.0143 L -29.4371 -59.0391 L -35.0759 -63.7506 L -35.1525 -64.0345 L -34.7546 -65.0723 L -33.6682 -67.208 L -33.0541 -68.0782 L -33.0749 -70.149 L -35.5842 -73.1897 L -37.6135 -73.603 L -38.5844 -73.1652 L -40.327 -72.6301 L -41.9819 -72.31 L -42.2461 -72.439 L -45.8021 -78.8694 L -45.7709 -79.1617 L -44.2368 -80.755 L -42.9673 -81.783 L -42.3535 -82.1743 L -41.6248 -84.1128 L -42.8663 -87.8546 L -44.6093 -88.9731 L -45.6728 -88.9156 L -47.4909 -89.0461 L -49.1497 -89.3455 L -49.3494 -89.5612 L -50.3425 -96.8419 L -50.2078 -97.1032 L -48.2016 -98.0348 L -46.6466 -98.5347 L -45.9329 -98.6779 L -44.5531 -100.2223 L -44.359 -104.1599 L -45.5803 -105.8325 L -46.9489 -106.3089 L -47.7748 -106.6956 L -49.6796 -107.8199 L -49.7879 -108.0932 L -48.0838 -115.241 L -47.8638 -115.436 L -46.7574 -115.5424 L -44.3614 -115.5219 L -43.3087 -115.3601 L -41.4642 -116.3017 L -39.8609 -119.9033 L -40.3954 -121.9041 L -41.4995 -122.8428 L -42.1299 -123.5017 L -43.5 -125.2382 L -43.5023 -125.5321 L -39.3311 -131.5816 L -39.0555 -131.684 L -37.9854 -131.3836 L -35.7586 -130.4989 L -34.8355 -129
|
||
|
|
</g>
|
||
|
|
<g id='z:7.4' inkscape:groupmode='layer' inkscape:label='Layer 18, z:7.4' transform='translate(280.0, 12968.7171)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate7.4' fill='#000' stroke='none' y='15' >Layer 18, z:7.4</text>
|
||
|
|
<path d='M 18.2095 12.5677 L 13.151 17.7928 L 12.8615 17.8502 L 11.5663 17.1986 L 10.8853 16.7384 L 10.2587 16.1868 L 8.9269 14.4105 L 7.5539 13.9967 L 3.3264 15.5533 L 2.5497 16.7586 L 2.6931 18.8019 L 2.631 19.4751 L 2.4761 20.174 L 2.181 21.0536 L 1.7852 21.9285 L 1.5276 22.0726 L -5.7115 21.3755 L -5.9368 21.1849 L -6.235 19.766 L -6.2835 18.3371 L -5.7008 15.9641 L -6.2332 14.6327 L -10.086 12.298 L -11.5127 12.4422 L -13.159 13.9317 L -13.8794 14.3537 L -14.6356 14.6755 L -16.0314 15.0679 L -16.3046 14.9564 L -20.2731 8.862 L -20.2646 8.567 L -19.6722 7.8112 L -19.0291 7.1425 L -18.2542 6.5203 L -16.0356 5.4964 L -15.3267 4.25 L -15.9035 -0.2179 L -16.9058 -1.2434 L -19.0967 -1.6018 L -19.8758 -1.902 L -20.5989 -2.2926 L -21.776 -3.1391 L -21.8591 -3.4223 L -19.5686 -10.3248 L -19.3327 -10.5021 L -18.3725 -10.5102 L -17.4487 -10.4243 L -16.4791 -10.2064 L -14.2953 -9.1102 L -12.8788 -9.333 L -9.7453 -12.5697 L -9.5685 -13.9927 L -10.5301 -15.6649 L -10.8204 -16.4049 L -10.9841 -17.1018 L -11.0998 -18.0224 L -11.1228 -18.9824 L -10.9533 -19.2239 L -4.1286 -21.7368 L -3.8429 -21.6629 L -2.9586 -20.5138 L -2.4017 -19.5047 L -2.1427 -18.7531 L -1.7904 -16.8566 L -0.7329 -15.8881 L 3.7513 -15.4563 L 4.9741 -16.2052 L 5.9256 -18.4558 L 6.8188 -19.5723 L 7.906 -20.5315 L 8.2006 -20.5495 L 14.4204 -16.7805 L 14.5407 -16.5111 L 14.3349 -15.5731 L 14.0456 -14.6916 L 13.752 -14.0387 L 13.3993 -13.4619 L 12.0628 -11.9097 L 11.9648 -10.4791 L 14.4231 -6.704 L 15.7711 -6.2149 L 17.9006 -6.8426 L 18.7327 -6.9102 L 19.5537 -6.872 L 20.9815 -6.62 L 21.1793 -6.4009 L 22.1105 0.8118 L 21.9749 1.0739 L 21.1132 1.4978 L 20.2436 1.8213 L 19.0515 2.0717 L 16.8324 2.0055 L 15.6529 2.8209 L 14.234 7.0966 L 14.6921 8.4554 L 16.6745 9.8838 L 17.0822 10.3374 L 17.8202 11.4216 L 18.2575 12.2765 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 5.6593 -49.8771 L -1.6831 -49.5867 L -1.9303 -49.7458 L -2.514 -51.3271 L -2.9593 -53.0947 L -3.0878 -54.152 L -4.4928 -55.6735 L -8.3937 -56.2442 L -10.1756 -55.1889 L -10.6017 -54.2128 L -11.8654 -52.1771 L -12.5469 -51.299 L -12.8293 -51.2174 L -19.7808 -53.599 L -19.9539 -53.8367 L -19.927 -55.522 L -19.7707 -56.9521 L -19.4415 -58.3635 L -20.202 -60.2897 L -23.6333 -62.231 L -25.6761 -61.8908 L -27.0513 -60.6085 L -29.2925 -59.1202 L -29.5853 -59.1461 L -35.207 -63.878 L -35.2825 -64.1621 L -34.6486 -65.724 L -33.9863 -67.0011 L -33.1696 -68.1982 L -33.1828 -70.2691 L -35.6811 -73.3188 L -37.7089 -73.7395 L -38.3678 -73.4301 L -39.9152 -72.9069 L -42.0819 -72.4623 L -42.3456 -72.5923 L -45.8784 -79.0355 L -45.8461 -79.3277 L -44.6908 -80.5551 L -43.3069 -81.7415 L -42.4178 -82.3279 L -41.6821 -84.2638 L -42.91 -88.0101 L -44.6489 -89.1348 L -45.3751 -89.0843 L -47.0069 -89.1555 L -49.188 -89.5236 L -49.3869 -89.7401 L -50.3535 -97.0244 L -50.2179 -97.2852 L -48.6973 -98.0123 L -46.9782 -98.6188 L -45.9374 -98.8444 L -44.552 -100.3837 L -44.3437 -104.3206 L -45.5588 -105.9976 L -46.5701 -106.3318 L -48.7137 -107.4023 L -49.6509 -107.9998 L -49.7582 -108.2735 L -48.0282 -115.4151 L -47.8075 -115.6093 L -46.1269 -115.738 L -44.3049 -115.6825 L -43.2528 -115.5169 L -41.4049 -116.4519 L -39.7884 -120.0476 L -40.3157 -122.0503 L -41.7194 -123.3013 L -43.4082 -125.3956 L -43.4094 -125.6896 L -39.2164 -131.7239 L -38.9404 -131.8253 L -37.3268 -131.3382 L -35.994 -130.7966 L -34.7267 -130.0938 L -32.6658 -130.2981 L -29.8596 -133.0671 L -29.6278 -135.125 L -30.15 -136.0533 L -31.013 -138.2886 L -31
|
||
|
|
</g>
|
||
|
|
<g id='z:7.8' inkscape:groupmode='layer' inkscape:label='Layer 19, z:7.8' transform='translate(280.0, 13649.3075)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate7.8' fill='#000' stroke='none' y='15' >Layer 19, z:7.8</text>
|
||
|
|
<path d='M 1.7571 22.0554 L -5.4889 21.4336 L -5.7162 21.2454 L -5.9474 20.3134 L -6.0789 19.395 L -6.105 18.6796 L -6.0445 18.0063 L -5.5344 16.0225 L -6.0807 14.6967 L -9.9575 12.4022 L -11.3826 12.5612 L -12.8762 13.963 L -14.0771 14.6613 L -14.9454 14.988 L -15.8737 15.2338 L -16.1481 15.1251 L -20.1798 9.0723 L -20.1743 8.7772 L -19.2625 7.6499 L -18.1853 6.7098 L -15.9775 5.6629 L -15.2816 4.4091 L -15.9049 -0.0525 L -16.9177 -1.0675 L -18.9449 -1.3612 L -19.5895 -1.565 L -20.2396 -1.8647 L -21.0365 -2.3399 L -21.8074 -2.9125 L -21.8934 -3.1948 L -19.6749 -10.1207 L -19.4408 -10.3004 L -18.4807 -10.3185 L -17.1766 -10.1797 L -16.2098 -9.8998 L -14.3892 -8.961 L -12.9751 -9.1986 L -9.8755 -12.4676 L -9.7134 -13.8924 L -10.902 -16.0272 L -11.2325 -17.4183 L -11.3196 -18.8656 L -11.1526 -19.1089 L -4.3544 -21.6926 L -4.0679 -21.6216 L -3.4552 -20.8823 L -2.9383 -20.1118 L -2.3667 -18.8457 L -1.9656 -16.837 L -0.8981 -15.8796 L 3.5903 -15.4944 L 4.8053 -16.256 L 5.5428 -18.167 L 6.0796 -19.0184 L 6.9623 -19.9883 L 7.6921 -20.6125 L 7.9864 -20.6336 L 14.245 -16.9295 L 14.3682 -16.6613 L 14.1721 -15.7213 L 13.892 -14.8368 L 13.6052 -14.1809 L 13.2586 -13.6005 L 11.9382 -12.0344 L 11.8552 -10.6029 L 14.3525 -6.8536 L 15.7055 -6.3786 L 17.6594 -6.9934 L 19.0443 -7.1016 L 19.9684 -7.0192 L 20.9114 -6.8378 L 21.1115 -6.6208 L 22.1176 0.5818 L 21.9847 0.8453 L 20.6741 1.4654 L 19.2957 1.845 L 16.8523 1.8303 L 15.6813 2.6579 L 14.307 6.9481 L 14.7792 8.3021 L 16.4781 9.4463 L 17.4262 10.4617 L 17.9379 11.2356 L 18.3841 12.0859 L 18.3391 12.3776 L 13.3352 17.655 L 13.0464 17.7154 L 11.7444 17.0773 L 11.0588 16.6242 L 10.3092 15.9525 L 9.0762 14.3168 L 7.6991 13.9173 L 3.488 15.5178 L 2.7238 16.7311 L 2.8885 18.7728 L 2.7743 19.7729 L 2.5626 20.567 L 2.0131 21.9087 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -31.0279 -139.7693 L -24.9206 -143.8554 L -24.6267 -143.849 L -22.9096 -142.4547 L -21.7782 -141.2766 L -21.3364 -140.698 L -19.3433 -140.1355 L -15.7196 -141.6883 L -14.7522 -143.5195 L -14.8665 -144.2384 L -14.9392 -145.8702 L -14.7644 -148.0751 L -14.5663 -148.2924 L -7.3954 -149.8963 L -7.1236 -149.7841 L -6.0261 -147.8638 L -5.5101 -146.6744 L -5.1938 -145.6574 L -3.5385 -144.4129 L 0.4014 -144.5518 L 1.965 -145.9098 L 2.3242 -147.3138 L 2.6398 -148.1693 L 3.5993 -150.1622 L 3.8625 -150.2933 L 11.1286 -149.1984 L 11.3415 -148.9957 L 11.5409 -147.9022 L 11.7227 -145.5131 L 11.6503 -144.4505 L 12.7442 -142.692 L 16.4683 -141.3983 L 18.4168 -142.0998 L 19.259 -143.2792 L 19.8623 -143.963 L 21.477 -145.4747 L 21.7697 -145.5018 L 28.1496 -141.856 L 28.2749 -141.5901 L 27.7923 -139.4315 L 27.3723 -138.2049 L 26.9209 -137.2403 L 27.3058 -135.2054 L 30.311 -132.6537 L 32.3814 -132.604 L 33.2601 -133.2058 L 34.8813 -134.0392 L 36.454 -134.6455 L 36.7368 -134.565 L 41.3689 -128.8608 L 41.3897 -128.5675 L 40.1598 -126.7291 L 39.0911 -125.4938 L 38.5557 -125.0006 L 38.1795 -122.964 L 40.0601 -119.4991 L 41.9727 -118.7048 L 43.0094 -118.9486 L 44.8222 -119.1401 L 46.5078 -119.1372 L 46.7423 -118.96 L 49.0011 -111.9677 L 48.9145 -111.6867 L 47.1036 -110.4167 L 45.6608 -109.6509 L 44.9834 -109.3844 L 43.8969 -107.6213 L 44.3988 -103.711 L 45.8953 -102.2794 L 47.3264 -102.0513 L 48.2074 -101.816 L 50.2804 -101.0444 L 50.4351 -100.7944 L 50.0154 -93.4583 L 49.8331 -93.2276 L 48.7627 -92.9282 L 46.4005 -92.5267 L 45.3358 -92.5008 L 43.6858 -91.2492 L 42.7412 -87.4217 L 43.6195 -85.5462 L 44.8716 -84.8165 L 45.6081 -84.278
|
||
|
|
</g>
|
||
|
|
<g id='z:8.2' inkscape:groupmode='layer' inkscape:label='Layer 20, z:8.2' transform='translate(280.0, 14329.8979)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate8.2' fill='#000' stroke='none' y='15' >Layer 20, z:8.2</text>
|
||
|
|
<path d='M 2.0216 22.0326 L -5.2313 21.4979 L -5.4608 21.3124 L -5.7032 20.3832 L -5.8804 18.7514 L -5.828 18.0774 L -5.3417 16.0876 L -5.9039 14.7685 L -9.8079 12.5207 L -11.231 12.6969 L -12.7077 14.1164 L -13.2643 14.5001 L -13.9001 14.8291 L -14.7644 15.1662 L -15.6897 15.4231 L -15.9654 15.3177 L -20.0693 9.3137 L -20.0675 9.0186 L -19.4922 8.2498 L -18.8642 7.5668 L -18.3268 7.0939 L -17.7672 6.7146 L -15.9083 5.8541 L -15.2275 4.5922 L -15.9043 0.1384 L -16.9292 -0.8644 L -18.9598 -1.1338 L -19.6068 -1.3298 L -20.6449 -1.8306 L -21.8406 -2.6506 L -21.9301 -2.9318 L -19.7948 -9.8838 L -19.5629 -10.0663 L -18.113 -10.0737 L -16.9728 -9.9055 L -16.3273 -9.7045 L -14.4956 -8.7876 L -13.0845 -9.0422 L -10.0243 -12.3482 L -9.8794 -13.7747 L -10.9348 -15.5303 L -11.185 -16.1583 L -11.3642 -16.8514 L -11.5006 -17.7691 L -11.5451 -18.7283 L -11.381 -18.9736 L -4.6144 -21.6387 L -4.3271 -21.5712 L -3.7055 -20.8392 L -3.1794 -20.075 L -2.8379 -19.4458 L -2.5927 -18.8159 L -2.1674 -16.8121 L -1.0886 -15.8676 L 3.4041 -15.5363 L 4.6098 -16.3124 L 5.3243 -18.2321 L 5.8509 -19.0899 L 6.7219 -20.0704 L 7.4441 -20.7032 L 7.7382 -20.7279 L 14.0408 -17.0991 L 14.1671 -16.8325 L 13.8517 -15.4173 L 13.5718 -14.6446 L 13.19 -13.9021 L 11.7929 -12.1768 L 11.727 -10.7444 L 14.2692 -7.0253 L 15.6278 -6.5665 L 17.5741 -7.2048 L 18.2421 -7.309 L 18.9576 -7.3295 L 19.8827 -7.2583 L 20.8278 -7.0882 L 21.0304 -6.8736 L 22.1229 0.3164 L 21.9932 0.5814 L 21.1413 1.0245 L 20.2792 1.3674 L 19.5898 1.5603 L 18.921 1.6593 L 16.8729 1.628 L 15.712 2.4696 L 14.3893 6.7759 L 14.8777 8.1241 L 16.7242 9.3566 L 17.3093 9.9521 L 18.0714 11.0195 L 18.5277 11.8644 L 18.4863 12.1566 L 13.5461 17.4937 L 13.2579 17.5575 L 11.9485 16.9351 L 10.9941 16.2888 L 10.4998 15.8276 L 9.2473 14.2068 L 7.8655 13.8239 L 3.6739 15.4747 L 2.9244 16.6971 L 3.1136 18.7367 L 3.0665 19.4111 L 2.8092 20.5346 L 2.2759 21.8829 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 43.9008 -75.4659 L 41.7083 -75.7582 L 40.1282 -76.1721 L 39.4494 -76.4348 L 37.4559 -75.8737 L 35.1765 -72.6571 L 35.3077 -70.5903 L 35.9841 -69.7675 L 36.9559 -68.2253 L 37.6972 -66.7115 L 37.6417 -66.4228 L 32.3639 -61.3101 L 32.0736 -61.2639 L 30.1347 -62.3284 L 28.8108 -63.2852 L 28.2727 -63.7754 L 26.2111 -63.9723 L 22.9237 -61.7963 L 22.2995 -59.8216 L 22.5405 -59.1347 L 22.9039 -57.5423 L 23.1264 -55.3416 L 22.9704 -55.0924 L 16.202 -52.2316 L 15.9146 -52.2933 L 14.4912 -53.9864 L 13.7708 -55.0643 L 13.2777 -56.0083 L 11.4264 -56.9366 L 7.5749 -56.0951 L 6.2795 -54.4793 L 6.1773 -53.0337 L 5.4323 -50.0031 L 5.1968 -49.8271 L -2.148 -49.6044 L -2.3937 -49.7658 L -3.1094 -51.8587 L -3.3918 -53.1241 L -3.5106 -54.1825 L -4.9015 -55.7169 L -8.7969 -56.3235 L -10.5885 -55.2848 L -11.6774 -53.1931 L -12.9955 -51.4169 L -13.2787 -51.3379 L -20.2079 -53.7835 L -20.3788 -54.0227 L -20.29 -56.2328 L -20.0963 -57.5148 L -19.8247 -58.5446 L -20.5674 -60.4778 L -23.9806 -62.4507 L -26.0265 -62.1293 L -26.7833 -61.3799 L -28.2293 -60.27 L -29.6682 -59.3921 L -29.9608 -59.4208 L -35.5387 -64.2043 L -35.6115 -64.4891 L -35.2003 -65.5218 L -34.2892 -67.316 L -33.4614 -68.5055 L -33.4556 -70.5765 L -35.9256 -73.6491 L -37.9495 -74.0885 L -38.9259 -73.6631 L -40.6752 -73.1505 L -42.334 -72.8517 L -42.5965 -72.9841 L -46.0697 -79.4596 L -46.0348 -79.7515 L -44.4802 -81.325 L -43.1977 -82.3365 L -42.579 -82.7199 L -41.8254 -84.6489 L -43.0187 -88.4064 L -44.7471 -89.5471 L -46.196 -89.5156 L -47.1049 -89.5895 L -4
|
||
|
|
</g>
|
||
|
|
<g id='z:8.6' inkscape:groupmode='layer' inkscape:label='Layer 21, z:8.6' transform='translate(280.0, 15010.4882)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate8.6' fill='#000' stroke='none' y='15' >Layer 21, z:8.6</text>
|
||
|
|
<path d='M 2.321 22.003 L -4.9384 21.5669 L -5.1704 21.3846 L -5.5194 19.9773 L -5.6136 19.1609 L -5.6031 18.3261 L -5.1224 16.1587 L -5.7025 14.8473 L -9.6367 12.6529 L -11.0572 12.8484 L -12.5145 14.2879 L -13.0658 14.6791 L -13.697 15.0167 L -14.5567 15.3655 L -15.4784 15.6349 L -15.7555 15.5333 L -19.9407 9.5858 L -19.9428 9.2907 L -19.3781 8.514 L -18.7594 7.8226 L -18.2285 7.3424 L -17.6741 6.9555 L -15.8272 6.0699 L -15.1636 4.7988 L -15.9008 0.3547 L -16.9393 -0.6341 L -19.1417 -0.9134 L -19.9311 -1.1854 L -20.6678 -1.5497 L -21.8745 -2.3533 L -21.9678 -2.6333 L -19.9273 -9.6137 L -19.6979 -9.7993 L -18.2483 -9.8264 L -17.1058 -9.6737 L -16.6198 -9.5406 L -14.6137 -8.5896 L -13.2062 -8.8633 L -10.1913 -12.2106 L -10.0658 -13.639 L -11.1449 -15.38 L -11.4036 -16.0046 L -11.5923 -16.6952 L -11.7411 -17.6109 L -11.7987 -18.5695 L -11.6379 -18.8169 L -4.9082 -21.5738 L -4.62 -21.5102 L -3.9886 -20.7868 L -3.4521 -20.0298 L -3.1021 -19.4054 L -2.8483 -18.7788 L -2.3959 -16.781 L -1.3043 -15.8512 L 3.1925 -15.5811 L 4.3875 -16.3735 L 5.1499 -18.4586 L 5.5907 -19.1676 L 6.1098 -19.8047 L 7.1618 -20.8024 L 7.4556 -20.8311 L 13.8069 -17.2884 L 13.9368 -17.0235 L 13.6407 -15.6042 L 13.2376 -14.5244 L 12.9996 -14.0802 L 11.6261 -12.336 L 11.5798 -10.9028 L 14.1723 -7.2186 L 15.5369 -6.7784 L 17.4744 -7.4431 L 18.1409 -7.5564 L 18.8561 -7.5866 L 19.782 -7.5279 L 20.7293 -7.3708 L 20.9349 -7.159 L 22.1251 0.0155 L 21.999 0.2823 L 21.1531 0.7369 L 20.2958 1.0915 L 19.6091 1.2938 L 18.9417 1.4018 L 16.8934 1.3983 L 15.744 2.2556 L 14.48 6.5796 L 14.9867 7.921 L 16.8498 9.1282 L 17.2185 9.4718 L 17.9486 10.3636 L 18.6872 11.6113 L 18.6498 11.904 L 13.7826 17.3077 L 13.4954 17.3755 L 12.1776 16.7709 L 11.4806 16.3356 L 10.8344 15.8068 L 9.4396 14.0797 L 8.0527 13.7155 L 3.884 15.4232 L 3.1512 16.6557 L 3.3689 18.8651 L 3.3302 19.3675 L 3.0882 20.4944 L 2.5732 21.8498 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 4.9157 -49.7988 L -2.4302 -49.6173 L -2.675 -49.7801 L -3.2352 -51.3698 L -3.6542 -53.1439 L -3.7671 -54.2029 L -5.1494 -55.745 L -9.0413 -56.3735 L -10.8387 -55.3448 L -11.2792 -54.3751 L -12.573 -52.3584 L -13.2674 -51.4905 L -13.551 -51.413 L -20.4664 -53.8974 L -20.6359 -54.1376 L -20.584 -55.8224 L -20.3338 -57.628 L -20.0565 -58.6563 L -20.7884 -60.5936 L -24.1905 -62.5856 L -26.2381 -62.2757 L -27.6322 -61.0139 L -29.8951 -59.559 L -30.1876 -59.5892 L -35.7385 -64.4039 L -35.8098 -64.6892 L -35.1528 -66.2414 L -34.4717 -67.5085 L -33.6372 -68.6934 L -33.6198 -70.7643 L -36.0726 -73.8507 L -38.0939 -74.3014 L -39.8497 -73.6284 L -42.4854 -73.0892 L -42.7471 -73.2231 L -46.184 -79.7179 L -46.1474 -80.0096 L -44.974 -81.2197 L -43.8811 -82.1552 L -42.675 -82.9586 L -41.9107 -84.8834 L -43.0829 -88.6475 L -44.8049 -89.7979 L -46.6852 -89.8046 L -49.3377 -90.2539 L -49.5335 -90.4733 L -50.392 -97.7711 L -50.2525 -98.0299 L -48.7213 -98.7344 L -47.3642 -99.2119 L -45.9493 -99.5254 L -44.5413 -101.0441 L -44.2746 -104.9774 L -45.4648 -106.6722 L -46.1569 -106.8977 L -47.643 -107.5757 L -49.5267 -108.7349 L -49.63 -109.0102 L -47.7943 -116.1253 L -47.5708 -116.3162 L -45.3613 -116.4194 L -43.7328 -116.2938 L -43.0179 -116.1563 L -41.1564 -117.0637 L -39.4868 -120.6351 L -39.9844 -122.6454 L -40.5483 -123.1057 L -41.6891 -124.2747 L -43.0269 -126.0362 L -43.0238 -126.3301 L -38.7418 -132.3017 L -38.4643 -132.399 L -36.8581 -131.888 L -35.1899 -131.1533 L -34.2767 -130.6051 L -32.213 -130.7789 L -29.3661 -133.5
|
||
|
|
</g>
|
||
|
|
<g id='z:9.0' inkscape:groupmode='layer' inkscape:label='Layer 22, z:9.0' transform='translate(280.0, 15691.0786)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate9.0' fill='#000' stroke='none' y='15' >Layer 22, z:9.0</text>
|
||
|
|
<path d='M -15.5175 15.7709 L -19.7926 9.8877 L -19.7992 9.5926 L -19.2463 8.8075 L -18.6383 8.1068 L -18.1147 7.6186 L -17.462 7.1649 L -15.733 6.3097 L -15.0888 5.0287 L -15.8935 0.5963 L -16.9469 -0.3765 L -19.1533 -0.6224 L -20.2985 -1.0376 L -21.114 -1.4799 L -21.9076 -2.0205 L -22.0052 -2.2991 L -20.071 -9.3096 L -19.8444 -9.4987 L -18.8859 -9.556 L -17.9589 -9.5175 L -16.7628 -9.2868 L -14.7425 -8.3665 L -13.3393 -8.6615 L -10.3756 -12.0542 L -10.2718 -13.4844 L -11.3178 -15.1051 L -11.6455 -15.8293 L -11.8446 -16.5169 L -12.0074 -17.4303 L -12.0795 -18.3879 L -11.9225 -18.6378 L -5.2355 -21.4966 L -4.9464 -21.4374 L -4.304 -20.7236 L -3.7561 -19.9749 L -3.1907 -18.8959 L -2.6506 -16.7426 L -1.5451 -15.8295 L 2.9553 -15.6277 L 4.1381 -16.4382 L 4.7532 -18.2665 L 5.115 -18.9743 L 5.5284 -19.5587 L 6.1411 -20.2554 L 6.8448 -20.9088 L 7.138 -20.9419 L 13.5424 -17.4962 L 13.6764 -17.2332 L 13.5189 -16.286 L 13.2751 -15.3908 L 13.0152 -14.7238 L 12.624 -14.0318 L 11.4372 -12.5112 L 11.4126 -11.0775 L 14.0608 -7.4332 L 15.432 -7.0137 L 17.5266 -7.7496 L 18.7385 -7.8723 L 19.6652 -7.8277 L 20.6148 -7.6849 L 20.8235 -7.4763 L 22.1226 -0.3208 L 22.0006 -0.0521 L 21.1618 0.4153 L 20.3099 0.7829 L 19.6264 0.9956 L 18.8414 1.1211 L 16.9126 1.1414 L 15.7764 2.0161 L 14.5783 6.3587 L 15.1053 7.6922 L 16.9865 8.871 L 17.8381 9.742 L 18.381 10.4944 L 18.8614 11.3258 L 18.8284 11.6191 L 14.044 17.0961 L 13.7579 17.1682 L 12.8694 16.8039 L 12.0509 16.367 L 11.0734 15.6402 L 9.6525 13.9345 L 8.2602 13.5915 L 4.118 15.3623 L 3.4039 16.6058 L 3.6431 18.5198 L 3.6241 19.3145 L 3.5052 20.0204 L 3.2555 20.914 L 2.905 21.808 L 2.6552 21.965 L -4.61 21.6393 L -4.8448 21.4606 L -5.1139 20.5388 L -5.2826 19.6265 L -5.3379 18.9128 L -5.2856 18.1196 L -4.8762 16.2346 L -5.4761 14.9322 L -9.4432 12.7978 L -10.8606 13.0149 L -12.4285 14.5866 L -13.4671 15.223 L -14.3214 15.5849 L -15.2389 15.8683 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -49.5726 -109.3206 L -47.6924 -116.4241 L -47.4677 -116.6136 L -45.2576 -116.703 L -43.6299 -116.5671 L -42.9159 -116.4252 L -41.0487 -117.321 L -39.3569 -120.8819 L -39.8418 -122.8952 L -40.4029 -123.359 L -41.5363 -124.5351 L -42.8631 -126.3049 L -42.8581 -126.5989 L -38.5388 -132.5435 L -38.2608 -132.639 L -36.6577 -132.118 L -34.6989 -131.2093 L -34.0844 -130.819 L -32.0197 -130.9798 L -29.1558 -133.6891 L -28.8807 -135.7417 L -29.2363 -136.3769 L -29.8684 -137.883 L -30.4662 -140.0125 L -30.3554 -140.2848 L -24.1803 -144.2677 L -23.8865 -144.2564 L -22.5799 -143.1915 L -21.2979 -141.8957 L -20.6497 -141.0506 L -18.6663 -140.4547 L -15.0171 -141.9464 L -14.019 -143.761 L -14.1212 -144.4818 L -14.1665 -146.1145 L -13.9547 -148.3162 L -13.753 -148.5301 L -6.5561 -150.0133 L -6.2863 -149.8966 L -5.4526 -148.4317 L -4.7252 -146.7602 L -4.4261 -145.7381 L -2.7919 -144.4659 L 1.1498 -144.5386 L 2.7359 -145.8702 L 2.9011 -146.5792 L 3.4486 -148.1181 L 4.4415 -150.0946 L 4.7068 -150.2211 L 11.9535 -149.0044 L 12.163 -148.7981 L 12.4111 -147.1309 L 12.4856 -145.3096 L 12.3953 -144.2484 L 13.4596 -142.4718 L 17.1614 -141.1157 L 19.1214 -141.7844 L 20.2692 -143.2736 L 22.2378 -145.1073 L 22.531 -145.1295 L 28.8487 -141.3771 L 28.9695 -141.1091 L 28.5987 -139.4648 L 28.0102 -137.7396 L 27.5426 -136.7827 L 27.8933 -134.7416 L 30.8552 -132.1398 L 32.9244 -132.0553 L 34.5327 -133.0294 L 37.0308 -134.0281 L 37.3122 -133.9429 L 41.8478 -128.1616 L 41.8636 -127.8681 L 40.9238 -126.4688 L 40.0144 -125.3541 L
|
||
|
|
</g>
|
||
|
|
<g id='z:9.4' inkscape:groupmode='layer' inkscape:label='Layer 23, z:9.4' transform='translate(280.0, 16371.669)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate9.4' fill='#000' stroke='none' y='15' >Layer 23, z:9.4</text>
|
||
|
|
<path d='M 3.0238 21.9172 L -4.2458 21.7136 L -4.4835 21.5388 L -4.8774 20.1434 L -4.9976 19.3305 L -5.0138 18.4958 L -4.6027 16.3141 L -5.2244 15.022 L -9.2268 12.9546 L -10.6404 13.1954 L -12.0508 14.6808 L -12.5893 15.0894 L -13.2094 15.447 L -14.0575 15.8232 L -14.9701 16.122 L -15.2502 16.0292 L -19.6236 10.2187 L -19.6351 9.9238 L -19.0955 9.1296 L -18.4993 8.4187 L -17.9841 7.9218 L -17.4423 7.5174 L -15.6247 6.5731 L -15.0021 5.2814 L -15.8811 0.8632 L -16.9507 -0.0918 L -19.1609 -0.3005 L -19.9586 -0.5471 L -20.7065 -0.8876 L -21.9384 -1.6522 L -22.0405 -1.9291 L -20.2244 -8.9711 L -20.0011 -9.164 L -18.5531 -9.2374 L -17.4064 -9.1214 L -16.9163 -9.0038 L -14.8809 -8.1176 L -13.4828 -8.4362 L -10.5766 -11.8782 L -10.4968 -13.3098 L -11.6311 -15.0154 L -11.9097 -15.6314 L -12.1204 -16.3155 L -12.2984 -17.226 L -12.3866 -18.1822 L -12.2338 -18.4347 L -5.5959 -21.4054 L -5.3058 -21.3511 L -4.6515 -20.6483 L -4.0911 -19.9088 L -3.7213 -19.2959 L -3.4476 -18.6778 L -2.9315 -16.6956 L -1.8107 -15.8012 L 2.6923 -15.675 L 3.8614 -16.5053 L 4.5567 -18.6137 L 4.9745 -19.3364 L 5.473 -19.9898 L 6.4925 -21.0207 L 6.7852 -21.0587 L 13.2465 -17.7211 L 13.3849 -17.4604 L 13.1343 -16.0324 L 12.7659 -14.9403 L 12.5423 -14.4887 L 11.2254 -12.7015 L 11.2249 -11.2676 L 13.9339 -7.6683 L 15.3119 -7.2719 L 17.2271 -7.9983 L 17.8896 -8.1328 L 18.6035 -8.1859 L 19.5308 -8.1569 L 20.4826 -8.0301 L 20.6948 -7.825 L 22.114 -0.6924 L 21.9964 -0.4217 L 21.1656 0.0598 L 20.32 0.4416 L 19.6402 0.6657 L 18.9766 0.795 L 16.9293 0.8571 L 15.8079 1.7507 L 14.6829 6.1128 L 15.2323 7.4373 L 17.133 8.5844 L 17.5125 8.9159 L 18.2708 9.7839 L 19.0489 11.0073 L 19.0208 11.3011 L 14.3292 16.8577 L 14.0443 16.9346 L 12.7078 16.3725 L 11.9972 15.9597 L 11.3345 15.4519 L 9.8851 13.7703 L 8.4873 13.4507 L 4.3754 15.2909 L 3.6824 16.5462 L 3.9707 18.7474 L 3.9481 19.2508 L 3.7423 20.3849 L 3.271 21.756 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 47.1787 -117.8461 L 49.2709 -110.8022 L 49.1777 -110.5234 L 48.2722 -109.8788 L 46.186 -108.7003 L 45.1931 -108.3149 L 44.0652 -106.5781 L 44.4741 -102.657 L 45.9363 -101.1904 L 47.3616 -100.9283 L 48.735 -100.5003 L 50.2908 -99.8517 L 50.4396 -99.5981 L 49.846 -92.274 L 49.6583 -92.0477 L 48.5811 -91.7738 L 46.2101 -91.4284 L 45.145 -91.4278 L 43.4658 -90.2157 L 42.4307 -86.4117 L 43.2643 -84.5159 L 44.1822 -83.9757 L 45.6248 -82.8614 L 46.8412 -81.6946 L 46.8883 -81.4044 L 43.689 -74.7893 L 43.4323 -74.6461 L 40.7788 -75.0895 L 38.9998 -75.6984 L 36.9962 -75.1748 L 34.6568 -72.0015 L 34.7492 -69.9326 L 35.41 -69.0973 L 36.3527 -67.5372 L 37.0654 -66.0097 L 37.0045 -65.7221 L 31.6317 -60.7094 L 31.3405 -60.6686 L 29.422 -61.7694 L 28.1164 -62.7508 L 27.5875 -63.251 L 25.53 -63.4866 L 22.2023 -61.3727 L 21.5411 -59.4101 L 22.0253 -57.5933 L 22.2838 -54.9154 L 22.1231 -54.6692 L 15.3023 -51.936 L 15.016 -52.0031 L 13.6247 -53.7226 L 12.7618 -55.1094 L 12.4493 -55.7669 L 10.6159 -56.7298 L 6.7492 -55.9607 L 5.4237 -54.3695 L 5.2189 -52.5005 L 4.4926 -49.9101 L 4.2538 -49.7385 L -3.0938 -49.6538 L -3.3365 -49.8198 L -3.7086 -50.8671 L -4.2076 -52.8166 L -4.3702 -54.2566 L -5.732 -55.8168 L -9.6153 -56.4965 L -11.4261 -55.4916 L -11.7233 -54.8271 L -12.5541 -53.4207 L -13.9054 -51.6696 L -14.19 -51.5959 L -21.072 -54.1712 L -21.2383 -54.4136 L -21.1643 -56.0975 L -20.8116 -58.2279 L -20.5995 -58.9243 L -21.3058 -60.8711 L -24.6813 -62.9077 L -26.7329 -62.6247 L -27.8009 -61.6452 L -29.457 -60.5022 L -30.4
|
||
|
|
</g>
|
||
|
|
<g id='z:9.8' inkscape:groupmode='layer' inkscape:label='Layer 24, z:9.8' transform='translate(280.0, 17052.2594)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate9.8' fill='#000' stroke='none' y='15' >Layer 24, z:9.8</text>
|
||
|
|
<path d='M 3.4265 21.8577 L -3.8455 21.7879 L -4.0865 21.6175 L -4.3878 20.7057 L -4.6411 19.419 L -4.6598 18.4127 L -4.3018 16.3959 L -4.9471 15.1155 L -8.9869 13.122 L -10.3957 13.3888 L -12.0832 15.1559 L -13.3142 15.8831 L -14.6708 16.3945 L -14.9526 16.307 L -19.4321 10.578 L -19.4491 10.2833 L -18.6255 9.0901 L -17.6229 8.0709 L -15.501 6.8594 L -14.9022 5.5565 L -15.8624 1.1552 L -16.9494 0.2201 L -18.993 0.0811 L -20.3221 -0.3226 L -21.1528 -0.7359 L -21.9649 -1.2483 L -22.0721 -1.5232 L -20.3859 -8.5974 L -20.1661 -8.7943 L -19.2102 -8.8853 L -18.2825 -8.8794 L -17.2978 -8.746 L -15.0276 -7.8424 L -13.6357 -8.1866 L -10.7933 -11.6815 L -10.7399 -13.1144 L -11.9053 -14.7987 L -12.3075 -15.7214 L -12.5222 -16.5147 L -12.7189 -17.9511 L -12.5709 -18.2064 L -5.9887 -21.2987 L -5.6977 -21.2497 L -4.7176 -20.1813 L -4.2441 -19.5096 L -3.7906 -18.611 L -3.2382 -16.6387 L -2.1011 -15.7651 L 2.4034 -15.7218 L 3.557 -16.5734 L 4.3107 -18.8977 L 4.6179 -19.4245 L 5.4244 -20.4586 L 6.1046 -21.1364 L 6.3965 -21.1798 L 12.9181 -17.9617 L 13.0612 -17.7036 L 12.9372 -16.7514 L 12.725 -15.8482 L 12.1873 -14.5674 L 10.9897 -12.9057 L 11.0156 -11.4721 L 13.7903 -7.9233 L 15.1754 -7.5524 L 17.4625 -8.4122 L 18.8871 -8.5334 L 20.3313 -8.4055 L 20.5472 -8.2044 L 22.0973 -1.0991 L 21.9848 -0.8263 L 20.7251 -0.1086 L 19.9649 0.2036 L 18.9879 0.4457 L 16.9421 0.5455 L 15.8373 1.4596 L 14.7928 5.8416 L 15.3664 7.1558 L 17.4646 8.4078 L 17.91 8.8245 L 18.7387 9.8409 L 19.2481 10.6549 L 19.2254 10.9491 L 14.6368 16.5911 L 14.3533 16.6732 L 13.4526 16.3403 L 12.2887 15.7361 L 11.4903 15.1233 L 10.1367 13.586 L 8.7333 13.2922 L 4.656 15.2077 L 3.9862 16.4755 L 4.3156 18.8966 L 4.2076 19.8844 L 3.9895 20.7862 L 3.6707 21.6919 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M 3.8729 -49.7078 L -3.4751 -49.6788 L -3.7165 -49.8466 L -4.0808 -50.8967 L -4.5649 -52.8499 L -4.7166 -54.2911 L -6.0666 -55.8616 L -9.9447 -56.5707 L -11.763 -55.5795 L -12.0652 -54.9172 L -12.9066 -53.5172 L -14.2711 -51.7764 L -14.5563 -51.7049 L -21.4186 -54.3322 L -21.5831 -54.5759 L -21.4963 -56.2592 L -21.2087 -58.0592 L -20.9101 -59.0816 L -21.6016 -61.0337 L -24.9616 -63.0958 L -27.0152 -62.8284 L -28.4352 -61.5958 L -30.7278 -60.1882 L -31.0195 -60.2245 L -36.4694 -65.1533 L -36.5347 -65.44 L -35.6004 -67.4448 L -34.9273 -68.5528 L -34.2795 -69.3983 L -34.2191 -71.4684 L -36.6073 -74.605 L -38.6189 -75.0975 L -39.9726 -74.5802 L -41.9333 -74.1275 L -43.0345 -73.9767 L -43.2934 -74.116 L -46.5947 -80.6807 L -46.5521 -80.9716 L -45.7745 -81.7657 L -44.2418 -83.0697 L -43.0193 -83.8479 L -42.2152 -85.7564 L -43.3091 -89.544 L -45.0068 -90.7299 L -46.0718 -90.7141 L -47.3626 -90.8344 L -49.5292 -91.2799 L -49.7203 -91.5033 L -50.4272 -98.8173 L -50.2824 -99.0731 L -47.7853 -100.0741 L -45.9491 -100.479 L -44.5099 -101.9681 L -44.1617 -105.8951 L -45.3164 -107.6142 L -46.3151 -107.9842 L -47.9316 -108.8266 L -49.3346 -109.7607 L -49.4322 -110.0381 L -47.4492 -117.1135 L -47.2218 -117.2998 L -45.0107 -117.3571 L -43.3851 -117.1977 L -42.6732 -117.0454 L -40.7933 -117.9141 L -39.05 -121.45 L -39.5057 -123.4702 L -40.5722 -124.4514 L -41.8514 -126.0048 L -42.4772 -126.9233 L -42.468 -127.2172 L -38.063 -133.0985 L -37.7836 -133.1901 L -36.1883 -132.6459 L -34.5357 -131.8767 L -33.6341 -131.3097 L -31.5673 -131.4406 L -28.6644 -134.108 L -28.3595 -136.1564 L -29.1565 -137.8595 L -29.883 -140.4498 L -29.7682 -140.7205 L -23.5361 -144.6134 L -23.2425 -144.5978 L
|
||
|
|
</g>
|
||
|
|
</g>
|
||
|
|
<!--End Layer Data-->
|
||
|
|
<!--beginningOfControlSection='true' must be there or else the control boxes will be carved-->
|
||
|
|
<g id='controls' beginningOfControlSection='true' inkscape:groupmode='layer' inkscape:label='Controls'>
|
||
|
|
<!--id='isoControlBox' must be there so that the controls could be removed if necessary-->
|
||
|
|
<g id='isoControlBox' fill='#000' font-family='Arial' font-size='15px' font-weight='bold' transform='translate(20, 60)' visibility='hidden'>
|
||
|
|
<rect fill='silver' height='720' stroke='gray' stroke-width='4px' width='240' />
|
||
|
|
<circle id='globe' cx='120' cy='120' fill='gray' r='100' />
|
||
|
|
<circle id='cover' cx='120' cy='120' fill='silver' r='33' />
|
||
|
|
<circle id='observer' fill='darkslateblue' r='12' />
|
||
|
|
<text id='latitudeIso' x='20' y='260' >Latitude</text>
|
||
|
|
<text fill='darkslateblue' onclick='displayIsoByLatitude(globalLatitude-1.0)' x='198' y='260' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='displayIsoByLatitude(globalLatitude+1.0)' x='213' y='260' >></text>
|
||
|
|
<text id='longitudeIso' x='20' y='280' >Longitude</text>
|
||
|
|
<text fill='darkslateblue' onclick='displayIsoByLongitude(globalLongitude-1.0)' x='198' y='280' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='displayIsoByLongitude(globalLongitude+1.0)' x='213' y='280' >></text>
|
||
|
|
<text x='20' y='300' >Scale</text>
|
||
|
|
<text id='scaleIso' x='65' y='300' >1</text>
|
||
|
|
<text fill='darkslateblue' onclick='changeScaleIso(globalZoomScale/2)' x='198' y='300' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='changeScaleIso(globalZoomScale*2)' x='213' y='300' >></text>
|
||
|
|
<g transform='translate(20, 340)'>
|
||
|
|
<text >Min</text>
|
||
|
|
<text id='minXIso' y='20' >X: -50.4272 mm</text>
|
||
|
|
<text id='minYIso' y='40' >Y: -150.3492 mm</text>
|
||
|
|
<text id='minZIso' y='60' >Z: -0.0 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 440)'>
|
||
|
|
<text >Max</text>
|
||
|
|
<text id='maxXIso' y='20' >X: 50.4412 mm</text>
|
||
|
|
<text id='maxYIso' y='40' >Y: 22.1077 mm</text>
|
||
|
|
<text id='maxZIso' y='60' >Z: 10.0 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 540)'>
|
||
|
|
<text >Dimension</text>
|
||
|
|
<text id='dimXIso' y='20' >X: 100.8684 mm</text>
|
||
|
|
<text id='dimYIso' y='40' >Y: 172.4569 mm</text>
|
||
|
|
<text id='dimZIso' y='60' >Z: 10.0 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 640)'>
|
||
|
|
<text >Statistics</text>
|
||
|
|
<text id='layerThicknessIso' y='20' >Layer Thickness: 0.4 mm</text>
|
||
|
|
<text id='numberOfLayersIso' y='40' >Number of Layers: 25</text>
|
||
|
|
<text id='volumeIso' y='60' >Volume: 151.0364 cm3</text>
|
||
|
|
</g>
|
||
|
|
</g>
|
||
|
|
<!--id='layerControlBox' must be there so that the controls could be removed if necessary-->
|
||
|
|
<g id='layerControlBox' fill='#000' font-family='Arial' font-size='15px' font-weight='bold' transform='translate(20, 60)' visibility='hidden'>
|
||
|
|
<rect fill='silver' height='720' stroke='gray' stroke-width='4px' width='240' />
|
||
|
|
<path d='M 66 164 h76 v6 l18 -9 l-18 -9 v6 h-70 v-70 h6 l-9 -18 l-9 18 h6 z' stroke-width='0' />
|
||
|
|
<!--<path stroke='#000' stroke-width='3' d='M 20 20 h5 l-5 -10 l-5 10 h5 v35 h35 v-5 l10 5 l-10 5 v-5 h-35 z'/>-->
|
||
|
|
<text text-anchor='middle' x='68' y='64' >Y</text>
|
||
|
|
<text x='165' y='166' >X</text>
|
||
|
|
<text id='minIndexLayer' x='20' y='245' >0</text>
|
||
|
|
<rect id='slider' fill='gray' height='24' width='170' x='32' y='230' />
|
||
|
|
<circle id='thumb' cx='42' cy='242' fill='darkslateblue' r='12' />
|
||
|
|
<text id='maxIndexLayer' x='203' y='245' >1</text>
|
||
|
|
<text id='currentIndexLayer' x='20' y='280' >Layer</text>
|
||
|
|
<text id='decreaseLayerIndex' fill='darkslateblue' onclick='displayLayer(globalLayerIndex-1)' x='198' y='280' ><</text>
|
||
|
|
<text id='increaseLayerIndex' fill='darkslateblue' onclick='displayLayer(globalLayerIndex+1)' x='213' y='280' >></text>
|
||
|
|
<text x='20' y='300' >Scale</text>
|
||
|
|
<text id='scaleLayer' x='65' y='300' >1</text>
|
||
|
|
<text fill='darkslateblue' onclick='changeScaleLayer(globalZoomScale/2)' x='198' y='300' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='changeScaleLayer(globalZoomScale*2)' x='213' y='300' >></text>
|
||
|
|
<g transform='translate(20, 340)'>
|
||
|
|
<text >Min</text>
|
||
|
|
<text id='minXLayer' y='20' >X: -50.4272 mm</text>
|
||
|
|
<text id='minYLayer' y='40' >Y: -150.3492 mm</text>
|
||
|
|
<text id='minZLayer' y='60' >Z: -0.0 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 440)'>
|
||
|
|
<text >Max</text>
|
||
|
|
<text id='maxXLayer' y='20' >X: 50.4412 mm</text>
|
||
|
|
<text id='maxYLayer' y='40' >Y: 22.1077 mm</text>
|
||
|
|
<text id='maxZLayer' y='60' >Z: 10.0 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 540)'>
|
||
|
|
<text >Dimension</text>
|
||
|
|
<text id='dimXLayer' y='20' >X: 100.8684 mm</text>
|
||
|
|
<text id='dimYLayer' y='40' >Y: 172.4569 mm</text>
|
||
|
|
<text id='dimZLayer' y='60' >Z: 10.0 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 640)'>
|
||
|
|
<text >Statistics</text>
|
||
|
|
<text id='layerThicknessLayer' y='20' >Layer Thickness: 0.4 mm</text>
|
||
|
|
<text id='numberOfLayersLayer' y='40' >Number of Layers: 25</text>
|
||
|
|
<text id='volumeLayer' y='60' >Volume: 151.0364 cm3</text>
|
||
|
|
</g>
|
||
|
|
</g>
|
||
|
|
<!--id='scrollControlBox' must be there so that the controls could be removed if necessary-->
|
||
|
|
<g id='scrollControlBox' fill='#000' font-family='Arial' font-size='15px' font-weight='bold' transform='translate(20, 60)' visibility='visible'>
|
||
|
|
<rect fill='silver' height='720' stroke='gray' stroke-width='4px' width='240' />
|
||
|
|
<path d='M 66 164 h76 v6 l18 -9 l-18 -9 v6 h-70 v-70 h6 l-9 -18 l-9 18 h6 z' stroke-width='0' />
|
||
|
|
<text text-anchor='middle' x='68' y='64' >Y</text>
|
||
|
|
<text x='165' y='166' >X</text>
|
||
|
|
<text x='20' y='300' >Scale</text>
|
||
|
|
<text id='scaleScroll' x='65' y='300' >: 1</text>
|
||
|
|
<text fill='darkslateblue' onclick='changeScaleScroll(globalZoomScale/2)' x='198' y='300' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='changeScaleScroll(globalZoomScale*2)' x='213' y='300' >></text>
|
||
|
|
<g transform='translate(20, 340)'>
|
||
|
|
<text >Min</text>
|
||
|
|
<text id='minXScroll' y='20' >X: -50.4272 mm</text>
|
||
|
|
<text id='minYScroll' y='40' >Y: -150.3492 mm</text>
|
||
|
|
<text id='minZScroll' y='60' >Z: -0.0 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 440)'>
|
||
|
|
<text >Max</text>
|
||
|
|
<text id='maxXScroll' y='20' >X: 50.4412 mm</text>
|
||
|
|
<text id='maxYScroll' y='40' >Y: 22.1077 mm</text>
|
||
|
|
<text id='maxZScroll' y='60' >Z: 10.0 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 540)'>
|
||
|
|
<text >Dimension</text>
|
||
|
|
<text id='dimXScroll' y='20' >X: 100.8684 mm</text>
|
||
|
|
<text id='dimYScroll' y='40' >Y: 172.4569 mm</text>
|
||
|
|
<text id='dimZScroll' y='60' >Z: 10.0 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 640)'>
|
||
|
|
<text >Statistics</text>
|
||
|
|
<text id='layerThicknessScroll' y='20' >Layer Thickness: 0.4 mm</text>
|
||
|
|
<text id='numberOfLayersScroll' y='40' >Number of Layers: 25</text>
|
||
|
|
<text id='volumeScroll' y='60' >Volume: 151.0364 cm3</text>
|
||
|
|
</g>
|
||
|
|
</g>
|
||
|
|
<text id='isoViewButton' fill='darkslateblue' font-size='18px' font-weight='normal' onclick='viewIso()' text-anchor='middle' visibility='visible' x='80' y='30' >[Iso View]</text>
|
||
|
|
<text id='isoViewLabel' fill='darkslateblue' font-size='24px' font-weight='bold' text-anchor='middle' visibility='hidden' x='76' y='30' >Iso View</text>
|
||
|
|
<text id='layerViewButton' fill='darkslateblue' font-size='18px' font-weight='normal' onclick='viewLayer()' text-anchor='middle' visibility='visible' x='240' y='30' >[Layer View]</text>
|
||
|
|
<text id='layerViewLabel' fill='darkslateblue' font-size='24px' font-weight='bold' text-anchor='middle' visibility='hidden' x='236' y='30' >Layer View</text>
|
||
|
|
<text id='scrollViewButton' fill='darkslateblue' font-size='18px' font-weight='normal' onclick='viewScroll()' text-anchor='middle' visibility='hidden' x='400' y='30' >[Scroll View]</text>
|
||
|
|
<text id='scrollViewLabel' fill='darkslateblue' font-size='24px' font-weight='bold' text-anchor='middle' visibility='visible' x='396' y='30' >Scroll View</text>
|
||
|
|
</g>
|
||
|
|
<!-- Original XML Text:
|
||
|
|
<fabmetheus>
|
||
|
|
<gear helixAngle='45' helixType='parabolic' />
|
||
|
|
</fabmetheus>
|
||
|
|
-->
|
||
|
|
</svg>
|